/* ═══════════════════════════════════════════════════════════
   Cenotes Homún — home.css
   Estilos del hero, paquetes, secciones (index + en)
═══════════════════════════════════════════════════════════ */

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--selva-deep);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 65% 55%, rgba(10,157,168,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 50% 90% at 10% 85%, rgba(6,107,115,0.12) 0%, transparent 55%),
    linear-gradient(155deg, #0d2b1e 0%, #1a3a2a 45%, #0a1e1e 100%);
}
.ripple {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(127,227,232,0.12);
  animation: rippleOut 7s ease-out infinite;
}
.ripple:nth-child(1) { width: 280px; height: 280px; right: 10%; top: 58%; animation-delay: 0s; }
.ripple:nth-child(2) { width: 480px; height: 480px; right: 4%;  top: 43%; animation-delay: 1.8s; }
.ripple:nth-child(3) { width: 680px; height: 680px; right: -4%; top: 28%; animation-delay: 3.6s; }
.ripple:nth-child(4) { width: 880px; height: 880px; right: -14%;top: 13%; animation-delay: 5.4s; }

.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--agua-light); border-radius: 50%;
  opacity: 0; animation: floatUp 9s ease-in infinite;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
  padding: 130px 48px 72px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--agua-light);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) forwards 0.3s;
}
.hero-label::before {
  content: ''; display: block;
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, var(--agua-light), transparent);
  border-radius: 1px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  line-height: 1.02;
  color: var(--arena);
  max-width: 680px;
  letter-spacing: -0.03em;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards 0.5s;
}
.hero-title em { font-style: italic; color: var(--agua-light); }

.hero-sub {
  margin-top: 20px;
  font-size: 1.05rem; font-weight: 300;
  color: rgba(245,237,224,0.68);
  max-width: 440px; line-height: 1.75;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards 0.7s;
}

.hero-actions {
  margin-top: 40px;
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards 0.9s;
}

/* SVG cenote art */
.cenote-art {
  position: absolute; right: -2%; top: 50%;
  transform: translateY(-50%);
  width: 44%; max-width: 560px;
  opacity: 0; animation: fadeIn 1.6s var(--ease-out) forwards 0.8s;
}

/* Stats bar */
.hero-stats-wrapper {
  position: relative; z-index: 2; width: 100%;
  background: rgba(10,28,20,0.55);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(127,227,232,0.1);
}
.hero-stats {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 48px;
  display: flex; gap: 48px;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) forwards 1.1s;
  flex-wrap: wrap;
}
.stat { border-left: 2px solid rgba(127,227,232,0.3); padding-left: 16px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; color: var(--arena); line-height: 1;
}
.stat-label {
  font-size: 0.7rem; color: rgba(245,237,224,0.42);
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px;
}

/* ─── SECCIÓN EXPERIENCIA ───────────────────────────────── */
.section-exp {
  padding: 112px 48px;
  max-width: 1200px; margin: 0 auto;
}
.exp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; margin-top: 56px; align-items: start;
}
.exp-features { display: flex; flex-direction: column; gap: 4px; }

.feature {
  display: grid; grid-template-columns: 52px 1fr;
  gap: 16px; align-items: start;
  padding: 20px 20px;
  border-radius: var(--r-l);
  transition: background 0.3s, transform 0.3s var(--ease-out);
  cursor: default;
  border: 1px solid transparent;
}
.feature:hover {
  background: rgba(10,157,168,0.05);
  border-color: rgba(10,157,168,0.1);
  transform: translateX(4px);
}

.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(10,157,168,0.12), rgba(10,157,168,0.06));
  border-radius: var(--r-m);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
  border: 1px solid rgba(10,157,168,0.15);
  transition: all 0.3s var(--ease-out);
}
.feature:hover .feature-icon {
  background: linear-gradient(135deg, rgba(10,157,168,0.2), rgba(10,157,168,0.1));
  transform: scale(1.05);
}
.feature-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 5px; color: var(--selva); }
.feature-desc { font-size: 0.875rem; color: #666; line-height: 1.65; }

/* Cenote card visual */
.cenote-card {
  background: var(--selva-deep);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--sombra-xl);
}
.cenote-card-bg { position: absolute; inset: 0; }
.cenote-card-info {
  position: relative; z-index: 2;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(10,22,16,0.97) 0%, rgba(10,22,16,0.5) 60%, transparent 100%);
}
.cenote-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--arena); margin-bottom: 3px;
}
.cenote-card-sub { font-size: 0.82rem; color: var(--agua-light); letter-spacing: 0.05em; }
.badge-flotante {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  background: var(--acento); color: white;
  font-size: 0.7rem; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(232,160,0,0.4);
}

