 
      :root {
        --black1: #0C0C0C;
        --black2: #1a1a1a;
        --black3: #2a2a2a;
        --cream: #B5B5B5;
        --gold1: #D4A017;
        --gold2: #b8941f;
        --gold3: #9a7b17;
        --goldLight: rgba(212, 175, 55, 0.1);
      }

      body {
        font-family: "Montserrat", sans-serif;
        background: linear-gradient(
          135deg,
          var(--black1) 0%,
          var(--black2) 50%,
          var(--black1) 100%
        );
        color: var(--cream);
        overflow-x: hidden;
        line-height: 1.6;
      }
      /* Brillo dorado sutil en los bordes */
.gold-glow {
  position: relative;
}

.gold-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(45deg, 
    transparent 0%, 
    var(--gold1) 20%, 
    transparent 40%, 
    var(--gold1) 60%, 
    transparent 80%, 
    var(--gold1) 100%);
  border-radius: inherit;
  z-index: -1;
  animation: goldShimmer 3s linear infinite;
  opacity: 0.5;
  filter: blur(1px);
}

@keyframes goldShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Efecto de seda o terciopelo */
.velvet-effect {
  background: 
    radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1), transparent 70%),
    radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.5), transparent 70%);
  position: relative;
}

.velvet-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  pointer-events: none;
}


      /* Header Styles */
      .navbar {
        background-color: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        transition: all 0.3s ease;
      }

      .navbar-brand {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--gold1) !important;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .navbar-nav .nav-link {
        color: var(--cream) !important;
        font-weight: 500;
        margin: 0 0.5rem;
        transition: color 0.3s ease;
        position: relative;
      }

      .navbar-nav .nav-link:hover {
        color: var(--gold1) !important;
      }

      .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--gold1);
        transition: width 0.3s ease;
      }

      .navbar-nav .nav-link:hover::after {
        width: 100%;
      }
      .navbar {
        background: linear-gradient(
          to bottom,
          rgba(10, 10, 10, 0.98) 0%,
          rgba(10, 10, 10, 0.92) 100%
        );
        backdrop-filter: blur(20px) saturate(200%);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 
          0 4px 30px rgba(0, 0, 0, 0.5),
          inset 0 1px 0 rgba(212, 175, 55, 0.1);
      }
      
      .navbar-brand {
        background: linear-gradient(135deg, #f5f5f0 0%, var(--gold1) 50%, #f5f5f0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        font-weight: 900;
        letter-spacing: 3px;
        position: relative;
      }
      
      .navbar-brand::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, 
          transparent, 
          var(--gold1), 
          var(--gold2), 
          var(--gold1), 
          transparent);
        opacity: 0.7;
      }

      .btn-gold {
        background-color: var(--gold1);
        color: var(--black1);
        border: none;
        padding: 0.6rem 1.5rem;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .btn-gold:hover {
        background-color: var(--gold2);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
      }

      /* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Contenedor del contenido centrado */
.hero .container {
  z-index: 2;
}

.hero .row {
  justify-content: center;
}

.hero-content {
  text-align: center;
  padding: 2rem;
}

/* Nuevo gradiente con ondas */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(
      circle at 90% 10%,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 95% 20%,
      rgba(212, 175, 55, 0.12) 0%,
      transparent 35%
    ),
    radial-gradient(
      ellipse at 85% 30%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 95% 40%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 45%
    ),
    radial-gradient(
      ellipse at 90% 50%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
  animation: waveMove 15s ease-in-out infinite alternate;
}

/* Segundo pseudo-elemento para más profundidad */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: 
    linear-gradient(
      135deg,
      transparent 0%,
      rgba(212, 175, 55, 0.03) 20%,
      transparent 40%
    ),
    linear-gradient(
      150deg,
      transparent 0%,
      rgba(212, 175, 55, 0.02) 30%,
      transparent 50%
    );
  z-index: 1;
  clip-path: path('M0 0 Q 100 20, 200 50 Q 300 100, 400 150 Q 450 200, 500 250 Q 550 300, 600 350 Q 650 400, 700 450 L 800 500 L 800 0 Z');
  animation: waveDistortion 20s ease-in-out infinite alternate;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, 
    #f5f5f0 0%, 
    #e6d7a5 25%, 
    var(--gold1) 50%, 
    #e6d7a5 75%, 
    #f5f5f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: textShine 3s ease-in-out infinite alternate;
}

