:root {
      --bg-main: #050508;
      --bg-alt: #0f1014;
      --bg-soft: #171821;
      --gold: #d4af37;
      --gold-soft: #c89b3c;
      --text-main: #f5f5f5;
      --text-muted: #a8a8b3;
      --border-soft: #262733;
      --radius-lg: 18px;
      --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #171821 0, #050508 52%);
      color: var(--text-main);
      scroll-behavior: smooth;
    }

    a {
      color: var(--gold);
      text-decoration: none;
    }

    a:hover {
      color: #f7d879;
    }

    /* NAVBAR */
    .navbar {
      padding: 0.9rem 1.5rem;
      transition: background-color 0.25s ease, box-shadow 0.25s ease;
      background: transparent;
    }

    .navbar.scrolled {
      background: rgba(5, 5, 8, 0.96);
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(14px);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.92rem;
    }

    .navbar-brand span.logo-text-main {
      font-size: 1.1rem;
      letter-spacing: 0.18em;
    }

    .navbar-brand .logo-badge {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(212, 175, 55, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 30% 20%, #f8e7a4 0, #d4af37 38%, #8a6d1e 100%);
      font-weight: 700;
      font-size: 0.95rem;
      color: #181818;
      box-shadow: 0 0 25px rgba(212, 175, 55, 0.75);
    }

    .nav-link {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      padding: 0.3rem 0.6rem !important;
      position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--gold);
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.25rem;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #f7d879, #d4af37, #f8e7a4);
      transition: width 0.22s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .btn-gold {
      background: linear-gradient(135deg, #f7d879 0%, #d4af37 40%, #c89b3c 100%);
      border: none;
      color: #181818;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.8rem;
      border-radius: 999px;
      padding: 0.6rem 1.4rem;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
    }

    .btn-gold:hover {
      filter: brightness(1.08);
      transform: translateY(-1px);
    }

    .btn-outline-gold {
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.75);
      color: var(--gold);
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.55rem 1.2rem;
      background: transparent;
    }

    .btn-outline-gold:hover {
      background: rgba(212, 175, 55, 0.1);
    }

    /* HERO */
    .hero-section {
      position: relative;
      min-height: 100vh;              /* ocupa toda la altura de la ventana */
      padding-top: 110px;             /* espacio para el navbar fijo */
      padding-bottom: 80px;
      display: flex;
      align-items: center;            /* centra verticalmente el contenido */
      color: #fff;
      overflow: hidden;
    }

    /* Video de fondo */
    .hero-video-wrap {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: -2;
    }

    .hero-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.1) contrast(1.1) brightness(0.55);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.3), transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0, rgba(0, 0, 0, 0.92) 45%, #000 100%);
      z-index: -1;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.2rem 0.8rem;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.28);
      background: rgba(0, 0, 0, 0.6);
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 0.8rem;
    }

    .hero-tag i {
      color: var(--gold);
    }

    .hero-title {
      font-size: clamp(2.3rem, 4.2vw, 3.2rem);
      font-weight: 600;
      line-height: 1.1;
      margin-bottom: 0.6rem;
    }

    .hero-title span.highlight {
      background: linear-gradient(90deg, #f7e6a1, #d4af37, #f8e7a4);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--text-muted);
      max-width: 460px;
      margin-bottom: 1.4rem;
    }

    .hero-phone {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 1.5rem;
      font-size: 0.88rem;
    }

    .hero-phone .circle {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(10, 10, 14, 0.85);
      color: var(--gold);
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }

    /* HERO FORM CARD */
    .booking-card {
      background: rgba(10, 11, 18, 0.96);
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.3rem;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .booking-card::before {
      content: "";
      position: absolute;
      inset: -120px auto auto -120px;
      background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.25), transparent 60%);
      opacity: 0.35;
      pointer-events: none;
    }

    .booking-title {
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

    .booking-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.8rem;
    }

    .form-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 0.15rem;
    }

    .form-control,
    .form-select {
      background-color: rgba(10, 11, 18, 0.85);
      border: 1px solid var(--border-soft);
      border-radius: 10px;
      padding: 0.45rem 0.75rem;
      font-size: 0.85rem;
      color: var(--text-main);
    }

    .form-control:focus,
    .form-select:focus {
      box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5);
      border-color: var(--gold-soft);
      background-color: rgba(10, 11, 18, 0.98);
    }

    .form-control::placeholder {
      color: #6e6f7c;
    }

    /* GENERIC SECTIONS - más espacio */
    section {
      padding: 90px 0;
    }

    .section-title {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .section-kicker {
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 0.76rem;
      color: var(--text-muted);
      margin-bottom: 0.3rem;
    }

    .title-underline {
      width: 70px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, #f7e6a1, #d4af37, #f8e7a4);
      margin-bottom: 1.8rem;
    }

    .section-muted {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    /* ABOUT / FEATURES */
    .feature-card {
      background: linear-gradient(145deg, #14151f 0, #0b0c12 50%, #07070b 100%);
      border-radius: var(--radius-lg);
      padding: 1rem 1.1rem;
      border: 1px solid rgba(255, 255, 255, 0.03);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.7);
      height: 100%;
    }

    .feature-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 20% 0, #f7e6a1 0, #d4af37 36%, #8a6d1e 100%);
      color: #181818;
      margin-bottom: 0.7rem;
      font-size: 1.1rem;
    }

    .feature-title {
      font-weight: 500;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .feature-text {
      color: var(--text-muted);
      font-size: 0.88rem;
    }

    /* FLEET SLIDER */
    #fleet {
      background: radial-gradient(circle at top, #14151f 0, #050508 65%);
    }

    .fleet-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.3rem;
      flex-wrap: wrap;
    }

    .fleet-pill {
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.4);
      padding: 0.25rem 0.7rem;
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
    }

    .fleet-pill i {
      color: var(--gold-soft);
    }

    .fleet-carousel {
      margin-top: 0.5rem;
    }

    .fleet-card {
      background: linear-gradient(145deg, #10111a 0, #080910 52%, #030306 100%);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: var(--shadow-soft);
    }

    .fleet-img-wrap {
      position: relative;
      background: #050508;
      padding: 1rem;
    }

    .fleet-img-wrap::after {
      content: "";
      position: absolute;
      inset: auto -40px -80px -40px;
      background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.85), transparent 70%);
      opacity: 0.9;
      pointer-events: none;
    }

    .fleet-img {
      width: 100%;
      max-height: 320px;
      object-fit: contain;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9));
    }

    .fleet-body {
      padding: 1rem 1.1rem 1.2rem;
    }

    .fleet-title {
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
    }

    .fleet-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }

    .fleet-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      font-size: 0.8rem;
    }

    .fleet-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--text-muted);
    }

    .fleet-meta i {
      color: var(--gold-soft);
    }

    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background-color: rgba(255, 255, 255, 0.3);
    }

    .carousel-indicators .active {
      background-color: var(--gold-soft);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
    }

    /* SERVICES LIST */
    .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.3);
      padding: 0.25rem 0.85rem;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin: 0.18rem;
      background: rgba(6, 7, 12, 0.9);
    }

    .service-badge i {
      color: var(--gold-soft);
    }

    /* CTA BAND */
    .cta-band {
      background: linear-gradient(135deg, #f7e6a1 0%, #d4af37 45%, #a87e21 100%);
      border-radius: 20px;
      padding: 1.6rem 1.5rem;
      color: #181818;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
      margin-top: 2.5rem;
    }

    .cta-band p {
      margin: 0;
      font-size: 0.9rem;
    }

    /* CONTACT */
    #contact {
      background: linear-gradient(180deg, #050508 0, #000 100%);
    }

    .contact-card {
      background: linear-gradient(150deg, #151622 0, #090a10 45%, #050508 100%);
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.4rem;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: var(--shadow-soft);
      height: 100%;
    }

    .contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.9rem;
    }

    .contact-list li {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 0.5rem;
      color: var(--text-muted);
    }

    .contact-list i {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-soft);
      font-size: 0.85rem;
    }

    .contact-socials {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.6rem;
    }

    .contact-socials a {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(212, 175, 55, 0.45);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-soft);
      font-size: 0.85rem;
    }

    .contact-socials a:hover {
      background: rgba(212, 175, 55, 0.1);
    }

    /* FOOTER */
    footer {
      border-top: 1px solid #111118;
      padding: 20px 0 24px;
      font-size: 0.8rem;
      color: var(--text-muted);
      background: #000000;
    }

    /* WHATSAPP FLOAT */
    .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 999;
    }

    .whatsapp-float a {
      width: 56px;
      height: 56px;
      border-radius: 999px;
      background: #25d366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
    }

    .whatsapp-float a:hover {
      filter: brightness(1.08);
    }

    /* RESPONSIVE */
    @media (max-width: 991.98px) {
      .hero-section {
        padding-top: 96px;
        padding-bottom: 70px;
      }
    }

    @media (max-width: 767.98px) {
      section {
        padding: 70px 0;
      }

      .booking-card {
        margin-top: 2rem;
      }

      .cta-band {
        text-align: center;
      }
    }
    
        /* WHY HORUS – sección de una sola unidad */
    .why-section {
      background: radial-gradient(circle at top, #14151f 0, #050508 65%);
    }

    .why-layout {
      margin-top: 1rem;
    }

    .why-card {
      background: linear-gradient(145deg, #171821 0, #0b0c12 50%, #06070c 100%);
      border-radius: 16px;
      padding: 1rem 1.1rem;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75);
      position: relative;
      overflow: hidden;
    }

    .why-card::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      border-style: solid;
      border-width: 0 0 18px 18px;
      border-color: transparent transparent rgba(0, 0, 0, 0.9) rgba(212, 175, 55, 0.9);
      opacity: 0.95;
    }

    .why-card-title {
      font-size: 0.98rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .why-card-text {
      font-size: 0.86rem;
      color: var(--text-muted);
      margin-bottom: 0;
    }

    .why-image-wrap {
      position: relative;
      display: inline-block;
      padding: 1rem 1.5rem 0.5rem;
      border-radius: 999px;
    }

    .why-image {
      max-width: 100%;
      height: auto;
      border-radius: 26px;
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.95);
      position: relative;
      z-index: 2;
    }

    .why-image-shadow {
      position: absolute;
      inset: auto 14% -5% 14%;
      height: 40px;
      background: radial-gradient(circle at center, rgba(0, 0, 0, 0.85) 0, transparent 70%);
      z-index: 1;
    }

    @media (max-width: 991.98px) {
      .why-layout {
        text-align: center;
      }

      .why-card {
        text-align: left;
      }
    }

    @media (max-width: 767.98px) {
      .why-card {
        padding: 0.9rem 1rem;
      }
    }

    .nav-link.active{
        color:#fff!important;
    }
    
        .contact-toggle {
      display: inline-flex;
      background: #10111a;
      border-radius: 999px;
      padding: 3px;
      border: 1px solid var(--border-soft);
    }

    .contact-toggle-btn {
      border: none;
      background: transparent;
      color: var(--text-muted);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.11em;
      padding: 0.32rem 0.9rem;
      border-radius: 999px;
      cursor: pointer;
    }

    .contact-toggle-btn.active {
      background: linear-gradient(135deg, #f7e6a1, #d4af37, #a87e21);
      color: #181818;
      font-weight: 600;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.75);
    }

    .contact-form-pane {
      transition: opacity 0.18s ease;
    }

