@charset "UTF-8";
:root {
  --green-900: #2a1607;
  --green-800: #3d2109;
  --green-700: #5a2f0c;
  --green-600: #8a4410;
  --green-500: #b8560f;
  --green-400: #e07b1a;
  --green-300: #f4b56a;
  --gold: #c8851a;
  --gold-light: #f0b24a;
  /* --orange NO estaba definida en ningun lado, asi que cada var(--orange,<naranja-origen>)
     caia en el fallback y repintaba el naranja del sitio de origen. Definirla aqui
     lo neutraliza sin tocar el HTML. Se usa #b8560f (no #c8851a) porque --orange
     tinta TEXTO: #c8851a mide 2.91:1 sobre la crema y falla AA; #b8560f da 4.54:1. */
  --orange: #b8560f;
  --cream: #fdf8f1;
  --cream-dark: #f3e6d2;
  --white: #ffffff;
  --text-dark: #2e1d0d;
  --text-body: #6b5640;
  --text-muted: #7d6448;
  /* Tipografía 2026: Manrope (estilo Google Sans) en todo el sitio. La jerarquía
     display vs body la da el peso, no la familia. */
  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(to bottom, rgba(42, 22, 7, 0.9) 0%, rgba(42, 22, 7, 0.5) 55%, rgba(42, 22, 7, 0) 100%);
}

.nav.scrolled {
  background: rgba(42, 22, 7, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.nav-logo span {
  font-weight: 800;
  font-size: 18px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green-500) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--green-400) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav-hamburger span:nth-child(1) {
  top: 0;
}

.nav-hamburger span:nth-child(2) {
  top: 11px;
}

.nav-hamburger span:nth-child(3) {
  top: 22px;
}

.nav-hamburger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--green-900);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  top: -12%;
  left: 0;
  right: 0;
  height: 124%;
  width: 100%;
  object-fit: cover;
  object-position: center 60%;
  background-color: #2a1607;
  will-change: transform;
}



/* ===== VELO DEL HERO — DEGRADADO DIRECCIONAL ANCLADO AL TEXTO =====

   DE DONDE VENIMOS: el clon borro el <div class="hero-overlay">, el texto quedo
   directo sobre la foto y el parche fue un velo VERTICAL PLANO que llegaba a
   alpha .92 sobre TODA la mitad inferior. Ese velo arregla el numero y mata la
   fotografia del amanecer, que es justo lo que vende el vuelo.

   QUE HACE ESTE: la foto se conserva a plena sangre y solo se oscurece la zona
   donde vive el texto. Geometria MEDIDA (extension real de la tinta, en
   fracciones del hero, sobre las 24 paginas generales):
     - escritorio 1440: x 0.04..0.60,  y 0.14..0.92  -> sobra la mitad derecha
     - movil 390:       x 0.05..0.95,  y 0.15..0.94  -> solo sobra la franja alta
   Por eso el ancla CAMBIA con el viewport: en escritorio la sombra entra desde la
   IZQUIERDA (rampa a 98deg, no 90: inclinada lee como luz rasante y no como una
   banda mecanica); en movil, donde no hay margen horizontal, se ancla ABAJO.

   Dos capas cooperan:
     1) esta   = grado general de escena, leve y direccional.
     2) .hero-content::before = el charco que de verdad sujeta el texto. Vive
        DENTRO del bloque de contenido, asi que sigue al copy pagina por pagina
        (el bloque arranca al 14% del hero en unas y al 40% en otras) sin
        coordenadas a mano por plantilla.

   Tinte: tinta cafe del tema (#1c0f04 / #2a1607), nunca negro puro: el negro
   agrisa el amanecer, el cafe se integra con el.
   El bloom calido de arriba-derecha es lo que hace que todo esto lea como
   CONTRALUZ de la propia escena y no como una capa encima.

   z-index 1 = encima de .hero-bg y .hero-video (z-index auto), debajo de
   .hero-content (z-index 2). Sin foto, el degradado cae sobre el #2a1607 de
   .hero y el hero sigue siendo legible: no depende de que la imagen cargue. */
