/* =========================================================
   ETN Turistar — styles.css
   Identidad, layout, UI/UX y efectos visuales por sección
   ========================================================= */

/* ====== Design Tokens (alineados a ETN) ====== */
:root{
  --etn-blue:#003857;       /* azul profundo institucional */
  --etn-blue-2:#006c9a;     /* azul/teal de acento */
  --etn-silver:#e6eef5;     /* superficies claras */
  --etn-ink:#0b1c2c;        /* texto */
  --etn-body:#f7fafc;       /* fondo */
  --etn-cta:#0bb769;        /* botón primario */
  --etn-cta-dark:#079456;
  --radius:14px;
  --shadow:0 10px 22px rgba(0,0,0,.08);
  --shadow-soft:0 6px 14px rgba(0,0,0,.06);
}
.btn-secondary,.btn-tertiary{
  border: 1px solid #00c853 !important;
}
/* ====== Reset y base ====== */
*{ box-sizing:border-box; font-family: "Montserrat", sans-serif;}
html,body{ margin:0; padding:0; }
body{
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  color:var(--etn-ink); background:var(--etn-body); line-height:1.6;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width:min(1200px,92%); margin:auto; }
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* ====== Transiciones globales ====== */
*, *::before, *::after{
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    opacity .35s ease;
}