/* ================================
   SECCIÓN DE 3 PILARES (COMFORT / PRIVACY / LUXURY)
   ================================ */
.about-pillars {
  padding: 130px 0 100px;
}

.about-pillar {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -1px;
  color: #fff;
  text-transform: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

/* Glow premium muy tenue */
.about-pillar.pillar-show {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}

/* Línea dorada animada */
.pillar-underline {
  width: 0%;
  height: 4px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #d4af37, #f5d878);
  border-radius: 3px;
  transition: width 1s ease;
}

.pillar-show + .pillar-underline {
  width: 60%;
}

/* Responsive */
@media(max-width:768px){
  .about-pillar{
    font-size: 40px;
  }
}

/* TOURS: video solo en el 50% derecho */
.tours-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: #050505; /* fondo sólido lado izquierdo */
}

/* Contenedor del video: pegado a la derecha, 50% del ancho */
.tours-video-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: -2;
}

.tours-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Capa de oscurecimiento y degradado hacia la izquierda
   (se desvanece donde está el texto) */
.tours-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

/* Asegura que el contenido quede encima del video */
.tours-section .container {
  position: relative;
  z-index: 1;
}

/* --- Versión móvil: video de fondo completo detrás del texto --- */
@media (max-width: 991.98px) {
  .tours-video-wrap {
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0.6; /* un poco más oscuro para legibilidad */
  }

  .tours-video-overlay {
    background: rgba(0, 0, 0, 0.55);
  }

  .tours-section {
    padding: 3rem 0;
  }
}