.hero-overlay,
.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* LUZ DE ESQUINA: anclada abajo-izquierda, con radios grandes para que
       decaiga hacia el cielo de arriba-derecha. Es la que da la DIRECCION. */
    radial-gradient(120% 130% at 2% 88%,
      rgba(24, 12, 3, 0.55) 0%,
      rgba(25, 13, 4, 0.50) 25%,
      rgba(28, 15, 5, 0.42) 42%,
      rgba(32, 17, 6, 0.32) 55%,
      rgba(36, 19, 7, 0.20) 68%,
      rgba(40, 21, 7, 0.10) 80%,
      rgba(42, 22, 7, 0.03) 90%,
      rgba(42, 22, 7, 0) 100%),
    /* asiento inferior: sostiene el subtitulo, los botones y la costura con la
       seccion siguiente. Muere al 64% de alto, muy lejos del cielo. */
    linear-gradient(to top,
      rgba(26, 13, 4, 0.44) 0%,
      rgba(30, 16, 5, 0.32) 12%,
      rgba(34, 18, 6, 0.20) 26%,
      rgba(38, 20, 7, 0.10) 40%,
      rgba(42, 22, 7, 0.03) 52%,
      rgba(42, 22, 7, 0) 64%),
    /* scrim minimo para la barra de navegacion */
    linear-gradient(to bottom,
      rgba(28, 15, 4, 0.34) 0%,
      rgba(34, 18, 6, 0.12) 9%,
      rgba(42, 22, 7, 0) 20%),
    /* bloom calido arriba-derecha (capa mas de fondo) */
    radial-gradient(58% 52% at 86% 14%,
      rgba(255, 200, 97, 0.10) 0%,
      rgba(224, 123, 26, 0.05) 46%,
      rgba(224, 123, 26, 0) 74%);
}

/* Movil: la tinta ocupa TODO el ancho, asi que la rampa se vuelve vertical.
   El bloom sube al centro-derecha alto, la unica zona de cielo que queda libre. */
@media (max-width: 900px) {
  .hero-overlay,
  .hero::before {
    background:
      linear-gradient(to top,
        rgba(24, 12, 3, 0.78) 0%,
        rgba(26, 13, 4, 0.71) 12%,
        rgba(28, 15, 5, 0.62) 24%,
        rgba(32, 17, 6, 0.51) 36%,
        rgba(36, 19, 7, 0.39) 48%,
        rgba(40, 21, 7, 0.26) 60%,
        rgba(42, 22, 7, 0.14) 72%,
        rgba(42, 22, 7, 0.06) 84%,
        rgba(42, 22, 7, 0) 94%),
      linear-gradient(to bottom,
        rgba(28, 15, 4, 0.38) 0%,
        rgba(34, 18, 6, 0.14) 10%,
        rgba(42, 22, 7, 0) 22%),
      radial-gradient(72% 40% at 78% 8%,
        rgba(255, 200, 97, 0.10) 0%,
        rgba(224, 123, 26, 0) 70%);
  }
}

.hero::before { content: ""; }

/* Video de hero (autoplay muted loop) — va entre .hero-bg y .hero-overlay:
   cubre la imagen, el degradado de .hero-overlay queda encima para contraste.
   El póster = imagen LCP actual → no degrada LCP. Bunny CDN. */
.hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero-video { display: none; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 70px;
  width: 100%;
}

/* CHARCO DE SOMBRA ANCLADO AL TEXTO.
   Su caja ES la caja del texto, asi que sigue al copy en cada pagina y en cada
   breakpoint sin numeros magicos por plantilla. Desborda mucho por los cuatro
   lados y el degradado muere en transparente ANTES del borde: por eso no tiene
   arista visible en ningun sitio — es lo que lo hace invisible como recurso.

   El centro va arriba-izquierda porque ahi vive el .hero-tag, la linea con menos
   margen; el h1 (blanco, 42-80px) y el .hero-sub tienen cabecera de sobra.

   z-index -1 = detras del texto pero DENTRO del contexto de apilamiento que crea
   .hero-content (z-index 2), asi que siempre queda por encima de .hero::before. */