/* ─── SECCIÓN PAQUETES ──────────────────────────────────── */
.section-paquetes {
  background: linear-gradient(180deg, var(--gris) 0%, white 100%);
  padding: 112px 48px;
}
.section-paquetes-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before { display: none; }

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

.pkg-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: var(--sombra-m);
  border: 1px solid rgba(0,0,0,0.05);
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-xl);
}
.pkg-card.featured {
  background: var(--selva);
  transform: scale(1.04) translateY(-4px);
  box-shadow: var(--sombra-xl), 0 0 0 3px rgba(10,157,168,0.3);
  z-index: 2;
}
.pkg-card.featured:hover {
  transform: scale(1.04) translateY(-12px);
  box-shadow: 0 32px 80px rgba(26,58,42,0.25), 0 0 0 3px rgba(10,157,168,0.4);
}

/* Cabecera de tarjeta con gradiente */
.pkg-card-visual {
  height: 6px;
  background: linear-gradient(90deg, var(--agua-deep), var(--agua), var(--agua-light));
}
.pkg-card.featured .pkg-card-visual {
  background: linear-gradient(90deg, var(--agua), var(--agua-light), rgba(255,255,255,0.4));
  height: 4px;
}

.pkg-header { padding: 24px 28px 16px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.pkg-card.featured .pkg-header { border-color: rgba(255,255,255,0.08); }
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--selva); margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.pkg-card.featured .pkg-name { color: var(--arena); }
.pkg-tagline { font-size: 0.82rem; color: #999; }
.pkg-card.featured .pkg-tagline { color: rgba(245,237,224,0.55); }

.pkg-badge {
  position: absolute; top: -1px; right: 24px;
  background: linear-gradient(135deg, var(--agua), var(--agua-deep));
  color: white;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 8px rgba(10,157,168,0.4);
}

.pkg-price { padding: 20px 28px 8px; }
.price-label {
  font-size: 0.68rem; color: #bbb;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px;
}
.pkg-card.featured .price-label { color: rgba(245,237,224,0.38); }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; color: var(--selva); line-height: 1;
  letter-spacing: -0.02em;
}
.pkg-card.featured .price-amount { color: var(--agua-light); }

