/* =========================================================
   VIVE VIAJANDO SLP — styles.css
   Layout y componentes. Identidad "Moderno vibrante": tarjetas
   y fotos con esquinas redondeadas, acentos coral/amarillo/
   magenta y formas tipo pastilla en vez del boleto cortado.
   ========================================================= */

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,247,238,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  position: relative;
  display: inline-block;
  padding: 10px 6px;
  margin: 0 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--brand-gradient);
  transition: right .28s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.nav__links a.is-active { color: var(--brand-coral-dark); font-weight: 700; }
.nav__links a.is-active::after { right: 0; }

.nav__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Botón "Cotiza por WhatsApp" duplicado dentro del menú móvil: oculto en
   escritorio, solo se muestra dentro del panel deslizable en móvil. */
.nav__links a.nav__links-whatsapp { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  z-index: 600;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .3s ease, opacity .3s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (Inicio) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.04);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(32,24,48,.34) 0%, rgba(32,24,48,.1) 32%, rgba(32,24,48,.6) 100%);
}
.hero .container { position: relative; z-index: 1; padding-top: 40px; padding-bottom: 60px; }
.hero__eyebrow.chip { margin-bottom: 22px; }
.hero h1 { color: #fff; max-width: 780px; text-shadow: 0 2px 18px rgba(0,0,0,.4), 0 1px 4px rgba(0,0,0,.45); }
.hero p.lead { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 560px; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 58px;
  max-width: 880px;
}
.hero__stats .stamp { color: var(--ink); background: rgba(255,255,255,.92); backdrop-filter: blur(6px); box-shadow: var(--shadow-md); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  color: rgba(255,255,255,.75); font-family: var(--font-body); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue span:last-child {
  width: 1px; height: 34px; background: rgba(255,255,255,.6);
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue { 0%{ transform: scaleY(0); transform-origin: top;} 50%{ transform: scaleY(1); transform-origin: top;} 51%{ transform-origin: bottom;} 100%{ transform: scaleY(0); transform-origin: bottom;} }

/* ---------- Hero interior (páginas internas) ---------- */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(32,24,48,.35) 0%, rgba(32,24,48,.8) 100%),
    linear-gradient(100deg, rgba(255,209,102,.32), rgba(255,107,74,.28) 55%, rgba(224,69,122,.32));
}
.page-hero .container { position: relative; z-index: 1; padding-top: 70px; padding-bottom: 46px; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,.8); font-family: var(--font-body); font-weight: 600; font-size: .82rem; margin-bottom: 14px; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.page-hero .lead { color: rgba(255,255,255,.88); max-width: 640px; font-size: 1.05rem; margin-bottom: 0; }

/* ---------- Grids genéricos ---------- */
.grid {
  display: grid;
  gap: 30px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Divisor entre secciones ---------- */
.route-divider-wrap { padding: 10px 0; }

/* ---------- Tarjetas de servicio ---------- */
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__icon {
  width: 58px; height: 58px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-gradient-soft);
  color: var(--brand-coral-dark);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card ul { margin-top: 14px; }
.service-card ul li {
  position: relative; padding-left: 22px; margin-bottom: 8px;
  font-size: .92rem; color: var(--ink-soft);
}
.service-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-gradient);
}

/* ---------- Tarjetas de destino ---------- */
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,28,0) 35%, rgba(20,14,28,.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px 22px;
  color: #fff;
}
.dest-card__tag {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  background: var(--brand-gradient); color: #fff;
}
.dest-card h3 { color: #fff; margin-bottom: 6px; }
.dest-card p { color: rgba(255,255,255,.85); font-size: .92rem; margin-bottom: 14px; }
.dest-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: .88rem;
  color: #fff;
}
.dest-card__link svg { width: 16px; height: 16px; transition: transform .25s ease; }
.dest-card:hover .dest-card__link svg { transform: translateX(4px); }

.dest-card--wide { aspect-ratio: 16 / 10; }

/* Página de destinos: bloques alternos con detalle */
.dest-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.dest-feature:not(:last-child) { margin-bottom: 88px; }
.dest-feature--reverse { grid-template-columns: .95fr 1.05fr; }
.dest-feature--reverse .dest-feature__media { order: 2; }
.dest-feature__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.dest-feature__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.3; }
.dest-feature__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  background: rgba(224,69,122,.12); color: var(--brand-magenta);
  font-weight: 700; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .03em;
  margin-bottom: 16px;
}
.dest-feature__list { margin: 20px 0 26px; }
.dest-feature__list li {
  position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink-soft);
}
.dest-feature__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand-gradient); color: #fff;
  font-size: .68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Collage doble de imágenes dentro de dest-feature */