.hero-content::before {
  content: "";
  position: absolute;
  /* REGLA DURA de esta caja: la elipse tiene que llegar a alpha 0 ANTES del borde
     superior, o el degradado se corta a media rampa y aparece una costura
     horizontal dura — el artefacto que delata que hay una capa encima.
     Condicion: centro_y / radio_y >= 1. Aqui 0.42 / 0.40 = 1.05. Por eso el
     top es -70%: la caja se estira hacia arriba para que el degradado tenga
     sitio donde extinguirse dentro de ella. */
  top: -70%;
  bottom: -12%;
  left: -34%;
  right: -18%;
  z-index: -1;
  pointer-events: none;
  /* Elipse ANCHA y baja: el eyebrow es una franja larga (llega al 46% del cuadro)
     y necesita alpha casi constante a lo largo de toda esa franja, no un punto
     oscuro. De ahi 62% de radio horizontal contra 40% de vertical. */
  background: radial-gradient(ellipse 62% 40% at 30% 42%,
    rgba(24, 12, 3, 0.62) 0%,
    rgba(25, 13, 4, 0.60) 22%,
    rgba(27, 14, 5, 0.55) 40%,
    rgba(30, 16, 6, 0.46) 55%,
    rgba(34, 18, 6, 0.33) 68%,
    rgba(38, 20, 7, 0.20) 79%,
    rgba(42, 22, 7, 0.09) 89%,
    rgba(42, 22, 7, 0) 100%);
}

@media (max-width: 900px) {
  /* En movil el bloque ocupa el ancho completo: el charco se centra y se ensancha
     en vez de pegarse a la izquierda. */
  .hero-content::before {
    /* Misma regla dura que en escritorio: 0.36 / 0.34 = 1.06 >= 1, la elipse se
       extingue dentro de la caja. Antes era 0.24 / 0.58 = 0.41, es decir el
       degradado se cortaba con alpha ~.55 todavia viva y dejaba una COSTURA
       horizontal visible a media pantalla en movil. */
    top: -60%;
    bottom: -24%;
    left: -26%;
    right: -26%;
    /* En movil la rampa vertical ya no alcanza al eyebrow (vive al 15-33% del alto,
       donde la rampa esta casi extinguida), asi que el charco lo sostiene solo. */
    /* Curva DELIBERADAMENTE plana en el tramo medio: al obligar a la elipse a
       extinguirse dentro de la caja, el radio vertical se acorto y el subtitulo
       quedaba en la cola del degradado. Se mantiene alpha alta hasta el 72% y
       toda la caida se concentra en el ultimo tercio. */
    background: radial-gradient(ellipse 70% 34% at 48% 36%,
      rgba(24, 12, 3, 0.74) 0%,
      rgba(25, 13, 4, 0.72) 25%,
      rgba(26, 14, 4, 0.68) 45%,
      rgba(28, 15, 5, 0.60) 60%,
      rgba(32, 17, 6, 0.48) 72%,
      rgba(36, 19, 7, 0.32) 83%,
      rgba(40, 21, 7, 0.15) 92%,
      rgba(42, 22, 7, 0) 100%);
  }
}

/* EL CAMBIO QUE NINGUN DEGRADADO PODIA SUSTITUIR.
   El .hero-tag usaba var(--gold) = #c8851a. Ese ambar oscuro es un TONO MEDIO:
   luminancia relativa .291. Su contraste MAXIMO teorico, sobre tinta 100% opaca,
   es 5.61:1 — y para llegar a 4.5:1 necesita un fondo de luminancia <= .0258,
   mas oscuro que la propia tinta del tema sobre cualquier cielo iluminado.
   Traducido: a 12px NO existe degradado que lo suba a AA; haria falta tapar la
   foto entera. Medido en main: 15 de las 24 paginas caian entre 1.33 y 3.97.

   Se pasa al DORADO de la paleta, #ffc861 (L=.634, techo 11.25:1, fondo maximo
   admisible .102 = 4x mas margen). Es lo que permite que el velo sea LEVE y que
   la fotografia sobreviva; sin este cambio, la Direccion B no cierra.
   Solo cambia el hero: var(--gold) sigue intacto en el resto del sitio. */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #ffc861;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #ffc861;
}

.hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 700px;
}

/* Mismo caso que el .hero-tag: el <em> del titular tambien iba en var(--gold)
   = #c8851a, tono medio. Como texto grande solo necesita 3:1, pero aun asi
   fallaba en 3 paginas a 1440 y en 6 a 390 (bajaba a 1.88). Se alinea con el
   eyebrow en el dorado #ffc861, que ademas mantiene la pareja de acentos
   coherente dentro del hero. */
.hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: #ffc861;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  max-width: 500px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--green-800);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--green-900);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--green-800);
  padding: 0;
}