.pkg-features { padding: 0 28px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.pkg-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: #444; line-height: 1.45;
  padding: 4px 0;
}
.pkg-card.featured .pkg-feature { color: rgba(245,237,224,0.78); }
.pkg-feature::before {
  content: '';
  width: 18px; height: 18px; min-width: 18px;
  background: linear-gradient(135deg, rgba(10,157,168,0.15), rgba(10,157,168,0.08));
  border: 1px solid rgba(10,157,168,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4.2 7.2L8 3' stroke='%230a9da8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pkg-card.featured .pkg-feature::before {
  background-color: rgba(127,227,232,0.12);
  border-color: rgba(127,227,232,0.25);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4.2 7.2L8 3' stroke='%237fe3e8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pkg-footer { padding: 16px 28px 24px; }
.pkg-btn {
  width: 100%; padding: 13px;
  border-radius: var(--r-m);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  text-decoration: none; display: block; text-align: center;
  border: 1.5px solid var(--agua); color: var(--agua);
  background: transparent; letter-spacing: 0.01em;
}
.pkg-btn:hover { background: var(--agua); color: white; transform: translateY(-1px); }
.pkg-card.featured .pkg-btn {
  background: rgba(127,227,232,0.15);
  color: var(--agua-light);
  border-color: rgba(127,227,232,0.35);
}
.pkg-card.featured .pkg-btn:hover {
  background: var(--agua-light);
  border-color: var(--agua-light);
  color: var(--selva);
}

/* ─── SECCIÓN CENOTES GALLERY ───────────────────────────── */
.section-cenotes { padding: 112px 48px; max-width: 1200px; margin: 0 auto; }
.cenotes-scroll {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 40px;
}
.cenote-thumb {
  border-radius: var(--r-l); overflow: hidden;
  aspect-ratio: 3/4; position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  box-shadow: var(--sombra-m);
}
.cenote-thumb:hover { transform: scale(1.03) translateY(-4px); box-shadow: var(--sombra-xl); }
.cenote-thumb:first-child { grid-row: span 2; aspect-ratio: auto; }
.cenote-thumb-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.cenote-thumb:hover .cenote-thumb-bg { transform: scale(1.06); }
.cenote-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,16,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 18px 20px;
  opacity: 0; transition: opacity 0.35s;
}
.cenote-thumb:hover .cenote-thumb-overlay { opacity: 1; }
.cenote-thumb-name {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 1.05rem;
}
.cenote-thumb-type { color: var(--agua-light); font-size: 0.75rem; margin-top: 3px; }

/* ─── PROCESO (4 pasos) ─────────────────────────────────── */
.section-proceso { background: var(--selva); padding: 96px 48px; }
.section-proceso-inner { max-width: 1200px; margin: 0 auto; }
.section-proceso .section-title { color: var(--arena); }
.section-proceso .section-tag { color: var(--agua-light); }
.section-proceso .section-tag::before { background: var(--agua-light); }

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 56px; position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127,227,232,0.25), transparent);
}
.step { text-align: center; }
.step-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--agua), var(--agua-deep));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: white;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(10,157,168,0.4);
  transition: transform 0.3s var(--ease-spring);
}
.step:hover .step-num { transform: scale(1.08); }
.step-title { font-weight: 600; color: var(--arena); margin-bottom: 8px; font-size: 0.95rem; }
.step-desc { font-size: 0.83rem; color: rgba(245,237,224,0.48); line-height: 1.65; }

/* ─── REVIEWS ───────────────────────────────────────────── */
.section-reviews { padding: 96px 48px; background: var(--blanco); }
.section-reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.review-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 28px;
  border: 1px solid var(--gris-medio);
  box-shadow: var(--sombra-s);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: rgba(10,157,168,0.07);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-l); }
.review-stars { color: var(--acento); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 14px; }
.review-text {
  font-size: 0.9rem; color: #555; line-height: 1.75;
  font-style: italic; margin-bottom: 18px;
}
.review-author { display: flex; align-items: center; gap: 11px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--agua), var(--agua-deep));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(10,157,168,0.3);
}
.review-name { font-weight: 600; font-size: 0.88rem; color: var(--selva); }
.review-origin { font-size: 0.75rem; color: #aaa; margin-top: 1px; }

/* ─── DESTINOS ──────────────────────────────────────────── */
.section-destinos { padding: 96px 48px; background: var(--gris); }
.destinos-inner { max-width: 1200px; margin: 0 auto; }
.destinos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 40px;
}
.destino-card {
  border-radius: var(--r-xl); overflow: hidden;
  position: relative; min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  box-shadow: var(--sombra-l);
}
.destino-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-xl); }
.destino-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.destino-card:hover .destino-card-bg { transform: scale(1.04); }
.destino-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,14,0.93) 0%, rgba(10,20,14,0.35) 55%, transparent 100%);
  z-index: 1;
}
.destino-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: linear-gradient(135deg, var(--agua), var(--agua-deep));
  color: white; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  box-shadow: 0 2px 8px rgba(10,157,168,0.4);
}
.destino-badge-soon {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}
.destino-card-body { position: relative; z-index: 2; padding: 24px 28px; }
.destino-location { font-size: 0.72rem; color: rgba(245,237,224,0.5); letter-spacing: 0.08em; margin-bottom: 6px; }
.destino-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--arena); margin-bottom: 8px;
  line-height: 1.2; letter-spacing: -0.01em;
}
.destino-desc { font-size: 0.85rem; color: rgba(245,237,224,0.62); line-height: 1.65; margin-bottom: 16px; max-width: 360px; }
.destino-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.82rem; font-weight: 600; color: var(--agua-light);
  transition: gap 0.25s var(--ease-out);
}
.destino-card:hover .destino-link { gap: 10px; }
.destino-link-soon { color: rgba(245,237,224,0.38); }
.destino-soon { opacity: 0.78; }
.destino-soon:hover { opacity: 1; }