.dest-feature__collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
}
.dest-feature__collage img { height: 100%; object-fit: cover; box-shadow: var(--shadow-md); border-radius: var(--radius-lg); }
.dest-feature__collage .tall { aspect-ratio: 3/4; }

/* ---------- Franja de confianza / stats ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 50px 0;
}
.trust-strip .stamp { color: var(--ink); }

/* ---------- Testimonios ---------- */
.testi-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  padding-top: 6px;
  margin: 0 -4px;
}
.testi-track::-webkit-scrollbar { height: 6px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.testi-card {
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 6px; right: 20px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--brand-magenta);
  opacity: .18;
  line-height: 1;
}
.testi-card__stars { color: var(--brand-yellow); letter-spacing: 2px; margin-bottom: 14px; font-size: 1rem; }
.testi-card p.quote { color: var(--ink); font-size: 1rem; margin-bottom: 20px; font-family: var(--font-display); font-weight: 500; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  color: #fff; background: var(--brand-gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.testi-card__author strong { display: block; font-family: var(--font-display); font-size: .94rem; }
.testi-card__author span { font-size: .8rem; color: var(--ink-faint); }

.testi-controls { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.testi-controls button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.testi-controls button:hover { background: var(--brand-coral); color: #fff; border-color: var(--brand-coral); }
.testi-controls svg { width: 18px; height: 18px; }

/* ---------- Equipo / Nosotros ---------- */
.founder {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.founder__media { position: relative; max-width: 380px; margin: 0 auto; }
.founder__media .polaroid { width: 100%; }
.founder__media .polaroid img { aspect-ratio: 4/4.8; object-fit: cover; }
.founder__media .stamp {
  position: absolute; bottom: -20px; right: -28px;
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.founder__quote {
  margin-top: 24px;
  padding: 22px 24px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--brand-coral);
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px; }
.team-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 14px 14px 4px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__media { aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius-md); }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card__media.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-gradient-soft);
  font-family: var(--font-display); font-weight: 700; font-size: 2.2rem;
  color: var(--brand-coral-dark);
}
.team-card__body { padding: 18px 12px 24px; }

/* Tarjeta sin foto: solo información, con un acento de color arriba en vez
   del hueco de imagen. */
.team-card--text-only {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  position: relative;
  overflow: hidden;
}
.team-card--text-only::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--brand-gradient);
}
.team-card--text-only .team-card__body { padding: 10px 16px; }
.team-card__role {
  display: inline-block; margin-top: 6px;
  font-family: var(--font-body);
  font-size: .78rem; color: var(--brand-magenta); font-weight: 700;
}

