/* Global Styles */
:root {
  --primary-color: #00ffcc;
  --secondary-color: #00bfa5;
  --accent-color: #00ffcc;
  --dark-color: #0a0a1a;
  --light-color: #f8f9fa;
  --text-color: #ffffff;
  --light-text: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(0, 255, 204, 0.2);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  background-color: var(--dark-color);
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Prevent text selection and copying */
*, *::before, *::after {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Particles background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Navbar */
#navbar {
  background-color: rgba(10, 10, 26, 0.95);
  padding: 15px 0;
  transition: var(--transition);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

#navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(10, 10, 26, 0.97);
}

#logo {
  max-width: 250px;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: white;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 70%;
}

.location-badge {
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  margin-right: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.phone-icon {
  color: var(--primary-color) !important;
  font-size: 1.6rem;
  transition: var(--transition);
  margin-right: 8px;
}

.whatsapp-icon {
  color: var(--primary-color) !important;
  font-size: 1.6rem;
  transition: var(--transition);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.phone-number {
  display: flex;
  align-items: center;
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 20px;
}

/* Banner */
#banner {
  background-color: var(--dark-color);
  background-image: linear-gradient(rgba(10, 10, 26, 0.8), rgba(10, 10, 26, 0.8)), url('../images/IMAG0438.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--light-text);
  padding: 120px 0 60px;
  text-align: center;
}

.banner-content {
  margin-bottom: 60px;
}

.glitch-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 255, 204, 0.3);
  font-weight: 700;
  position: relative;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-weight: 500;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--box-shadow);
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.call-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
}

.call-button:hover {
  background-color: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 255, 204, 0.4);
  text-decoration: none;
}

/* Section styles */
.section-block {
  padding: 100px 0;
  position: relative;
  background-color: rgba(15, 15, 30, 0.6);
}

.section-block.dark {
  background-color: rgba(5, 5, 15, 0.8);
  color: var(--light-text);
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3);
  color: var(--dark-color);
  font-size: 3.5rem;
}

.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  margin-top: 0;
  vertical-align: middle;
  font-family: 'Orbitron', sans-serif;
}

.dark .section-title {
  color: var(--accent-color);
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.dark .section-title:after {
  background-color: var(--accent-color);
}

.content-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  height: 100%;
  border-top: 4px solid var(--primary-color);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.dark .content-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-top: 4px solid var(--accent-color);
}

.content-card h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.col-md-6.text-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Industry styles */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.industry-card {
  text-align: center;
  transition: transform 0.3s ease;
  padding: 25px;
}

.industry-card:hover {
  transform: translateY(-10px);
}

.industry-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Contact section */
.contact-card {
  padding: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 15px;
  width: 40px;
  text-align: center;
}

.contact-label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-value {
  color: var(--light-text);
  text-decoration: none;
}

a.contact-value:hover {
  color: var(--accent-color);
  text-decoration: none;
}

/* Gallery Banner */
.gallery-banner {
  background-color: rgba(10, 10, 26, 0.8);
  position: relative;
  padding: 120px 0 20px;
  margin-bottom: 0;
}

.gallery-banner .container {
  position: relative;
  z-index: 1;
}

.gallery-banner .section-title {
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.page-title {
  margin: 40px 0;
}

/* Footer */
.footer {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Back to top button */
.back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  text-align: center;
  padding: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--dark-color);
  z-index: 99;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: all 0.3s ease;
  transform-origin: center;
}

.lightbox-content.zoomed {
  transform: scale(1.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 2001;
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
  border-top: none;
}

.gallery-item img {
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Media Queries */
@media (max-width: 1024px) {
  .section-block {
    padding: 70px 0;
  }
  
  .industry-grid {
    grid-template-columns: 1fr;
  }
  
  .glitch-text {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .section-block {
    padding: 50px 0;
  }
  
  .section-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
  
  .col-md-6.text-center {
    margin-bottom: 30px;
  }
  
  .glitch-text {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  #banner {
    padding: 100px 0 40px;
  }
  
  .info-card, .content-card {
    padding: 20px;
  }
  
  .banner-content {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .glitch-text {
    font-size: 2rem;
  }
  
  .navbar-dark .navbar-nav .nav-link::after {
    bottom: -5px;
    left: 0;
    transform: none;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover::after,
  .navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%;
  }
}