/* ─── GARANTÍAS ─────────────────────────────────────────── */
.section-garantias {
  background: linear-gradient(135deg, var(--selva) 0%, #0d3a2a 100%);
  padding: 0;
  border-top: 1px solid rgba(127,227,232,0.08);
  border-bottom: 1px solid rgba(127,227,232,0.08);
}
.garantias-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 28px 48px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.garantia-item {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 180px;
  padding: 8px 12px;
  border-radius: var(--r-m);
  transition: background 0.2s;
}
.garantia-item:hover { background: rgba(255,255,255,0.05); }
.garantia-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(127,227,232,0.1);
  border-radius: var(--r-s);
  display: flex; align-items: center; justify-content: center;
}
.garantia-text { display: flex; flex-direction: column; gap: 2px; }
.garantia-text strong { font-size: 0.85rem; font-weight: 600; color: var(--arena); line-height: 1.3; }
.garantia-text span { font-size: 0.74rem; color: rgba(245,237,224,0.44); line-height: 1.4; }
.garantia-sep { width: 1px; height: 40px; background: rgba(127,227,232,0.12); flex-shrink: 0; }

/* ─── CTA / CONTACTO ────────────────────────────────────── */
.section-cta {
  background: linear-gradient(145deg, var(--agua-deep) 0%, var(--agua) 50%, #0dd5e0 100%);
  padding: 96px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,0.06), transparent),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.section-cta-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white; margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.cta-sub { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 36px; line-height: 1.7; }

/* Formulario */
.cta-form-full {
  max-width: 520px; margin: 0 auto 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cta-input {
  width: 100%; padding: 13px 16px;
  border: none; border-radius: var(--r-m);
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  outline: none;
  background: rgba(255,255,255,0.92);
  color: var(--texto);
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.cta-input:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4), 0 2px 8px rgba(0,0,0,0.1);
  background: white;
}
.cta-input::placeholder { color: #aaa; }
select.cta-input { cursor: pointer; appearance: none; }
.cta-textarea { resize: vertical; min-height: 88px; line-height: 1.55; }
.cta-btn {
  background: var(--selva-deep); color: white; border: none;
  padding: 14px 32px; border-radius: var(--r-m);
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  align-self: center; min-width: 200px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.cta-btn:hover { background: #0d1f16; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.cta-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.cta-note { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 4px; }

/* Success */
.cta-success { text-align: center; padding: 36px 20px; }
.cta-success-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px;
}
.cta-success h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: white; margin-bottom: 8px; }
.cta-success p { color: rgba(255,255,255,0.72); font-size: 0.95rem; }

/* ─── SEO SECTION ───────────────────────────────────────── */
.seo-section {
  padding: 72px 48px; max-width: 900px; margin: 0 auto;
  border-top: 1px solid var(--gris-medio);
}
.seo-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--selva); margin-bottom: 14px;
}
.seo-section p { font-size: 0.92rem; color: #666; line-height: 1.85; margin-bottom: 14px; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content { padding: 90px 24px 56px; }
  .hero-stats { padding: 20px 24px; gap: 24px; }
  .cenote-art { display: none; }
  .section-exp, .section-cenotes, .seo-section { padding: 72px 24px; }
  .section-paquetes, .section-proceso, .section-reviews,
  .section-cta, .section-destinos, .section-garantias { padding: 72px 24px; }
  .exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .packages-grid { grid-template-columns: 1fr; }
  .pkg-card.featured { transform: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .cenotes-scroll { grid-template-columns: 1fr 1fr; }
  .cenote-thumb:first-child { grid-row: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .destinos-grid { grid-template-columns: 1fr; }
  .cta-form-row { grid-template-columns: 1fr; }
  .cta-btn { width: 100%; }
  .garantia-sep { display: none; }
  .garantias-inner { padding: 24px 20px; gap: 16px; }
  .garantia-item { min-width: calc(50% - 8px); flex: none; }
}
@media (max-width: 480px) {
  .garantia-item { min-width: 100%; }
  .hero-stats { gap: 16px; }
}