.trust-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.trust-item i {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== SECTION COMMON ===== */
.section-pad {
  padding: 100px 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 40px;
  flex-wrap: wrap;
}

.section-header-left {
  flex: 1;
  min-width: 280px;
}

.section-header-right {
  flex: 0 0 auto;
  max-width: 400px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
  padding-top: 12px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-500);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--green-900);
  line-height: 1.15;
}

.section-count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ===== WHY US / IMAGE CARDS ===== */
.whyus-section {
  background: var(--green-700);
  position: relative;
  overflow: hidden;
}

.whyus-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.whyus-card {
  text-align: center;
  padding: 48px 0;
}

.whyus-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

.whyus-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.whyus-card:hover .whyus-card-img img {
  transform: scale(1.06);
}

.whyus-card h3, .whyus-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.whyus-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 8px;
}

.whyus-intro {
  padding: 48px 0 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.whyus-intro .section-tag {
  color: var(--gold);
}

.whyus-intro .section-title {
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
}

.whyus-intro p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 320px;
}

.whyus-intro .whyus-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whyus-intro .whyus-arrow:hover {
  background: var(--white);
  color: var(--green-800);
}

/* ===== FEATURES GRID ===== */
.features-section {
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.feature-card {
  padding: 40px 36px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:nth-child(3n) {
  border-right: none;
}

.feature-card:nth-child(n+4) {
  border-bottom: none;
}

.feature-card:hover {
  background: var(--green-900);
}

.feature-card:hover * {
  color: var(--white) !important;
}

.feature-card:hover .feature-num {
  color: var(--gold) !important;
}

.feature-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green-500);
  margin-bottom: 18px;
  display: block;
  transition: color 0.3s;
}

.feature-card h3, .feature-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--green-900);
  transition: color 0.3s;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  transition: color 0.3s;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box .stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== CATALOG / PACKAGES ===== */
.catalog-section {
  background: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.catalog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  background: var(--white);
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.catalog-card.featured {
  border: 2px solid var(--green-600);
}

.catalog-card.featured::before { content: none; }

.catalog-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.catalog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-img img {
  transform: scale(1.08);
}

.catalog-img .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(42, 22, 7, 0.8);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.catalog-body {
  padding: 28px;
}

.catalog-body h3, .catalog-body h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 10px;
}

.catalog-body .desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.catalog-features {
  list-style: none;
  margin-bottom: 24px;
}

.catalog-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--text-body);
}

.catalog-features li i {
  color: var(--green-500);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.catalog-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.catalog-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--green-800);
}

.catalog-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.catalog-price-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-700);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-catalog:hover {
  background: var(--green-500);
  transform: translateY(-1px);
}

/* Double pricing for featured */
.price-options {
  margin-bottom: 20px;
}

.price-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: var(--cream);
}

.price-option-row .po-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-option-row .po-label i {
  color: var(--green-500);
}

.price-option-row .po-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-800);
}

.price-option-row .po-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--green-900);
  padding: 100px 0;
}

.gallery-section .section-tag {
  color: var(--gold);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 60px;
}

.gal-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.gal-item:hover img {
  transform: scale(1.08);
}

.gal-item.tall {
  grid-row: span 2;
}

.gal-item.wide {
  grid-column: span 2;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--green-500);
}

.faq-q {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.faq-q h3, .faq-q h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.faq-q .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--green-700);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 28px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
}

/* ===== CONTACT / BOOKING ===== */
.contact-section {
  background: var(--green-800);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 133, 26, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.contact-col h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.contact-col p, .contact-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.9;
  display: block;
}

.contact-col a:hover {
  color: var(--white);
}

.contact-col .big-text {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}

.contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Blanco sobre el verde claro de WhatsApp daba 1.98:1. Se oscurece al teal de
     su propia paleta: #0e7c6e = 5.09:1 (AA). #128C7E se descarto: mide 4.14:1. */
  background: #0e7c6e;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-wa:hover {
  background: #0b6357;
  transform: translateY(-2px);
}

/* `.contact-col a` (especificidad 0,1,1) le ganaba a `.btn-wa` (0,1,0) y le colaba
   rgba(255,255,255,.75) al texto del boton: sobre el teal medía 3.58:1. Se restituye
   el blanco opaco que la propia regla .btn-wa ya declaraba -> 5.09:1. */