/* ---------- Valores ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  padding: 30px 22px;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  text-align: center;
  height: 100%;
  border: 1px solid var(--paper-line);
}
.value-card__icon {
  width: 54px; height: 54px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-yellow);
  font-family: var(--font-display);
}
.value-card__icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.05rem; }
.value-card p { font-size: .9rem; margin-bottom: 0; }

/* ---------- Award / premio ---------- */
.award-banner {
  display: grid; grid-template-columns: .55fr 1fr;
  gap: 40px; align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 46px;
  position: relative;
  overflow: hidden;
}
.award-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--brand-gradient);
  opacity: .22;
}
.award-banner__media, .award-banner__body { position: relative; z-index: 1; }
.award-banner__media .polaroid { max-width: 260px; margin: 0 auto; }
.award-banner h2 { color: #fff; }
.award-banner p { color: rgba(255,255,255,.82); }

/* ---------- CTA bloque final ---------- */
.cta-block {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 70px 50px;
  text-align: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--brand-gradient);
  background-size: 160% 160%;
}
.cta-block h2 { color: #fff; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-block p { color: rgba(255,255,255,.92); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-block__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Promos (servicios/destinos) ---------- */
.promo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.promo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm);
}
.promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.promo-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,14,28,.05) 30%, rgba(20,14,28,.9) 100%);
}
.promo-card__body { padding: 28px; color: #fff; }
.promo-card__body h3 { color: #fff; margin-bottom: 8px; }
.promo-card__body p { color: rgba(255,255,255,.85); font-size: .92rem; margin-bottom: 16px; }

/* ---------- Formularios / contacto ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--brand-gradient-soft); color: var(--brand-coral-dark);
  display: flex; align-items: center; justify-content: center;
}
.info-row__icon svg { width: 22px; height: 22px; }
.info-row h3 { font-size: 1rem; margin-bottom: 4px; }
.info-row p { margin-bottom: 0; font-size: .93rem; }
.info-row a:hover { color: var(--brand-coral-dark); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

.whatsapp-panel {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 40px 34px;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.whatsapp-panel::before { content:""; position:absolute; inset:0; z-index:-1; background: var(--brand-gradient); opacity:.22; }
.whatsapp-panel h3 { color: #fff; font-size: 1.4rem; }
.whatsapp-panel p { color: rgba(255,255,255,.85); }
.whatsapp-panel__hours { display: flex; flex-direction: column; gap: 6px; margin: 18px 0 26px; font-size: .92rem; color: rgba(255,255,255,.85); }
.whatsapp-panel__hours strong { color: #fff; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .field--full { grid-column: 1 / -1; }
.field label {
  display: block; font-family: var(--font-body); font-weight: 700;
  font-size: .82rem; margin-bottom: 8px; color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: var(--paper);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-coral); background: var(--card);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: 14px; }

/* ---------- Botón flotante WhatsApp ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  animation: wafloat 2.6s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { background: var(--whatsapp-dark); }
@keyframes wafloat { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} }

.back-top {
  position: fixed; right: 24px; bottom: 96px; z-index: 899;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-top svg { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand img { height: 46px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.62); font-size: .92rem; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--brand-gradient); }
.footer-social svg { width: 17px; height: 17px; color: #fff; }

.site-footer h4 { color: #fff; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .92rem; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: .9rem; color: rgba(255,255,255,.72); }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--brand-yellow); }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-family: var(--font-body); font-size: .82rem; color: rgba(255,255,255,.55); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 920px) {
  /* En móvil el botón de WhatsApp de la barra sale del header: ya no compite
     por espacio con el botón de menú y se muestra en su lugar dentro del
     panel deslizable (.nav__links-whatsapp, debajo de Contacto). */
  .nav__links, .nav__cta .btn--whatsapp, .nav__cta .btn--outline { display: none; }
  .nav__toggle { display: flex; }

  .nav__links {
    display: flex;
    position: fixed; inset: 0 0 0 auto;
    width: min(320px, 84vw); height: 100vh;
    background: var(--paper); flex-direction: column; align-items: stretch;
    padding: 100px 26px 26px;
    box-shadow: -20px 0 50px rgba(0,0,0,.15);
    transform: translateX(100%);
    transition: transform .35s ease;
    gap: 4px;
    z-index: 550;
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { padding: 14px 16px; margin: 0; font-size: 1.1rem; }
  .nav__links a::after { display: none; }
  .nav__links a.nav__links-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 18px 0 0;
    padding: 15px 16px;
    border-radius: var(--radius-pill);
    background: var(--brand-coral);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 14px 30px -8px rgba(255, 107, 74, .55);
  }
  .nav__links a.nav__links-whatsapp:hover { background: var(--brand-coral-dark); color: #fff; }

  .dest-feature, .dest-feature--reverse { grid-template-columns: 1fr; }
  .dest-feature--reverse .dest-feature__media { order: 0; }
  .founder { grid-template-columns: 1fr; }
  .founder__media { max-width: 320px; margin: 0 auto; }
  .award-banner { grid-template-columns: 1fr; text-align: center; padding: 36px 26px; }
  .contact-layout { grid-template-columns: 1fr; }
  .promo-strip { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topbar__info span:nth-child(3) { display: none; }
  .trust-strip { justify-content: center; }
  .grid--4, .grid--3, .grid--2, .values-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .dest-feature__collage { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 100vh; }
  .hero__media { background-position: 72% center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn { padding: 13px 22px; font-size: .9rem; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .back-top { right: 16px; bottom: 82px; }
}

/* Equipo (Nosotros) en escritorio/tablet: el fundador centrado en su propio
   renglón, un poco más grande por ser la tarjeta con foto, y las dos
   asesoras centradas juntas debajo, en la misma fila y del mismo tamaño.
   En móvil (<=720px) se mantiene la pila de una sola columna de siempre. */
@media (min-width: 721px) {
  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 280px));
    justify-content: center;
    align-items: start;
    gap: 46px 34px;
  }
  .team-grid .team-card:first-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 320px;
  }
  .team-card--text-only {
    min-height: 190px;
  }
  .team-card--text-only h3 { font-size: 1.2rem; }
}