.hero-content .highlight {
  color: var(--gold1);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  display: block;
  margin-top: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(248, 245, 237, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-outline-gold {
  border: 2px solid var(--gold1);
  color: var(--gold1);
  background: transparent;
  padding: 0.7rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.btn-outline-gold:hover {
  background-color: var(--gold1);
  color: var(--black1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-outline-gold:hover i {
  transform: translateX(5px);
}

/* Animaciones para las ondas */
@keyframes waveMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-10px) translateY(-5px);
  }
  100% {
    transform: translateX(5px) translateY(10px);
  }
}

@keyframes waveDistortion {
  0%, 100% {
    clip-path: path('M0 0 Q 100 20, 200 50 Q 300 100, 400 150 Q 450 200, 500 250 Q 550 300, 600 350 Q 650 400, 700 450 L 800 500 L 800 0 Z');
  }
  50% {
    clip-path: path('M0 0 Q 120 15, 220 40 Q 320 90, 420 140 Q 470 190, 520 240 Q 570 290, 620 340 Q 670 390, 720 440 L 800 500 L 800 0 Z');
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero::after {
    width: 70%;
    clip-path: path('M0 0 Q 100 30, 200 70 Q 300 120, 400 180 Q 450 230, 500 280 L 600 350 L 600 0 Z');
  }
}

     

      /* Section Styles */
      .section {
        padding: 5rem 0;
        position: relative;
      }

      .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
        text-align: center;
        position: relative;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--gold1);
      }

      /* Services Section */
      .service-card {
        background: linear-gradient(145deg, var(--black2), var(--black3));
        border-radius: 12px;
        padding: 2.5rem 2rem;
        height: 100%;
        transition: all 0.4s ease;
        border: 1px solid rgba(212, 175, 55, 0.1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
      }

      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          transparent 0%,
          var(--goldLight) 100%
        );
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      .service-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
          0 0 30px rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.5);
      }

      .service-card:hover::before {
        opacity: 1;
      }
      .service-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(212, 175, 55, 0.05) 45%,
    rgba(212, 175, 55, 0.1) 50%,
    rgba(212, 175, 55, 0.05) 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--gold1), 
    var(--gold2), 
    var(--gold3), 
    var(--gold2), 
    var(--gold1));
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::after {
  opacity: 0.3;
}

      .service-card:hover .service-icon {
        transform: scale(1.2) rotate(5deg);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
      }

      .service-icon {
        font-size: 3rem;
        color: var(--gold1);
        margin-bottom: 1.5rem;
        display: inline-block;
        transition: all 0.4s ease;
      }

      .service-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
      }

      .service-card p {
        color: rgba(248, 245, 237, 0.7);
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
      }

      .service-link {
        color: var(--gold1);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
      }

      .service-link:hover {
        color: var(--gold2);
        transform: translateX(5px);
      }

      .service-link i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
      }

      .service-link:hover i {
        transform: translateX(5px);
      }

      /* Service Detail Modal */
      .service-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        overflow-y: auto;
        padding: 20px;
      }

      .service-modal-content {
        background: linear-gradient(145deg, var(--black2), var(--black1));
        max-width: 800px;
        margin: 50px auto;
        border-radius: 12px;
        padding: 3rem;
        position: relative;
        border: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
      }

      .service-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--cream);
        font-size: 1.5rem;
        cursor: pointer;
        transition: color 0.3s ease;
      }

      .service-modal-close:hover {
        color: var(--gold1);
      }

      .service-modal-header {
        margin-bottom: 2rem;
        text-align: center;
      }

      .service-modal-icon {
        font-size: 4rem;
        color: var(--gold1);
        margin-bottom: 1rem;
      }

      .service-modal-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      .service-modal-subtitle {
        color: rgba(248, 245, 237, 0.7);
        font-size: 1.2rem;
        margin-bottom: 2rem;
      }

      .service-modal-body h4 {
        color: var(--gold1);
        margin: 1.5rem 0 1rem;
        font-weight: 600;
      }

      .service-modal-features {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
      }

      .service-modal-features li {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: flex-start;
      }

      .service-modal-features li i {
        color: var(--gold1);
        margin-right: 1rem;
        margin-top: 0.2rem;
      }

      .service-modal-cta {
        text-align: center;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
      }

      /* Contact Modal */
      .contact-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        overflow-y: auto;
        padding: 20px;
      }

      .contact-modal-content {
        background: linear-gradient(145deg, var(--black2), var(--black1));
        max-width: 600px;
        margin: 50px auto;
        border-radius: 12px;
        padding: 3rem;
        position: relative;
        border: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
      }

      .contact-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--cream);
        font-size: 1.5rem;
        cursor: pointer;
        transition: color 0.3s ease;
      }

      .contact-modal-close:hover {
        color: var(--gold1);
      }

      .contact-modal-header {
        margin-bottom: 2rem;
        text-align: center;
      }

      .contact-modal-icon {
        font-size: 3rem;
        color: var(--gold1);
        margin-bottom: 1rem;
      }

      .contact-modal-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      .contact-modal-subtitle {
        color: rgba(248, 245, 237, 0.7);
        font-size: 1.1rem;
        margin-bottom: 2rem;
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-label {
        color: var(--cream);
        font-weight: 500;
        margin-bottom: 0.5rem;
      }

      .form-control {
        background-color: var(--black3);
        border: 1px solid rgba(212, 175, 55, 0.2);
        color: var(--cream);
        padding: 0.75rem 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
      }

      .form-control:focus {
        background-color: var(--black3);
        border-color: var(--gold1);
        color: var(--cream);
        box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
      }

      .form-control::placeholder {
        color: rgba(248, 245, 237, 0.5);
      }

      textarea.form-control {
        resize: vertical;
        min-height: 120px;
      }

      .form-select {
        background-color: var(--black3);
        border: 1px solid rgba(212, 175, 55, 0.2);
        color: var(--cream);
        padding: 0.75rem 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
      }

      .form-select:focus {
        background-color: var(--black3);
        border-color: var(--gold1);
        color: var(--cream);
        box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
      }

      .form-check-input {
        background-color: var(--black3);
        border: 1px solid rgba(212, 175, 55, 0.2);
      }

      .form-check-input:checked {
        background-color: var(--gold1);
        border-color: var(--gold1);
      }

      .form-check-label {
        color: rgba(248, 245, 237, 0.8);
      }

      .btn-whatsapp {
        background-color: #25d366;
        color: white;
        border: none;
        padding: 0.75rem 2rem;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
      }

      .btn-whatsapp:hover {
        background-color: #128c7e;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
      }

      .btn-whatsapp i {
        margin-right: 0.5rem;
        font-size: 1.2rem;
      }

      /* Metrics Section */
      .metrics-section {
        background: linear-gradient(
          135deg,
          var(--black1) 0%,
          var(--black2) 100%
        );
        position: relative;
        overflow: hidden;
      }

      .metrics-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at 30% 70%,
          rgba(212, 175, 55, 0.05) 0%,
          transparent 50%
        );
        z-index: 0;
      }

      .metric-item {
        text-align: center;
        padding: 2rem 1rem;
        position: relative;
        z-index: 1;
      }

      .metric-number {
        font-size: 3rem;
        font-weight: 800;
        color: var(--gold1);
        margin-bottom: 0.5rem;
        display: block;
      }

      .metric-label {
        font-size: 1rem;
        color: rgba(248, 245, 237, 0.8);
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      /* Innovation Section */
      .innovation-content {
        padding-right: 2rem;
      }

      .innovation-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
      }

      .innovation-content p {
        margin-bottom: 1.5rem;
        color: rgba(248, 245, 237, 0.8);
      }

      .innovation-list {
        list-style: none;
        padding: 0;
      }

      .innovation-list li {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
      }

      .innovation-list li i {
        color: var(--gold1);
        margin-right: 1rem;
        margin-top: 0.2rem;
      }

      /* Globe Visualization */
      .globe-container {
        position: relative;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .globe-gif {
        width: 100%;
        max-width: 400px;
        border-radius: 50%;
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
        animation: float 6s ease-in-out infinite;
      }

      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
        100% {
          transform: translateY(0px);
        }
      }

      /* Clients Section */
      .clients-section {
        background: linear-gradient(
          135deg,
          var(--black1) 0%,
          var(--black2) 100%
        );
        position: relative;
        overflow: hidden;
      }

      .clients-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at 70% 30%,
          rgba(212, 175, 55, 0.05) 0%,
          transparent 50%
        );
        z-index: 0;
      }

      .client-card {
        background: linear-gradient(145deg, var(--black2), var(--black3));
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
        transition: all 0.4s ease;
        border: 1px solid rgba(212, 175, 55, 0.1);
        position: relative;
        overflow: hidden;
      }

      .client-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(212, 175, 55, 0.3);
      }

      .client-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 1.5rem;
        display: block;
        border: 2px solid var(--gold1);
      }

      .client-quote {
        font-style: italic;
        color: rgba(248, 245, 237, 0.8);
        margin-bottom: 1.5rem;
        position: relative;
      }

      .client-quote::before {
        content: '"';
        font-size: 3rem;
        color: var(--gold1);
        position: absolute;
        top: -20px;
        left: -10px;
        opacity: 0.5;
      }

      .client-name {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--gold1);
      }

      .client-position {
        color: rgba(248, 245, 237, 0.6);
        font-size: 0.9rem;
      }

      /* Ratings Section */
      .ratings-section {
        background: linear-gradient(
          135deg,
          var(--black1) 0%,
          var(--black2) 100%
        );
        position: relative;
        overflow: hidden;
      }

      .ratings-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
          circle at 30% 70%,
          rgba(212, 175, 55, 0.05) 0%,
          transparent 50%
        );
        z-index: 0;
      }

      .rating-card {
        background: linear-gradient(145deg, var(--black2), var(--black3));
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
        transition: all 0.4s ease;
        border: 1px solid rgba(212, 175, 55, 0.1);
        position: relative;
        overflow: hidden;
      }

      .rating-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(212, 175, 55, 0.3);
      }

      .rating-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
      }

      .rating-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 1rem;
        border: 2px solid var(--gold1);
      }

      .rating-info {
        flex: 1;
      }

      .rating-name {
        font-weight: 600;
        margin-bottom: 0.2rem;
        color: var(--gold1);
      }

      .rating-service {
        color: rgba(248, 245, 237, 0.7);
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
      }

      .rating-stars {
        color: var(--gold1);
        font-size: 1rem;
      }

      .rating-comment {
        color: rgba(248, 245, 237, 0.8);
        font-style: italic;
        margin-bottom: 1rem;
        position: relative;
      }

      .rating-comment::before {
        content: '"';
        font-size: 2rem;
        color: var(--gold1);
        position: absolute;
        top: -10px;
        left: -5px;
        opacity: 0.5;
      }

      .rating-date {
        color: rgba(248, 245, 237, 0.5);
        font-size: 0.8rem;
        text-align: right;
      }

      /* Star Rating System */
      .star-rating {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        margin-bottom: 1rem;
      }

      .star-rating input {
        display: none;
      }

      .star-rating label {
        color: #ddd;
        font-size: 1.5rem;
        padding: 0 0.1rem;
        cursor: pointer;
        transition: color 0.2s;
      }

      .star-rating label:hover,
      .star-rating label:hover ~ label,
      .star-rating input:checked ~ label {
        color: var(--gold1);
      }

      /* Rating Modal */
      .rating-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        overflow-y: auto;
        padding: 20px;
      }

      .rating-modal-content {
        background: linear-gradient(145deg, var(--black2), var(--black1));
        max-width: 600px;
        margin: 50px auto;
        border-radius: 12px;
        padding: 3rem;
        position: relative;
        border: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
      }

      .rating-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--cream);
        font-size: 1.5rem;
        cursor: pointer;
        transition: color 0.3s ease;
      }

      .rating-modal-close:hover {
        color: var(--gold1);
      }

      .rating-modal-header {
        margin-bottom: 2rem;
        text-align: center;
      }

      .rating-modal-icon {
        font-size: 3rem;
        color: var(--gold1);
        margin-bottom: 1rem;
      }

      .rating-modal-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      .rating-modal-subtitle {
        color: rgba(248, 245, 237, 0.7);
        font-size: 1.1rem;
        margin-bottom: 2rem;
      }
      /* Appointment Section Styles */
      .appointment-card {
        background: linear-gradient(145deg, var(--black2), var(--black3));
        border-radius: 12px;
        padding: 3rem;
        transition: all 0.4s ease;
        border: 1px solid rgba(212, 175, 55, 0.1);
        position: relative;
        overflow: hidden;
      }

      .appointment-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          transparent 0%,
          var(--goldLight) 100%
        );
        opacity: 0.1;
      }

      .appointment-form .form-group {
        margin-bottom: 1.5rem;
      }

      .appointment-form .form-label {
        color: var(--cream);
        font-weight: 500;
        margin-bottom: 0.5rem;
      }

      .appointment-form .form-control,
      .appointment-form .form-select {
        background-color: var(--black3);
        border: 1px solid rgba(212, 175, 55, 0.2);
        color: var(--cream);
        padding: 0.75rem 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
      }

      .appointment-form .form-control:focus,
      .appointment-form .form-select:focus {
        background-color: var(--black3);
        border-color: var(--gold1);
        color: var(--cream);
        box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
      }

      .appointment-form .form-control::placeholder {
        color: rgba(248, 245, 237, 0.5);
      }

      .appointment-form textarea.form-control {
        resize: vertical;
        min-height: 120px;
      }

      .appointment-form .form-check-input {
        background-color: var(--black3);
        border: 1px solid rgba(212, 175, 55, 0.2);
      }

      .appointment-form .form-check-input:checked {
        background-color: var(--gold1);
        border-color: var(--gold1);
      }

      .appointment-form .form-check-label {
        color: rgba(248, 245, 237, 0.8);
      }

      .appointment-form .form-check-label a {
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .appointment-form .form-check-label a:hover {
        color: var(--gold2);
      }

      /* Footer */
      .footer {
        background-color: var(--black1);
        padding: 4rem 0 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
      }

      .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--gold1);
        margin-bottom: 1.5rem;
        display: inline-block;
      }

      .footer p {
        color: rgba(248, 245, 237, 0.7);
        margin-bottom: 1.5rem;
      }

      .footer h5 {
        color: var(--cream);
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
      }

      .footer h5::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--gold1);
      }

      .footer-links {
        list-style: none;
        padding: 0;
      }

      .footer-links li {
        margin-bottom: 0.8rem;
      }

      .footer-links a {
        color: rgba(248, 245, 237, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-links a:hover {
        color: var(--gold1);
      }

      .footer-bottom {
        border-top: 1px solid rgba(248, 245, 237, 0.1);
        padding-top: 2rem;
        margin-top: 3rem;
        text-align: center;
        color: rgba(248, 245, 237, 0.5);
      }
      
      .redes_sociales{
        list-style-type: none;
         padding: 0;
         margin: 0;
      }
      .redes_sociales li{
          display: inline-block;
          margin-right: 15px; 
          font-size: 20px;
      }
      /* Responsive Adjustments */
      @media (max-width: 991.98px) {
        .hero-content h1 {
          font-size: 2.8rem;
        }

        .innovation-content {
          padding-right: 0;
          margin-bottom: 3rem;
        }

        .holographic-head,
        .globe-container {
          height: 400px;
        }
      }

      @media (max-width: 767.98px) {
        .hero-content h1 {
          font-size: 2.2rem;
        }

        .section-title {
          font-size: 2rem;
        }

        .metric-number {
          font-size: 2.5rem;
        }

        .service-modal-content,
        .contact-modal-content,
        .rating-modal-content {
          padding: 2rem 1.5rem;
        }

        .service-modal-title {
          font-size: 2rem;
        }

        .contact-modal-title,
        .rating-modal-title {
          font-size: 1.8rem;
        }
      }
      
.gold-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.gold-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold1);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold1);
  animation: floatParticle 20s linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}