.contact-col a.btn-wa {
  color: var(--white);
}

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 13px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-tel:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* ===== POLICIES ===== */
.policies-section {
  background: var(--white);
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.policy-card {
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  background: var(--cream);
}

.policy-card:hover {
  border-color: var(--green-500);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.policy-card i {
  font-size: 24px;
  color: var(--green-600);
  margin-bottom: 16px;
  display: block;
}

.policy-card h3, .policy-card h4, .policy-card h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--green-900);
}

.policy-card p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-900);
  padding: 64px 0 0;
  font-family: 'Manrope', var(--font-body), system-ui, sans-serif;
  border-top: 3px solid #e07b1a;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .f-logo {
  font-family: 'Manrope', var(--font-body), sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer-brand .f-logo span {
  font-size: 17px;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.75;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s cubic-bezier(.16,1,.3,1);
}

.footer-social a:hover {
  background: #e07b1a;
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h2, .footer-col h3, .footer-col h5 {
  font-family: 'Manrope', var(--font-body), sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #e07b1a;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
  /* Color explicito: sin el, el <li> hereda --text-dark (#2e1d0d) sobre el footer
     #2a1607 = ratio 1.07 (invisible). Con .72 de blanco = 9.37:1 (AAA). */
  color: rgba(255, 255, 255, 0.72);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.25s, padding-left 0.25s;
}

.footer-col a:hover {
  color: #e07b1a;
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  /* .35 daba 3.20:1 sobre #2a1607 (falla AA). .72 = 9.37:1 */
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  margin-left: 20px;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  /* Mismo teal accesible que .btn-wa: el icono blanco pasa de 1.98:1 a 5.09:1 */
  background: #0e7c6e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(14, 124, 110, 0.35);
  transition: all 0.3s ease;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(14, 124, 110, 0.45);
}

.wa-float i {
  color: var(--white);
  font-size: 26px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(42, 22, 7, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  transition: transform 0.3s;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .whyus-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .whyus-intro {
    padding-left: 0;
    order: -1;
    grid-column: span 2;
    padding-bottom: 20px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card:nth-child(2n) {
    border-right: none;
  }
  .feature-card:nth-child(n+5) {
    border-bottom: none;
  }
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) {
    border-right: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box:nth-child(2) {
    border-right: none;
  }
  .policies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
.nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 1001;
    background:
      radial-gradient(120% 70% at 90% 0%, rgba(224,123,26,.20), transparent 58%),
      radial-gradient(120% 70% at 0% 100%, rgba(200,133,26,.15), transparent 56%),
      #2a1607;
    flex-direction: column; align-items: stretch; justify-content: center;
    gap: 2px; padding: 96px 30px 28px;
    transform: translateX(100%); opacity: 0; pointer-events: none;
    transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .4s ease;
  }
  .nav-links.active { transform: none; opacity: 1; pointer-events: auto; }
  /* Items grandes con flecha + entrada escalonada */
  .nav-links a:not(.nav-cta):not(.nav-lang) {
    font-family: var(--font-display); font-size: 31px; font-weight: 500; color: #fff;
    text-transform: none; letter-spacing: -.015em;
    padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.09);
    display: block; position: relative;
    opacity: 0; transform: translateX(28px);
    transition: opacity .5s ease, transform .55s cubic-bezier(.16,1,.3,1), color .2s;
  }
  .nav-links a:not(.nav-cta):not(.nav-lang):active { color: var(--green-300); }
  .nav-links.active a:not(.nav-cta):not(.nav-lang) { opacity: 1; transform: none; }
  .nav-links.active a:nth-of-type(1){transition-delay:.10s}
  .nav-links.active a:nth-of-type(2){transition-delay:.16s}
  .nav-links.active a:nth-of-type(3){transition-delay:.22s}
  .nav-links.active a:nth-of-type(4){transition-delay:.28s}
  .nav-links.active a:nth-of-type(5){transition-delay:.34s}
  .nav-links.active a:nth-of-type(6){transition-delay:.40s}
  /* selector idioma como chip arriba a la izquierda */
  .nav-links .nav-lang { position: absolute; top: 30px; left: 30px; opacity: 0; transition: opacity .4s ease .3s; font-size: 13px !important; padding: 9px 16px !important; }
  .nav-links.active .nav-lang { opacity: 1; }
  /* CTA reservar destacado grande al fondo */
  .nav-links .nav-cta {
    margin-top: 26px !important; justify-content: center !important;
    font-size: 16px !important; padding: 18px 24px !important;
    background: var(--green-400) !important; border-radius: 16px !important;
    box-shadow: 0 12px 30px rgba(224,123,26,.4); opacity: 0; transform: translateY(20px);
    transition: opacity .5s ease .42s, transform .5s cubic-bezier(.16,1,.3,1) .42s, background .2s;
  }
  .nav-links.active .nav-cta { opacity: 1; transform: none; }
  /* el hamburger (X) por encima del overlay */
  .nav-hamburger { z-index: 1002; }
  .nav-hamburger.active span { background: #fff; }
  .nav-links.active {
    display: flex;
  }
  .nav-hamburger {
    display: block;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .container {
    padding: 0 20px;
  }
  .section-pad {
    padding: 70px 0;
  }
  .hero-content {
    padding: 0 20px 50px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .section-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
  }
  .whyus-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .whyus-intro {
    grid-column: span 1;
    padding: 30px 0 10px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    border-right: none !important;
  }
  .feature-card:last-child {
    border-bottom: none;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .gal-item.wide {
    grid-column: span 2;
  }
  .gal-item.tall {
    grid-row: span 1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .trust-item:last-child {
    border-bottom: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .policies-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== CITABILITY BLOCK (GEO / answers-first) ===== */
.citability { background: var(--cream-dark); padding: 56px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.cite-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: 0; }
.cite-item dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-500); margin-bottom: 10px; }
.cite-item dd { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-body); }
.cite-item dd ol { margin: 0; padding-left: 18px; }
.cite-item dd ol li { margin-bottom: 4px; }
@media (max-width: 1024px) { .cite-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cite-grid { grid-template-columns: 1fr; gap: 22px; } .citability { padding: 40px 0; } }


/* ===== LANGUAGE SWITCHER ===== */
.nav-lang { color: var(--white); font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 1px; border: 1px solid rgba(255,255,255,0.3); border-radius: 6px; padding: 7px 12px; transition: all 0.3s ease; }
.nav-lang:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.breadcrumb { background: var(--cream); border-bottom: 1px solid rgba(42,22,7,.05); padding: 92px 0 14px; }
.breadcrumb .container { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); letter-spacing: .04em; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--text-muted); opacity: .5; }
.breadcrumb a { color: var(--green-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-400); }
.breadcrumb li[aria-current="page"] { color: var(--text-body); }
.lp-intro { max-width: 820px; margin: 0 auto 20px; }
@media (max-width: 768px) { .breadcrumb { padding: 90px 20px 0; } }

/* ===== LOGO IMG (nav + footer) ===== */
.nav-logo img { height: 38px; width: auto; display: block; }
.nav.scrolled .nav-logo img { height: 34px; }
.f-logo img { height: 40px; width: auto; display: block; }
.f-logo { margin-bottom: 16px; }

/* ===== COMPONENTES VISUALES (enriquecimiento de pilares) ===== */
/* Callouts */
.callout { display:flex; gap:16px; padding:20px 24px; border-radius:12px; margin:26px 0; background:var(--cream-dark); border-left:4px solid var(--green-400); }
.callout > i { color:var(--green-400); font-size:24px; flex-shrink:0; line-height:1.4; }
.callout h3, .callout h4 { font-family:var(--font-display); font-size:16px; margin:0 0 4px; color:var(--green-900); }
.callout p { font-size:14px; color:var(--text-body); margin:0; line-height:1.65; }
.callout.callout-tip { border-left-color:var(--gold); background:#fff6ef; }
.callout.callout-tip > i { color:var(--gold); }
.callout.callout-key { border-left-color:var(--green-600); background:#f6ead4; }

/* Tabla comparativa visual */
.viz-table { width:100%; border-collapse:collapse; margin:30px 0; font-size:14px; border-radius:12px; overflow:hidden; box-shadow:0 6px 28px rgba(42,22,7,.07); }
.viz-table th { background:var(--green-900); color:#fff; padding:14px 16px; text-align:left; font-weight:600; }
.viz-table td { padding:13px 16px; border-bottom:1px solid var(--cream-dark); color:var(--text-body); }
.viz-table tr:nth-child(even) td { background:var(--cream); }
.viz-table .yes { color:var(--green-400); font-weight:700; }
.viz-table .no { color:#c0392b; font-weight:700; }
.viz-table td strong { color:var(--green-900); }

/* Timeline de pasos */
.process-steps { display:grid; gap:18px; margin:30px 0; counter-reset:step; }
.process-step { display:flex; gap:18px; align-items:flex-start; }
.process-step .step-num { width:42px; height:42px; border-radius:50%; background:var(--green-400); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-weight:600; flex-shrink:0; }
.process-step .step-num::before { counter-increment:step; content:counter(step); }
.process-step h3, .process-step h4 { font-family:var(--font-display); font-size:17px; color:var(--green-900); margin:0 0 4px; }
.process-step p { font-size:14px; color:var(--text-body); margin:0; line-height:1.65; }

/* Stat cards con icono */
.icon-stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:18px; margin:30px 0; }
.icon-stat { text-align:center; padding:26px 16px; border-radius:14px; background:var(--cream); border:1px solid var(--cream-dark); transition:all .3s; }
.icon-stat:hover { box-shadow:0 8px 28px rgba(42,22,7,.08); transform:translateY(-3px); }
.icon-stat > i { font-size:28px; color:var(--green-400); margin-bottom:10px; display:block; }
.icon-stat .num { font-family:var(--font-display); font-size:30px; font-weight:600; color:var(--green-800); line-height:1; }
.icon-stat .lbl { font-size:13px; color:var(--text-muted); margin-top:6px; }

/* Split imagen + texto */
.split-feature { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; margin:44px 0; }
.split-feature .sf-img img { border-radius:16px; width:100%; box-shadow:0 12px 40px rgba(42,22,7,.12); }
.split-feature.reverse .sf-img { order:2; }
@media(max-width:768px){ .split-feature{grid-template-columns:1fr; gap:24px} .split-feature.reverse .sf-img{order:0} .viz-table{font-size:12.5px} .viz-table th,.viz-table td{padding:10px} }

/* ===== ANIMACIONES PREMIUM (conversión + permanencia) ===== */
/* View Transitions API — navegación tipo app entre las páginas (nativo, 0KB) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vtFadeOut .28s ease both; }
::view-transition-new(root) { animation: vtFadeIn .34s ease both; }
@keyframes vtFadeOut { to { opacity: 0; transform: translateY(-6px); } }
@keyframes vtFadeIn { from { opacity: 0; transform: translateY(10px); } }
/* el logo y la nav persisten suave entre páginas */
.nav-logo img { view-transition-name: brand-logo; }

/* Micro-interacciones: hover-lift premium en tarjetas */
.catalog-card, .feature-card, .policy-card, .icon-stat, .whyus-card { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; }
.catalog-card:hover { transform: translateY(-8px) scale(1.012); box-shadow: 0 26px 60px rgba(42,22,7,.16); }
.feature-card:hover { transform: translateY(-4px); }
.policy-card:hover { transform: translateY(-5px); }

/* CTA con glow en hover */
.nav-cta, .btn-catalog, .btn-primary, .btn-wa { position: relative; }
.nav-cta:hover, .btn-catalog:hover { box-shadow: 0 8px 24px rgba(224,123,26,.45); }
.btn-primary:hover { box-shadow: 0 10px 28px rgba(200,133,26,.4); }

/* WhatsApp flotante con pulso sutil (atrae sin molestar) */
/* El halo lo pinta ESTA animacion, no el box-shadow estatico de .wa-float: los
   keyframes 0%/100% lo sobrescriben siempre. Mientras estuvo en rgba(37,211,102,·)
   el boton teal seguia pulsando con el verde #25D366 del sitio de origen. */
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 24px rgba(14,124,110,.35); } 50% { box-shadow: 0 6px 24px rgba(14,124,110,.35), 0 0 0 12px rgba(14,124,110,0); } }
.wa-float { animation: waPulse 2.8s ease-in-out infinite; }

/* Badge "Más solicitado" con shimmer */

@keyframes badgeShimmer { to { background-position: -200% 0; } }

/* Count-up: evita parpadeo inicial */
.stat-number, .icon-stat .num { font-variant-numeric: tabular-nums; }

/* Respetar usuarios con movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  *, ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; transition: none !important; }
  .wa-float { animation: none !important; }
  @view-transition { navigation: none; }
}

/* ===== EFECTOS WOW (Aceternity-style, vanilla) ===== */
/* Reveal dramático (mejora el .reveal existente) */
.reveal { opacity: 0; transform: translateY(48px) scale(.965); filter: blur(6px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1), filter .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* Tarjetas 3D con spotlight que sigue el cursor */
.tilt { transform-style: preserve-3d; transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease; will-change: transform; }
.tilt > * { position: relative; z-index: 1; }
.spotlight { position: relative; }
.spotlight::after { content:""; position:absolute; inset:0; border-radius:inherit; background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(224,123,26,.16), transparent 60%); opacity:0; transition:opacity .35s ease; pointer-events:none; z-index:2; }
.spotlight:hover::after { opacity:1; }

/* Hero text reveal: líneas que suben con clip */
.hero h1 .line { display:block; overflow:hidden; }
.hero h1 .line > span { display:inline-block; transform: translateY(110%); }
.hero.reveal-ready h1 .line > span { transform: translateY(0); transition: transform 1s cubic-bezier(.16,1,.3,1); }
.hero.reveal-ready h1 .line:nth-child(2) > span { transition-delay:.12s; }
.hero.reveal-ready h1 .line:nth-child(3) > span { transition-delay:.24s; }
.hero-tag, .hero-actions { opacity:0; transform:translateY(20px); }
/* .hero-sub es el elemento LCP. Con opacity:0 el navegador no lo cuenta como pintado
   y el LCP se iba a 1.564 ms. Se conserva la animacion de entrada, pero SOLO con
   transform (que no retrasa el pintado); la opacidad nunca baja de 1. */
.hero-sub { opacity:1; transform:translateY(20px); }
.hero.reveal-ready .hero-tag { opacity:1; transform:none; transition:all .8s ease .35s; }
.hero.reveal-ready .hero-sub { transform:none; transition:transform .8s ease .5s; }
.hero.reveal-ready .hero-actions { opacity:1; transform:none; transition:all .8s ease .65s; }

/* Aurora animada sutil en el overlay del hero */
.hero-overlay::after { content:""; position:absolute; inset:0; background: radial-gradient(800px circle at 20% 30%, rgba(224,123,26,.18), transparent 50%), radial-gradient(700px circle at 80% 70%, rgba(200,133,26,.14), transparent 50%); mix-blend-mode: screen; animation: auroraFloat 14s ease-in-out infinite alternate; pointer-events:none; }
@keyframes auroraFloat { 0%{transform:translate3d(0,0,0) scale(1)} 100%{transform:translate3d(0,-3%,0) scale(1.08)} }

/* Botones magnéticos: transición suave del transform que setea el JS */
.magnetic { transition: transform .25s cubic-bezier(.2,.7,.3,1); will-change: transform; }

/* Count-up: evitar salto de layout */
.counting { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1!important; transform:none!important; filter:none!important; }
  .hero h1 .line > span, .hero-tag, .hero-sub, .hero-actions { transform:none!important; opacity:1!important; }
  .hero-overlay::after { animation:none!important; }
}

/* Breadcrumb oculto en tours t26 (hero full-bleed; el schema BreadcrumbList queda para SEO) */
.t26 nav.breadcrumb{display:none;}

/* Red de seguridad del hero: revela aunque el JS falle */
@keyframes heroSafety{to{opacity:1;transform:none;}}
.hero h1 .line>span{animation:heroSafety .01s linear 1.4s forwards;}
.hero-tag,.hero-actions{animation:heroSafety .01s linear 1.4s forwards;}
/* .hero-sub (LCP) queda FUERA de heroSafety: esa animacion mantenia opacity:0 durante
   1,4 s aunque el JS no llegara, y era la que fijaba el LCP en 1.564 ms.
   Su red de seguridad solo devuelve el transform, nunca oculta el texto. */
@keyframes heroSlideSafety{to{transform:none;}}
.hero-sub{animation:heroSlideSafety .01s linear 1.4s forwards;}
.hero.reveal-ready h1 .line>span,.hero.reveal-ready .hero-tag,.hero.reveal-ready .hero-sub,.hero.reveal-ready .hero-actions{animation:none;}

/* Encabezados de sección para lectores de pantalla / crawlers (jerarquía correcta sin alterar diseño) */
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* Manrope no tiene cursiva real: el énfasis <em>/<i> en titulares se muestra
   recto + acento naranja (evita la cursiva sintética "faux-italic"). Consistente
   con las páginas de tour. */
h1 em, h2 em, h3 em, h1 i, h2 i, h3 i { font-style: normal; color: var(--gold); }