/* ====== Topbar / Header ====== */
.topbar{ background:var(--etn-blue); color:#fff; font-size:.9rem; }
.topbar .container{ display:flex; align-items:center; justify-content:space-between; padding:.5rem 0; }
.topbar ul{ display:flex; gap:1rem; list-style:none; margin:0; padding:0; }
.lang-currency select{
  background:transparent; border:1px solid rgba(255,255,255,.35); color:#fff;
  padding:.3rem .6rem; border-radius:8px;
}

header.site-header{
  position:sticky; top:0; z-index:50; background:#fff; border-bottom:1px solid #e8edf3;
  /* sombra contextual suave para jerarquía */
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.nav{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.9rem 0; }
.brand{ display:flex; align-items:center; gap:.6rem; }
.brand img{ height:34px; }
nav ul{ display:flex; gap:1rem; list-style:none; margin:0; padding:0; }
nav a{ padding:.5rem .8rem; border-radius:10px; }
nav a:hover{ background:var(--etn-silver); }
.cta-btn{
  background:var(--etn-cta); color:#fff; padding:.6rem 1rem; border-radius:12px; font-weight:600;
  box-shadow:var(--shadow-soft);
}
.cta-btn:hover{ background:var(--etn-cta-dark); transform: translateY(-1px); }

/* ====== Hero ====== */
.hero{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:2rem; align-items:center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.hero-copy h1{
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height:1.15; margin:.2rem 0 .8rem; color:var(--etn-blue);
}
.hero-copy p{ font-size:16px; max-width:52ch;  font-family: "Montserrat", sans-serif; font-weight: 400; margin-bottom: 20px; }
.hero-actions{ display:flex; gap:.8rem; margin-top:1.2rem; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:.5rem; padding:.85rem 1.1rem; border-radius:12px;
  border:1px solid transparent; font-weight:600; box-shadow:var(--shadow-soft);
}
.btn-primary{ background: var(--etn-cta) !important; color:#fff; box-shadow: 0 8px 18px rgba(11,183,105,.22); }
.btn-primary:hover{ background:var(--etn-cta-dark); box-shadow:0 10px 26px rgba(11,183,105,.32); transform: translateY(-1px); }
.btn-ghost{ border-color:#cfe0ea; background:#fff;    border-color: #cfe0ea;background: #fff;margin: 30px auto;width: 238px;display: block; }
.btn-ghost:hover{ transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.hero-media{ border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); }
.hero-media img{ aspect-ratio:16/10; object-fit:cover; transform: scale(1.02); }
.hero-media:hover img{ transform: scale(1.05); }

.booking-placeholder{
  margin-top:1.2rem; border:1px dashed #cfe0ea; border-radius:12px; padding:1rem; background:#fff;
}

/* ====== Featured Routes ====== */
section.routes{ padding:3rem 0; }
.section-head{ display:flex; align-items:end; justify-content:space-between; margin-bottom:1.2rem; }
.section-head h2{ margin:0; color:var(--etn-blue); }
.routes h2{text-align: center; margin-bottom: 30px;}
.cards{ display:grid; gap:1.2rem; grid-template-columns: repeat(4, 1fr); margin-top: 20px; }
.card{
  background:#fff; border-radius:16px; overflow:hidden; box-shadow:var(--shadow-soft); border:1px solid #e7edf3;
  display:flex; flex-direction:column; will-change: transform;
}
.cards-two{ display:grid; gap:1.2rem; grid-template-columns: repeat(3, 1fr); margin-top: 20px; }
.card-two{
  background:#fff; border-radius:16px; overflow:hidden; box-shadow:var(--shadow-soft); border:1px solid #e7edf3;
  display:flex; flex-direction:column; will-change: transform;
}
.card img{ aspect-ratio:16/10; object-fit:cover; }
.card .pad{ padding:1rem; }
.card .pad p{ margin-top: 25px; }
.meta{ display:flex; gap:.6rem; align-items:center; font-size:.95rem; color:#38566d; }
.pill{ background:var(--etn-silver); border-radius:999px; padding:.25rem .6rem; }
.card h3{ margin:.5rem 0 .4rem; }
.card p{ margin:0 0 .6rem; }
.card a{ font-weight: 600;
    background: #7BA7AE;
    padding: 10px 40px;
    margin: auto;
    display: block;
    text-align: center;
    color: #fff;
    border-radius: 7px;}

/* Elevación y zoom en hover (tarjetas) */
.card:hover{ transform: translateY(-6px); box-shadow: 0 16px 30px rgba(0,0,0,.10); }
.card:hover img{ transform: scale(1.04); }
.card a:hover { background: #fff; border:1px solid #38566d; color:#38566d }
/* ====== Why ETN ====== */
section.why{ padding:3rem 0; background:linear-gradient(180deg,#fff, #f3f8fc); }
.features{ display:grid; gap:1rem; grid-template-columns: repeat(4,1fr); }
.feature{
  background:#fff; border:1px solid #e7edf3; border-radius:16px; padding:1.2rem;
  box-shadow:var(--shadow-soft); display:grid; gap:.6rem; align-content:start; position:relative;
}
.feature h4{ margin:.2rem 0; color:var(--etn-blue); }
.feature p{ margin:0; color:#2b4152; }
.icon{ width:44px; height:44px; border-radius:10px; background:var(--etn-silver); display:grid; place-items:center; }

/* Borde activo + micro-animación del icono */
.feature::after{
  content:""; position:absolute; inset:0; border-radius:16px; border:2px solid transparent; pointer-events:none;
}
.feature:hover::after,
.feature:focus-within::after{ border-color: rgba(0,108,154,.25); }
.feature .icon{ transform: translateY(0); }
.feature:hover .icon{ transform: translateY(-2px) scale(1.04); }

/* ====== The Experience ====== */
section.experience{ padding:3rem 0; }
.xp-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; }
.xp-visual{ border-radius:16px; overflow:hidden; box-shadow:var(--shadow); }
.xp-visual img{ aspect-ratio:16/12; object-fit:cover; }
.xp-points{ display:grid; gap:1rem; }
.xp-points li{
  background:#fff; border:1px solid #e7edf3; border-radius:14px; padding:1rem; list-style:none;
}
.xp-points strong{ color:var(--etn-blue); }

/* Interacción sutil en items */
.xp-points li:hover{
  transform: translateY(-3px); box-shadow: 0 14px 24px rgba(0,0,0,.07); border-color:#d4e5ef;
}

/* ====== Coverage / Map ====== */
section.coverage{ padding:3rem 0; background:#fff; }
.map-wrap{ border-radius:16px; overflow:hidden; border:1px solid #e7edf3; box-shadow:var(--shadow-soft); }
.map-wrap img{ aspect-ratio:16/9; object-fit:cover; transform: scale(1.01); }
.map-wrap:hover img{ transform: scale(1.04); }
.legend{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top:.8rem; }
.legend .pill{ font-size:.9rem; transform: translateY(0); }
.legend .pill:hover{ transform: translateY(-2px); background:#d9e9f3; }

/* ====== Tips (FAQ) ====== */
section.tips{ padding:3rem 0; background:linear-gradient(180deg,#f3f8fc,#fff); }
details{
  background:#fff; border:1px solid #dfeaf1; border-radius:12px; padding:1rem; margin:.6rem 0;
  box-shadow:var(--shadow-soft); overflow:hidden;
}
summary{ cursor:pointer; font-weight:700; color:var(--etn-blue); position:relative; padding-right:2rem; }
details > summary::after{
  content:"▾"; position:absolute; right:.6rem; top:.6rem; color: var(--etn-blue-2);
  transition: transform .25s ease;
}
details[open] > summary::after{ transform: rotate(-180deg); }
details[open]{ box-shadow: 0 10px 22px rgba(0,0,0,.06); }

/* ====== App ====== */
section.app{ padding:3rem 0; }
.app-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; align-items:center; }
.store-badges{ display:flex; gap:.8rem; flex-wrap:wrap; }
.store-badges img{ height:44px; }

/* Mock “flotante” del teléfono */
.app-grid > div:last-child img{
  transform: translateY(0);
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.12));
}
.app-grid > div:last-child img:hover{
  transform: translateY(-4px);
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.16));
}

/* ====== Social Proof ====== */
section.proof{ padding:2.6rem 0; background:#fff; }
.logos{ display:flex; gap:1.2rem; flex-wrap:wrap; align-items:center; opacity:.9; }
.logos img{ height:34px; filter:grayscale(1); opacity:.85; transform: translateY(0); }
.logos img:hover{ opacity:1; transform: translateY(-2px); }

/* ====== Final CTA ====== */
section.final-cta{
  padding:3rem 0; background:linear-gradient(90deg, var(--etn-blue), #02527a); color:#fff; border-radius:18px;
  margin:2rem 0; box-shadow:var(--shadow); position:relative;
}
.final-cta .container{ display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.final-cta h3{ margin:0; font-size:clamp(1.3rem,2.2vw,1.8rem); }
/* efecto “respirante” leve */
.final-cta::before{
  content:""; position:absolute; inset:0; border-radius:18px;
  background: radial-gradient(1200px 200px at 20% 50%, rgba(255,255,255,.08), transparent 60%);
  opacity:.65; pointer-events:none;
}

/* ====== Footer ====== */
footer.site-footer{ padding:2.2rem 0; background:#021c2a; color:#cfe0ea; }
.foot-grid{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:1.4rem; }
.foot-grid h5{ margin:.2rem 0 .6rem; color:#fff; }
.foot-grid ul{ list-style:none; margin:0; padding:0; display:grid; gap:.4rem; }
.foot-meta{
  border-top:1px solid #1e3849; margin-top:1.2rem; padding-top:.8rem; font-size:.9rem;
  display:flex; justify-content:space-between; flex-wrap:wrap;
}

/* ====== Scroll Reveal (sin JS, al cargar) ====== */
.reveal{ opacity:0; transform: translateY(16px); animation: revealUp .7s ease-out forwards; }
.hero.reveal        { animation-delay: .05s; }
.routes.reveal      { animation-delay: .10s; }
.why.reveal         { animation-delay: .15s; }
.experience.reveal  { animation-delay: .20s; }
.coverage.reveal    { animation-delay: .25s; }
.tips.reveal        { animation-delay: .30s; }
.app.reveal         { animation-delay: .35s; }
.proof.reveal       { animation-delay: .40s; }
.final-cta.reveal   { animation-delay: .45s; }
.site-footer.reveal { animation-delay: .50s; }

@keyframes revealUp { to { opacity:1; transform:none; } }

/* Stagger automático para grupos (cards / features) */
.cards > *{
  animation: revealUp .7s ease-out forwards;
  opacity:0; transform: translateY(12px);
}
.cards > *:nth-child(1){ animation-delay:.05s; }
.cards > *:nth-child(2){ animation-delay:.15s; }
.cards > *:nth-child(3){ animation-delay:.25s; }

.features > *{
  animation: revealUp .6s ease-out forwards;
  opacity:0; transform: translateY(12px);
}
.features > *:nth-child(1){ animation-delay:.05s; }
.features > *:nth-child(2){ animation-delay:.12s; }
.features > *:nth-child(3){ animation-delay:.19s; }
.features > *:nth-child(4){ animation-delay:.26s; }

/* ====== Preferencia de accesibilidad ====== */
@media (prefers-reduced-motion: reduce){
  .reveal, .cards > *, .features > *{ animation:none !important; opacity:1 !important; transform:none !important; }
}

/* ====== Variantes de animación ====== */
/* Suave por defecto; puedes cambiar la “intensidad” por sección */
.reveal--soft{ animation-duration:.6s; }
.reveal--bold{ animation-duration:.9s; transform: translateY(22px); }
.reveal--none{ animation:none !important; opacity:1 !important; transform:none !important; }
.app-downloads {
  text-align: center;
  margin: 3rem auto;
}

.app-downloads h2 {
  color: var(--etn-blue-1);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.app-downloads p {
  color: #444;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.store-buttons img {
  height: 60px;
  transition: transform 0.3s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}


footer a {
    width: auto !important;
}


.how-to-buy h2 {
  text-align: center;
  margin-bottom: 40px;
}

.how-to-buy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.how-to-steps ol {
  padding-left: 20px;
  margin-top: 30px;
}

.how-to-steps li {
  margin-bottom: 12px;
}

.how-to-tips {
  background: #f5f7fa;
  padding: 30px;
  border-radius: 12px;
  position: sticky;
  top: 300px; /* ajusta según el header */
  align-self: start;
}
.how-to-tips-two {
  align-self: start;
   padding: 5px;
}
.why-cho{
  padding: 85px 15px;
  background-image: linear-gradient(180deg, rgba(0, 58, 93, 0.76) 37%, rgba(94, 144, 152, 0.4) 100%), url(https://djolc8uvxsuau.cloudfront.net/wp-content/uploads/etn-footer-widget-bg.png) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.why-cho h2, .why-cho h3, .why-cho p{
  color:#fff;
  margin-bottom: 30px;
  text-align: center;
}
.how-to-tips h3,.how-to-tips-two h3 {
  margin-bottom: 20px;
}

.how-to-tips ul,.how-to-tips-two ul {
  list-style: none;
  padding: 0;
}

.how-to-tips li,.how-to-tips-two li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.how-to-tips li::before,.how-to-tips-two li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0b4cff;
  font-weight: bold;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #0b4cff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn-primary:hover {
  background: #0836b8;
}

.steps-cards {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-cards li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  margin-bottom: 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  position: relative;
}

.step-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 32px;
  height: 32px;
  background: #02527a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 28px;
  line-height: 1;
  margin-top: 4px;
}

.step-content h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.step-content p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

/* Hover sutil */
.steps-cards li:hover {
  transform: translateY(-2px);
  transition: all 0.2s ease;
}
.more-routes {
  margin-top: 40px;
  text-align: center;
}

.more-routes h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.more-routes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 35px;
}

.route-card {
  border: 1px solid #e0e6ef;
  border-radius: 16px;
  padding: 20px;
  background: #f9fbff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.route-card h4 {
  margin: 0;
  color: #003857;
  font-size: 1.1rem;
}

.route-card h4 span {
  font-weight: normal;
  font-size: 0.9rem;
  color: #6b7280;
}

.route-path {
  font-size: 0.9rem;
  color: #374151;
}

.route-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.route-cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #003857;
  color: #003857;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.route-cta:hover {
  background: #003857;
  color: #fff;
}

/* Glass effect */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Intro */
.experience-intro {
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Columnas internas */
.experience-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.experience-col h4 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.experience-col ul {
  list-style: none;
  padding: 0;
}

.experience-col li {
  margin-bottom: 10px;
  line-height: 1.5;
}
.experience-overlay h2{
  text-align: center;
  margin-bottom: 35px;
}

/* ===== EXPERIENCE BOX (overlay real) ===== */
.experience-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    gap: 40px;
}

.experience-image {
  position: relative;
  z-index: 1;
}

.experience-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  max-width: 76% !important;
}

/* Caja sobrepuesta */
.experience-box {
  position: absolute;
    right: 0;
    top: 75px;
    max-width: 760px;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

/* Tipografía interna */
.experience-box h4 {
  color: var(--etn-blue);
  margin-bottom: 12px;
}

.experience-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-box li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.experience-box li strong {
  color: var(--etn-blue);
}
.experience-box {
  border: 1px solid rgba(255,255,255,0.4);
}
.experience-box:hover {
  transform: translateY(-4px);
}
/* ===== FAQ + Travel Tips ===== */
section.faq-tips {
  padding: 3rem 0;
  background: linear-gradient(180deg, #ffffff, #f3f8fc);
}

.faq-tips h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--etn-blue);
}

.faq-tips-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

/* FAQ column */
.faq-column h3 {
  margin-bottom: 16px;
  color: var(--etn-blue);
}

.faq-column details {
  background: #fff;
  border: 1px solid #dfeaf1;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
}

.faq-column summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--etn-blue);
  list-style: none;
  position: relative;
  padding-right: 28px;
}

.faq-column summary::-webkit-details-marker {
  display: none;
}

.faq-column summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: var(--etn-blue-2);
}

.faq-column details[open] summary::after {
  content: "–";
}

.faq-column p {
  margin-top: 12px;
  margin-bottom: 0;
  color: #2b4152;
}

/* Tips column */
.tips-column {
  padding: 28px;
  border-radius: 16px;
  position: sticky;
  top: 180px;
}

.tips-column h3 {
  margin-bottom: 18px;
  color: var(--etn-blue);
}

.travel-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.travel-tips-list li {
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.travel-tips-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0b4cff;
  font-weight: 700;
}
/* ===== APP DOWNLOAD ===== */
.app-download {
  padding: 3.5rem 0;
  background: #f6fbff;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.app-intro {
  max-width: 520px;
  margin-bottom: 18px;
}

.app-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.app-features li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.app-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b4cff;
}

.app-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.store-img img {
  height: 52px;        /* tamaño estándar */
  width: auto;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-img:hover img {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.app-visual {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

.mockup-placeholder {
  opacity: 0.6;
  font-weight: 600;
}
/* ===== MEXICO FLAVORS ===== */
.mexico-flavors {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #ffffff, #f8f4ef);
}
.mexico-flavors h2,.mexico-flavors p{
  text-align: center;
}
.flavors-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.flavors-content {
  text-align: left;
}

.flavors-intro {
  max-width: 620px;
  margin: 35px auto ;
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.flavor-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flavor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.flavor-card h4 {
  margin-bottom: 6px;
  color: var(--etn-blue);
}

.flavors-outro {
  max-width: 560px;
  font-weight: 500;
  margin-top: 35px;
}

.flavors-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.routes .tit-r{
 margin-top: 30px; 
}
.dest{
  background: #003857;
  padding: 5px 25px;
  color: #fff;
}

/* =========================
   HOW TO BUY / WHY ETN
========================= */

.how-to-buy {
  padding: 45px 15px;
  background-color: #f9fbfd;
}

.how-to-buy .container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-to-buy h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0a2540;
}

.how-to-buy h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0a2540;
}

.how-to-buy h4 {
  font-size: 1rem;
  margin: 1rem 0 0.5rem;
  color: #1d3557;
}

.how-to-buy p,
.how-to-buy li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

/* =========================
   BENEFITS GRID
========================= */
.why-etn {
  margin-bottom: 5rem;
}

.why-etn-header {
  max-width: 760px;
  margin-bottom: 3rem;
}

/* BLOQUE PRINCIPAL */
.why-etn-highlight {
  padding: 2.5rem 2rem;
  margin-bottom: 3.5rem;
  border-left: 4px solid #000;
}

.why-etn-highlight ul {
  padding-left: 1.2rem;
}

.why-etn-highlight li {
  margin-bottom: 0.6rem;
}

.why-etn-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.25rem;
}

.why-etn-block h3 {
  margin-bottom: 0.75rem;
}

.why-etn-block ul {
  padding-left: 1.2rem;
}

.why-etn-block li {
  margin-bottom: 0.55rem;
  line-height: 1.55;
}


/* =========================
   TIPS GRID
========================= */

.tips-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 2rem;
}

.tips-block {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.tips-block ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.tips-block li {
  margin-bottom: 0.6rem;
}

/* =========================
   CTA BUTTON
========================= */

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #00c853;
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #00b14a;
}

/* =========================
   SPACING HELPERS
========================= */

.mt-large {
  margin-top: 4rem;
}

.mt-medium {
  margin-top: 2rem;
}

.travel-info {
  padding: 35px 15px;
  background: #f9fbfd;
}

.travel-info-grid {
  display: block;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.travel-info-grid h2{
  text-align: center;
}
.travel-tabs,
.booking-steps {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.tabs-nav {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: #edf2f7;
  cursor: pointer;
  font-weight: 500;
  color: #000;
}

.tab-btn.active {
  background: #0a2540;
  color: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.tab-panel h4 {
  margin-top: 1rem;
}

/* Steps */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-card {
  position: relative;
  padding: 1.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 1.5rem;
}

.step-number {
  position: absolute;
  top: -12px;
  left: -12px;
  background: #00c853;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.step-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.booking-carousel {
  overflow-x: hidden;
  overflow-y: visible;
}

.booking-column {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.booking-carousel {
  overflow-x: hidden;
  overflow-y: visible;
}


.booking-track {
  display: flex;
  transition: transform 0.4s ease;
}

.booking-slide {
  min-width: 100%;
padding: 2rem 1.5rem;
border-radius: 14px;
position: relative;
text-align: center;
border: 1px solid;
}

.booking-slide ul {
  padding-left: 1.2rem;
  margin: 1.25rem 0;
}

.step-number {
  position: relative;
  top: 0;
  background: #38566d;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* Dots */
.booking-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.booking-dots .dot {
  width: 10px;
  height: 10px;
  background: #cbd5e0;
  border-radius: 50%;
  cursor: pointer;
}

.booking-dots .dot.active {
  background: #0a2540;
}

.final-cta {
  padding: 4rem 0;
  background: #f7f7f7; /* opcional */
}

.cta-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap; /* para responsive */
}

.cta-text {
  flex: 2; /* ocupa más espacio */
}
.cta-text h2{
  color:#fff;
}

.cta-actions {
  flex: 1; /* columna más pequeña */
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
/* Responsive */
@media (max-width: 980px) {
      .hero{ grid-template-columns:1fr; }
      .cards{ grid-template-columns:1fr 1fr; }
      .features{ grid-template-columns:1fr 1fr; }
      .xp-grid, .app-grid{ grid-template-columns:1fr; }
      .foot-grid{ grid-template-columns:1fr 1fr; }
      .experience-wrapper{ display: block !important; }
      .experience-wrapper { grid-template-columns: 1fr; }

  .experience-box {
    position: relative;
    right: 0;
    bottom: -40px;
    max-width: 665px;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    z-index: 2;
  }
  .experience-image img {
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      max-width:100% !important;
    }
}
@media (max-width: 992px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 900px) {
  .travel-info-grid {
    grid-template-columns: 1fr;
  }
    .flavors-layout {
    grid-template-columns: 1fr;
  }

  .flavors-content {
    text-align: center;
  }

  .flavors-grid {
    grid-template-columns: 1fr;
  }

  .flavors-intro,
  .flavors-outro {
    margin-left: auto;
    margin-right: auto;
  }
    .app-grid {
    grid-template-columns: 1fr;
  }
    .faq-tips-grid {
    grid-template-columns: 1fr;
  }

  .tips-column {
    position: relative;
    top: auto;
  }
}
/* Responsive: en móviles, columnas apiladas */
@media (max-width: 768px) {
  .cta-layout {
    flex-direction: column;
  }
    .how-to-buy-grid {
    grid-template-columns: 1fr;
  }
    .steps-cards li {
    padding: 18px;
  }
    .experience-columns {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
    .cards,.cards-two{
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
    .dest {
    background: #003857;
    padding: 5px 25px;
    color: #fff;
    text-align: center;
    display: block;
    }
      .card{
        scroll-snap-align: start;
      }
      .booking-column {
    padding: 1.5rem;
  }
  .why-etn{
      margin: 0 !important;
  }
  section.faq-tips{
      margin-top: 7rem;
  }
    .features {
    display: flex;             /* Alinea los elementos en fila */
    overflow-x: auto;          /* Permite el scroll horizontal */
    scroll-snap-type: x mandatory; /* Hace que se "pegue" al deslizar */
    gap: 16px;                 /* Espacio entre tarjetas */
    padding: 20px;
    scrollbar-width: none;     /* Oculta scrollbar en Firefox */
  }

  .features::-webkit-scrollbar {
    display: none;             /* Oculta scrollbar en Chrome/Safari */
  }

  .feature {
    flex: 0 0 100%;            /* Cada tarjeta ocupa el 85% del ancho */
    scroll-snap-align: center; /* Centra la tarjeta al deslizar */
    background: #f9f9f9;       /* Fondo ligero para resaltar */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
  }
  #hero-h1{
    margin-top:35px !important;
  }
  .redes-sociales .grid a{
    padding: 0;
  }
  .experience-wrapper {
    flex-direction: column;
  }

  .experience-image {
    order: -1; /* opcional: muestra la imagen primero o después */
    width: 100%;
    min-width: unset;
  }

  .experience-box.glass {
    width: 100%;
    padding: 1.5rem;
  }

  .booking-slide ul {
    padding-left: 0.5rem;
  }

  .booking-slide h3 {
    font-size: 1.2rem;
  }

  .booking-slide .step-number {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .how-to-buy {
    padding: 3rem 1rem;
  }

  .how-to-buy h2 {
    font-size: 1.6rem;
  }

  .how-to-buy h3 {
    font-size: 1.1rem;
  }
}