/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--black1) 0%, var(--black2) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow: hidden;
}

.preloader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 50%
  );
  z-index: -1;
}

.preloader-content {
  text-align: center;
  max-width: 500px;
  padding: 2rem;
}

.preloader-logo {
  margin-bottom: 2rem;
  position: relative;
}

.preloader-gif {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 
    0 0 50px rgba(212, 175, 55, 0.3),
    0 0 100px rgba(212, 175, 55, 0.2),
    0 0 150px rgba(212, 175, 55, 0.1);
  animation: preloaderPulse 2s ease-in-out infinite;
  object-fit: cover;
}

@keyframes preloaderPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 0 50px rgba(212, 175, 55, 0.3),
      0 0 100px rgba(212, 175, 55, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 0 70px rgba(212, 175, 55, 0.4),
      0 0 120px rgba(212, 175, 55, 0.3),
      0 0 170px rgba(212, 175, 55, 0.2);
  }
}

.preloader-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, 
    #f5f5f0 0%, 
    #e6d7a5 25%, 
    var(--gold1) 50%, 
    #e6d7a5 75%, 
    #f5f5f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: textShine 3s ease-in-out infinite alternate;
}

@keyframes textShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.loading-bar {
  width: 100%;
  height: 4px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 2px;
  margin: 2rem auto;
  overflow: hidden;
  position: relative;
}