/* SECCIÓN TOURS — Fondo con video en el lado derecho */
.tours-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: #050505; /* lado izquierdo oscuro, uniforme */
}

/* Contenedor del video: siempre en el lado derecho (50%) */
.tours-video-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

/* Video ajustado al contenedor */
.tours-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

/* Overlay SOLO sobre la mitad derecha con degradado
   — Oscuro en el borde izquierdo del video
   — Transparente en el borde derecho del video */
.tours-video-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    to right,
    rgba(5, 5, 5, 0.95) 0%,     /* completamente oscuro al inicio del video */
    rgba(5, 5, 5, 0.6) 35%,     /* transición suave */
    rgba(5, 5, 5, 0.0) 100%     /* completamente transparente a la derecha */
  );
}

/* Contenido siempre encima del video */
.tours-section .container {
  position: relative;
  z-index: 1;
}

/* MOBILE — el video ocupa todo el fondo */
@media (max-width: 991.98px) {

  .tours-video-wrap {
    width: 100%;
    left: 0;
    opacity: 0.65; /* un poco más oscuro para legibilidad */
  }

  .tours-video-fade {
    width: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.7) 0%,
      rgba(0,0,0,0.4) 50%,
      rgba(0,0,0,0.2) 100%
    );
  }
}

.ratio-4x4 { --bs-aspect-ratio: 100%; }
    .flotante {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      background-color: rgba(0,0,0,.3);
      color:#fff;
      padding: 5px;
      border-radius: 10px 0 0 10px;
      text-align:center;
      z-index:9999;
    }

    /* NUEVO: badge de años de experiencia */
    .about-experience-badge {
      display: inline-block;
      margin-top: 0.4rem;
      margin-bottom: 0.8rem;
      padding: 0.35rem 0.8rem;
      border-radius: 999px;
      font-size: 0.8rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: rgba(187, 151, 87, 0.12);
      color: #b58b42;
      font-weight: 500;
    }

    /* NUEVO: servicios como tarjetas */
    .service-grid {
      margin-top: 1rem;
    }
    .service-card {
      background: #111111;
      border-radius: 18px;
      padding: 1.8rem 1.6rem;
      height: 100%;
      box-shadow: 0 14px 35px rgba(0,0,0,0.4);
      border: 1px solid rgba(255,255,255,0.04);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.55);
      border-color: rgba(187,151,87,0.6);
    }
    .service-icon {
      margin-bottom: 0.9rem;
      color: #cba15a;
    }
    .service-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }
    .service-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin: 0;
    }

    /* NUEVO: sección Cómo reservar */
    .how-reserve-title {
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 2rem;
    }
    .how-step {
      height: 100%;
    }
    .how-step-number {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: #b58b42;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }
    .how-step-title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }
    .how-step-text {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* NUEVO: sección Tours CDMX */
    .tours-section {
      padding: 4rem 0;
      background: radial-gradient(circle at top left, rgba(187,151,87,0.18), transparent 55%);
    }
    .tours-pill {
      display: inline-block;
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      background: rgba(0,0,0,0.85);
      color: #f7f7f7;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 0.8rem;
    }
    .tours-list li {
      margin-bottom: 0.35rem;
    }

    /* NUEVO: sección Mundial */
    .worldcup-section {
      padding: 4rem 0;
      background: #050505;
      border-top: 1px solid rgba(255,255,255,0.04);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .worldcup-tag {
      display: inline-block;
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(187,151,87,0.7);
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #cba15a;
      margin-bottom: 0.8rem;
    }
    .worldcup-image-wrap {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 14px 35px rgba(0,0,0,0.6);
    }
    .worldcup-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* NUEVO: FAQ */
    .faq-section {
      padding: 4rem 0;
      background: #050505;
    }
    .faq-accordion .accordion-item {
      background-color: #080808;
      border-radius: 12px;
      margin-bottom: 0.7rem;
      border: 1px solid rgba(255,255,255,0.06);
      overflow: hidden;
    }
    .faq-accordion .accordion-button {
      background-color: transparent;
      color: #ffffff;
      font-weight: 500;
      padding-top: 0.9rem;
      padding-bottom: 0.9rem;
    }
    .faq-accordion .accordion-button:not(.collapsed) {
      background-color: rgba(187,151,87,0.08);
      color: #ffffff;
      box-shadow: none;
    }
    .faq-accordion .accordion-body {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    @media (max-width: 767.98px) {
      .worldcup-section {
        padding: 3rem 0;
      }
      .tours-section {
        padding: 3rem 0;
      }
    }