.loading-progress {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold1) 50%, 
    var(--gold2) 100%);
  animation: loadingAnimation 5s ease-in-out forwards;
  border-radius: 2px;
}

@keyframes loadingAnimation {
  0% {
    left: -100%;
    width: 100%;
  }
  100% {
    left: 0;
    width: 100%;
  }
}

.preloader-text p {
  color: rgba(248, 245, 237, 0.7);
  font-size: 1rem;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeInText 0.5s ease forwards 0.5s;
}

@keyframes fadeInText {
  to { opacity: 1; }
}

/* Clase para ocultar el preloader */
.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

/* Clase para mostrar el contenido principal */
.content-visible {
  opacity: 1;
  visibility: visible;
}

/* Ocultar el contenido principal inicialmente */
body > *:not(.preloader) {
  opacity: 0;
  transition: opacity 0.5s ease;
}
     /* Modal de Video Promocional */
    .video-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.95);
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .video-modal.show {
      display: flex;
      opacity: 1;
      align-items: center;
      justify-content: center;
    }
    
    .video-modal-content {
      width: 90%;
      max-width: 900px;
      background-color: #0a0a0a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(221, 182, 53, 0.3);
      border: 1px solid var(--gold1);
      transform: scale(0.9);
      transition: transform 0.5s ease;
    }
    
    .video-modal.show .video-modal-content {
      transform: scale(1);
    }
    
    .video-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 30px;
      background: linear-gradient(90deg, #1a1a1a 0%, #0a0a0a 100%);
      border-bottom: 1px solid rgba(221, 182, 53, 0.2);
    }
    
    .video-modal-title {
      color: var(--gold1);
      font-size: 1.8rem;
      font-weight: 700;
      margin: 0;
    }
    
    .video-modal-close {
      background: transparent;
      border: none;
      color: var(--text-light);
      font-size: 1.8rem;
      cursor: pointer;
      transition: color 0.3s ease;
    }
    
    .video-modal-close:hover {
      color: var(--gold1);
    }
    
    .video-modal-body {
      padding: 0;
      position: relative;
    }
    
    .video-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* Aspect ratio 16:9 */
      height: 0;
    }
    
    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    
    .video-modal-footer {
      padding: 20px 30px;
      text-align: center;
      background: linear-gradient(90deg, #0a0a0a 0%, #1a1a1a 100%);
      border-top: 1px solid rgba(221, 182, 53, 0.2);
    }
    
    .video-modal-footer p {
      color: var(--text-light);
      margin-bottom: 15px;
      font-size: 1.1rem;
    }
    
    .video-modal-footer .btn {
      background-color: transparent;
      border: 2px solid var(--gold1);
      color: var(--gold1);
      padding: 10px 25px;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .video-modal-footer .btn:hover {
      background-color: var(--gold1);
      color: #0a0a0a;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(221, 182, 53, 0.3);
    }
    
    .video-modal-footer .btn i {
      margin-left: 8px;
    }
    
    @media (max-width: 768px) {
      .video-modal-content {
        width: 95%;
      }
      
      .video-modal-header {
        padding: 15px 20px;
      }
      
      .video-modal-title {
        font-size: 1.5rem;
      }
      
      .video-modal-footer {
        padding: 15px 20px;
      }
      
      .video-modal-footer p {
        font-size: 1rem;
      }
    }
    
    @keyframes pulse-gold {
      0% { box-shadow: 0 0 0 0 rgba(221, 182, 53, 0.7); }
      70% { box-shadow: 0 0 0 15px rgba(221, 182, 53, 0); }
      100% { box-shadow: 0 0 0 0 rgba(221, 182, 53, 0); }
    }
    
    .video-notification {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
      border: 2px solid var(--gold1);
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10000;
      animation: pulse-gold 2s infinite;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }
    
    .video-notification:hover {
      transform: scale(1.1);
    }
    
    .video-notification i {
      color: var(--gold1);
      font-size: 2rem;
    }
    
    .video-notification-text {
      position: absolute;
      bottom: 80px;
      right: 0;
      background: rgba(10, 10, 10, 0.95);
      color: var(--text-light);
      padding: 10px 15px;
      border-radius: 8px;
      width: 200px;
      font-size: 0.9rem;
      border: 1px solid var(--gold1);
      display: none;
    }
    
    .video-notification:hover .video-notification-text {
      display: block;
    }