/* =============================================================
   InfoCusco Travel · CSS principal
   Paleta: azul marino #0e2547 + naranja #f39200
   Tipografía: system stack (zero external font loading)
============================================================== */

:root {
  /* Paleta principal (baseada no logo) */
  --c-navy: #0e2547;
  --c-navy-dark: #0a1d3a;
  --c-navy-light: #1a3a6e;
  --c-orange: #f39200;
  --c-orange-dark: #d97800;
  --c-orange-light: #fbb84d;
  --c-orange-soft: #fef3e0;

  /* Neutros */
  --c-ink: #1a1f2c;
  --c-text: #2c3344;
  --c-muted: #5f6675;
  --c-soft: #8a92a3;
  --c-line: #e8ebf0;
  --c-bg: #ffffff;
  --c-bg-soft: #f7f8fb;
  --c-bg-section: #fafbfc;

  /* Acentos funcionales */
  --c-wa: #25d366;
  --c-wa-dark: #1da851;
  --c-success: #2ecc71;
  --c-warning: #f39c12;

  /* Layout */
  --w-content: 1240px;
  --w-narrow: 880px;
  --w-wide: 1440px;

  /* Tipografía sistema */
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --ff-serif: ui-serif, Georgia, Cambria, 'Times New Roman', serif;

  /* Tiempos */
  --t-fast: 180ms;
  --t-base: 280ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Sombras (sutiles, no abusar) */
  --sh-sm: 0 1px 3px rgba(14, 37, 71, 0.08);
  --sh-md: 0 4px 12px rgba(14, 37, 71, 0.10);
  --sh-lg: 0 12px 32px rgba(14, 37, 71, 0.14);
  --sh-xl: 0 24px 56px rgba(14, 37, 71, 0.18);
}

/* Reset minimalista */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--c-navy); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--c-orange); }
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-sans); font-weight: 700; color: var(--c-ink); margin: 0 0 .5em; line-height: 1.2; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.5rem; }

/* Contenedores */
.container { width: 100%; max-width: var(--w-content); margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: var(--w-narrow); }
.container--wide { max-width: var(--w-wide); }

/* Utilidades */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-orange);
}
.lead { font-size: 1.12rem; color: var(--c-muted); max-width: 60ch; line-height: 1.65; }
.text-center { text-align: center; }

/* ===========================================================
   BOTONES
=========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--c-orange); color: #fff; }
.btn--primary:hover { background: var(--c-orange-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn--navy { background: var(--c-navy); color: #fff; }
.btn--navy:hover { background: var(--c-navy-dark); color: #fff; }
.btn--wa { background: var(--c-wa); color: #fff; }
.btn--wa:hover { background: var(--c-wa-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn--ghost { background: transparent; color: var(--c-navy); border: 1.5px solid var(--c-navy); }
.btn--ghost:hover { background: var(--c-navy); color: #fff; }
.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn--ghost-light:hover { background: #fff; color: var(--c-navy); border-color: #fff; }
.btn--lg { padding: 1.05rem 1.85rem; font-size: 1rem; }
.btn--xl { padding: 1.2rem 2.2rem; font-size: 1.05rem; border-radius: 10px; }
.btn--block { width: 100%; }
.btn--round { border-radius: 30px; }

/* ===========================================================
   TOPBAR (sobre el header)
=========================================================== */
.topbar {
  background: var(--c-navy-dark);
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
}
.topbar__inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: .5rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255, 255, 255, .85); }
.topbar a:hover { color: var(--c-orange-light); }
.topbar__left, .topbar__right { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.topbar__sep { opacity: .4; }
@media (max-width: 760px) {
  .topbar { font-size: .75rem; }
  .topbar__inner { justify-content: center; }
  .topbar__right { display: none; }
}

/* ===========================================================
   HEADER PRINCIPAL
=========================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--t-base) var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--sh-sm); }
.nav {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: .8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.brand__logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -.02em;
}
.brand__tag {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-orange);
  font-weight: 700;
  margin-top: .25rem;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__menu > li { position: relative; }
.nav__menu a {
  color: var(--c-ink);
  font-size: .92rem;
  font-weight: 600;
  padding: .5rem 0;
  position: relative;
  display: inline-block;
}
.nav__menu a:hover { color: var(--c-orange); }
.nav__menu a.active { color: var(--c-orange); }
.nav__menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.2rem;
  height: 2px;
  background: var(--c-orange);
  border-radius: 2px;
}
.nav__menu .has-sub > a::after { content: " ▾"; font-size: .7rem; opacity: .5; }
.nav__sub {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  box-shadow: var(--sh-lg);
  padding: .6rem 0;
  min-width: 250px;
  list-style: none;
  margin: .5rem 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-base) var(--ease);
  z-index: 50;
}
.has-sub:hover .nav__sub,
.has-sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__sub a {
  display: block;
  padding: .55rem 1.2rem;
  font-size: .88rem;
  color: var(--c-text);
  font-weight: 500;
}
.nav__sub a::after { display: none !important; }
.nav__sub a:hover { background: var(--c-bg-soft); color: var(--c-orange); }
.nav__sub-head {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-orange);
  padding: .3rem 1.2rem .5rem;
  font-weight: 700;
}

.nav__ctas { display: flex; align-items: center; gap: .6rem; }
.nav__cta-wa {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--c-wa);
  color: #fff;
  padding: .55rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 6px;
  transition: all var(--t-fast) var(--ease);
}
.nav__cta-wa:hover { background: var(--c-wa-dark); color: #fff; transform: translateY(-1px); }
.nav__cta {
  background: var(--c-orange);
  color: #fff;
  padding: .55rem 1.1rem;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 6px;
  transition: all var(--t-fast) var(--ease);
}
.nav__cta:hover { background: var(--c-orange-dark); color: #fff; transform: translateY(-1px); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  color: var(--c-navy);
}
.nav__toggle svg { width: 28px; height: 28px; }

@media (max-width: 1080px) {
  .nav__menu > li:not(.no-collapse) { display: none; }
  .nav__cta-wa { padding: .5rem .8rem; font-size: .8rem; }
}
@media (max-width: 820px) {
  .nav { padding: .7rem 1rem; }
  .brand__logo { width: 44px; height: 44px; }
  .brand__name { font-size: 1.1rem; }
  .brand__tag { font-size: .58rem; }
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .nav__cta { display: none; }
  .nav__cta-wa { padding: .5rem .8rem; }
  .nav__cta-wa span { display: none; }
  .nav__menu.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    border-top: 1px solid var(--c-line);
    box-shadow: var(--sh-md);
    align-items: stretch;
  }
  .nav__menu.is-open > li { display: block; border-bottom: 1px solid var(--c-line); }
  .nav__menu.is-open > li:last-child { border-bottom: none; }
  .nav__menu.is-open a { padding: .8rem 0; }
  .nav__menu.is-open .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0 0 .5rem 1rem;
    background: transparent;
  }
}

/* ===========================================================
   HERO HOME (imagen grande)
=========================================================== */
.home-hero {
  position: relative;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-navy-dark);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(10, 29, 58, 0.85) 0%,
    rgba(14, 37, 71, 0.65) 50%,
    rgba(14, 37, 71, 0.4) 100%);
  pointer-events: none;
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.home-hero__content { max-width: 600px; }
.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(243, 146, 0, .18);
  color: var(--c-orange-light);
  padding: .4rem 1rem;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid rgba(243, 146, 0, .4);
  margin-bottom: 1.4rem;
}
.home-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 1.2rem;
  letter-spacing: -0.02em;
}
.home-hero h1 span { color: var(--c-orange); }
.home-hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.55;
  margin-bottom: 1.8rem;
  max-width: 50ch;
}
.home-hero__ctas { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.home-hero__stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
  flex-wrap: wrap;
}
.home-hero__stat { display: flex; flex-direction: column; }
.home-hero__stat-num {
  font-size: 1.8rem;
  color: var(--c-orange);
  font-weight: 800;
  line-height: 1;
}
.home-hero__stat-lbl {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-top: .35rem;
  font-weight: 600;
}

/* Hero quote form (caja flotante en hero) */
.hero-form {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: var(--sh-xl);
  color: var(--c-text);
}
.hero-form__head { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.hero-form__icon {
  width: 38px;
  height: 38px;
  background: var(--c-orange-soft);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--c-orange);
  font-size: 1.2rem;
}
.hero-form__title { font-size: 1.05rem; font-weight: 700; color: var(--c-ink); }
.hero-form__sub { font-size: .8rem; color: var(--c-muted); margin: 0; }
.hero-form__fields { display: grid; gap: .55rem; margin-bottom: 1rem; }
.hero-form__field {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .85rem;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: 7px;
  font-size: .88rem;
  color: var(--c-text);
}
.hero-form__field svg { width: 16px; height: 16px; color: var(--c-muted); flex-shrink: 0; }
.hero-form__field input, .hero-form__field select {
  border: none;
  background: transparent;
  flex: 1;
  font-family: inherit;
  font-size: .88rem;
  color: var(--c-text);
  outline: none;
  min-width: 0;
}
.hero-form__note {
  font-size: .73rem;
  color: var(--c-muted);
  margin-top: .8rem;
  text-align: center;
}

@media (max-width: 920px) {
  .home-hero { min-height: auto; }
  .home-hero__inner { grid-template-columns: 1fr; padding: 4rem 0 3rem; }
  .hero-form { max-width: 100%; }
}
@media (max-width: 600px) {
  .home-hero__inner { padding: 3rem 0 2.5rem; }
  .home-hero__stats { gap: 1.2rem; }
  .home-hero__stat-num { font-size: 1.5rem; }
  .home-hero__ctas { gap: .5rem; }
  .btn--xl { padding: 1rem 1.3rem; font-size: .95rem; }
}

/* ===========================================================
   TRUST BAR (debajo del hero)
=========================================================== */
.trust-bar {
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-line);
  padding: 1.2rem 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: .88rem;
  color: var(--c-text);
}
.trust-item { display: flex; align-items: center; gap: .5rem; font-weight: 600; }
.trust-item svg { width: 20px; height: 20px; color: var(--c-orange); flex-shrink: 0; }
@media (max-width: 760px) {
  .trust-bar__inner { gap: 1.2rem; font-size: .82rem; }
}

/* ===========================================================
   SECCIONES generales
=========================================================== */
.section {
  padding: 4.5rem 0;
}
.section--bg-soft { background: var(--c-bg-soft); }
.section--bg-navy { background: var(--c-navy); color: #fff; }
.section--bg-navy h2, .section--bg-navy h3 { color: #fff; }
.section-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: .5rem 0 .8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head p { color: var(--c-muted); font-size: 1.05rem; }
.section--bg-navy .section-head p { color: rgba(255,255,255,.8); }

/* ===========================================================
   TARJETAS DE PAQUETE
=========================================================== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}
.pkg-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all var(--t-base) var(--ease);
  position: relative;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-orange);
  color: inherit;
}
.pkg-card--featured {
  border-color: var(--c-orange);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(243, 146, 0, .08);
}
.pkg-card__img {
  aspect-ratio: 16 / 10;
  background: var(--c-navy-light) center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.pkg-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-orange);
  color: #fff;
  padding: .35rem .8rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  box-shadow: var(--sh-sm);
}
.pkg-card__duration {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,.95);
  color: var(--c-navy);
  padding: .35rem .8rem;
  font-size: .8rem;
  font-weight: 700;
  border-radius: 4px;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.pkg-card__body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-card__cat {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-orange);
  font-weight: 700;
  margin-bottom: .4rem;
}
.pkg-card h3 {
  font-size: 1.25rem;
  margin: 0 0 .35rem;
  color: var(--c-navy);
  font-weight: 700;
}
.pkg-card__route {
  font-size: .82rem;
  color: var(--c-muted);
  margin-bottom: .9rem;
  line-height: 1.4;
}
.pkg-card__desc {
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex: 1;
}
.pkg-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1rem;
  border-top: 1px dashed var(--c-line);
  margin-top: auto;
}
.pkg-card__price small {
  display: block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
}
.pkg-card__price-amount {
  font-size: 1.55rem;
  color: var(--c-orange);
  font-weight: 800;
  line-height: 1;
  margin-top: .15rem;
}
.pkg-card__cta {
  font-size: .78rem;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: .04em;
  padding: .45rem .8rem;
  border-radius: 5px;
  background: var(--c-bg-soft);
  transition: all var(--t-fast) var(--ease);
}
.pkg-card:hover .pkg-card__cta {
  background: var(--c-orange);
  color: #fff;
}

/* ===========================================================
   WHY US — 6 razones (sección navy)
=========================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 1.8rem 1.5rem;
  border-radius: 12px;
  transition: all var(--t-base) var(--ease);
}
.why-item:hover {
  background: rgba(243, 146, 0, .08);
  border-color: var(--c-orange);
  transform: translateY(-2px);
}
.why-item__icon {
  width: 48px;
  height: 48px;
  background: var(--c-orange);
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.why-item__icon svg { width: 24px; height: 24px; }
.why-item h3 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 .5rem;
  font-weight: 700;
}
.why-item p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .78);
  margin: 0;
  line-height: 1.55;
}

/* ===========================================================
   PREMIOS
=========================================================== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.award {
  text-align: center;
}
.award__img {
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--c-bg-soft) center / cover no-repeat;
  border: 2px solid var(--c-line);
  overflow: hidden;
}
.award h3 {
  font-size: 1.1rem;
  color: var(--c-navy);
  margin: .5rem 0;
  font-weight: 700;
}
.award p { font-size: .92rem; color: var(--c-muted); line-height: 1.55; }

/* ===========================================================
   TESTIMONIOS / YOUTUBE banner
=========================================================== */
.youtube-banner {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.youtube-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(243,146,0,.15) 0%, transparent 70%);
  pointer-events: none;
}
.youtube-banner h3 {
  color: #fff;
  font-size: 1.7rem;
  margin: 0 0 .8rem;
  font-weight: 800;
}
.youtube-banner p { color: rgba(255,255,255,.88); margin: 0 0 1.4rem; font-size: 1.02rem; line-height: 1.55; max-width: 540px; }
.youtube-banner__count {
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  background: var(--c-orange);
  color: #fff;
  padding: .35rem .9rem;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: .04em;
}
.youtube-banner__btn {
  background: #ff0000;
  color: #fff;
  padding: 1.1rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
}
.youtube-banner__btn:hover { background: #cc0000; color: #fff; transform: translateY(-2px); box-shadow: var(--sh-lg); }
.youtube-banner__btn svg { width: 24px; height: 24px; fill: #fff; }
@media (max-width: 720px) {
  .youtube-banner { grid-template-columns: 1fr; padding: 2.2rem 1.8rem; text-align: center; }
  .youtube-banner__btn { justify-self: center; }
}

/* ===========================================================
   PAGE HEROS (subpáginas: paquetes, nosotros, contacto)
=========================================================== */
.page-hero {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-navy-dark);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(10, 29, 58, 0.82) 0%,
    rgba(14, 37, 71, 0.65) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 0 3rem;
  width: 100%;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: .6rem 0 .8rem;
  font-weight: 800;
  letter-spacing: -.02em;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}
.page-hero__sub { color: rgba(255,255,255,.88); max-width: 60ch; margin: 0 auto; font-size: 1.05rem; line-height: 1.5; }
.page-hero .eyebrow { color: var(--c-orange-light); }

/* ===========================================================
   PAQUETE DETALLE - hero más alto con imagen
=========================================================== */
.pkg-hero {
  position: relative;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-navy-dark);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.pkg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(14, 37, 71, 0.35) 0%,
    rgba(14, 37, 71, 0.45) 50%,
    rgba(10, 29, 58, 0.92) 100%);
}
.pkg-hero__inner {
  position: relative;
  z-index: 2;
  padding: 4rem 0 3rem;
  width: 100%;
}
.pkg-hero__cat {
  display: inline-block;
  background: var(--c-orange);
  color: #fff;
  padding: .4rem 1rem;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pkg-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 .6rem;
  letter-spacing: -.02em;
}
.pkg-hero__sub { color: rgba(255,255,255,.92); font-size: 1.1rem; margin-bottom: 1.6rem; max-width: 60ch; }
.pkg-hero__bar {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  margin-bottom: 1.6rem;
}
.pkg-hero__meta { display: flex; flex-direction: column; gap: .25rem; }
.pkg-hero__meta-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; }
.pkg-hero__meta-value { font-size: 1rem; color: #fff; font-weight: 600; }
.pkg-hero__meta-value strong { color: var(--c-orange); font-weight: 800; font-size: 1.15rem; }
.pkg-hero__ctas { display: flex; gap: .7rem; flex-wrap: wrap; }

/* ===========================================================
   PAQUETE DETALLE - cuerpo (intro, itinerario, incluye)
=========================================================== */
.pkg-body {
  padding: 4rem 0;
  background: var(--c-bg-section);
}
.pkg-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 980px) { .pkg-layout { grid-template-columns: 1fr; } }

.pkg-main { background: #fff; padding: 2.5rem; border-radius: 14px; border: 1px solid var(--c-line); }
@media (max-width: 760px) {
  .pkg-main { padding: 1.5rem 1.1rem; border-radius: 10px; }
  .pkg-body { padding: 2rem 0; }
  .day-item__body h3 { font-size: 1.05rem; }
  .day-item__body p { font-size: .92rem; }
}
@media (max-width: 480px) {
  .pkg-main { padding: 1.2rem .9rem; }
  .container { padding: 0 .8rem; }
}
.pkg-main h2 {
  font-size: 1.6rem;
  color: var(--c-navy);
  margin: 2rem 0 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.pkg-main h2:first-child { margin-top: 0; }
.pkg-main h2 + p:first-of-type::first-letter {
  font-size: 2.5em;
  float: left;
  margin-right: .15em;
  font-weight: 700;
  color: var(--c-orange);
  line-height: 1;
}
@media (max-width: 600px) {
  .pkg-main h2 + p:first-of-type::first-letter {
    font-size: 1em;
    float: none;
    margin-right: 0;
    color: inherit;
  }
}

/* Itinerario */
.day-list { margin: 1.5rem 0 2rem; }
.day-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.day-item:last-child { border-bottom: none; }
.day-item__num {
  background: var(--c-navy);
  color: var(--c-orange);
  width: 64px;
  height: 64px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.day-item__num span:first-child { font-size: .55rem; opacity: .7; letter-spacing: .15em; }
.day-item__num span:last-child { font-size: 1.5rem; }

/* MOBILE: bloque DIA ancho horizontal arriba, texto a ancho completo abajo */
@media (max-width: 600px) {
  .day-item {
    grid-template-columns: 1fr;
    gap: .9rem;
    padding: 1.2rem 0;
  }
  .day-item__num {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: center;
    gap: .5rem;
    padding: .65rem 1rem;
    border-radius: 8px;
  }
  .day-item__num span:first-child { font-size: .85rem; opacity: .85; letter-spacing: .18em; }
  .day-item__num span:last-child { font-size: 1.1rem; }
}
.day-item__body h3 { font-size: 1.2rem; color: var(--c-navy); margin: 0 0 .5rem; font-weight: 700; }
.day-item__body p { font-size: .95rem; line-height: 1.65; color: var(--c-text); margin-bottom: .8rem; }
.day-item__bullets {
  list-style: none;
  padding: 0;
  margin: .7rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.day-item__bullets li {
  background: var(--c-orange-soft);
  color: var(--c-orange-dark);
  font-size: .76rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 4px;
}

/* Incluye / No incluye */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (max-width: 680px) { .incl-grid { grid-template-columns: 1fr; } }
.incl-box { background: var(--c-bg-soft); padding: 1.5rem; border-radius: 10px; border: 1px solid var(--c-line); }
.incl-box h3 {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.incl-box ul { list-style: none; padding: 0; margin: 0; }
.incl-box li {
  padding: .45rem 0 .45rem 1.8rem;
  font-size: .92rem;
  position: relative;
  line-height: 1.5;
}
.incl-box--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .45rem;
  color: #fff;
  background: var(--c-success);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: .7rem;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.incl-box--no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: .45rem;
  color: #fff;
  background: var(--c-muted);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: .65rem;
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* ===========================================================
   BANNER PERSONALIZACIÓN (visible y llamativo)
=========================================================== */
.custom-banner {
  background: linear-gradient(135deg, var(--c-orange) 0%, var(--c-orange-dark) 100%);
  color: #fff;
  padding: 2.2rem 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--sh-lg);
}
.custom-banner__icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.custom-banner__icon svg { width: 30px; height: 30px; color: #fff; }
.custom-banner__text { color: #fff; }
.custom-banner h3 { color: #fff; font-size: 1.4rem; margin: 0 0 .3rem; font-weight: 800; }
.custom-banner p { color: rgba(255,255,255,.95); margin: 0; font-size: 1rem; line-height: 1.45; }
.custom-banner__actions { display: flex; gap: .7rem; flex-shrink: 0; flex-wrap: wrap; }
.custom-banner .btn--wa, .custom-banner .btn--white {
  white-space: nowrap;
}
.btn--white { background: #fff; color: var(--c-navy); }
.btn--white:hover { background: var(--c-navy); color: #fff; transform: translateY(-1px); box-shadow: var(--sh-md); }
@media (max-width: 760px) {
  .custom-banner { grid-template-columns: 1fr; text-align: center; padding: 1.8rem 1.4rem; }
  .custom-banner__icon { margin: 0 auto; }
  .custom-banner__actions { justify-content: center; }
}

/* ===========================================================
   PRICE BOX (sidebar de paquete)
=========================================================== */
.price-box {
  background: #fff;
  border: 2px solid var(--c-orange);
  border-radius: 14px;
  padding: 2rem;
  position: sticky;
  top: 90px;
  box-shadow: var(--sh-lg);
}
@media (max-width: 980px) { .price-box { position: static; } }
.price-box__head { text-align: center; padding-bottom: 1.2rem; border-bottom: 1px dashed var(--c-line); margin-bottom: 1.2rem; }
.price-box__from { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--c-muted); font-weight: 700; }
.price-box__amount { font-size: 2.6rem; color: var(--c-orange); font-weight: 800; line-height: 1; margin: .3rem 0 .2rem; }
.price-box__per { font-size: .8rem; color: var(--c-muted); }
.price-box__perks { list-style: none; padding: 0; margin: 1.3rem 0 0; }
.price-box__perks li {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem 0;
  font-size: .87rem;
  color: var(--c-text);
}
.price-box__perks li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  background: var(--c-success);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.price-box .btn { margin-top: .8rem; }
.price-box__guarantee {
  margin-top: 1rem;
  padding: .8rem;
  background: var(--c-orange-soft);
  border-radius: 8px;
  font-size: .8rem;
  color: var(--c-orange-dark);
  text-align: center;
  font-weight: 600;
}

/* ===========================================================
   FORMULARIOS
=========================================================== */
.form-section {
  padding: 4rem 0;
  background: var(--c-bg-section);
}
.form-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 14px;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-md);
}
.form-card h2 { font-size: 1.6rem; color: var(--c-navy); margin: 0 0 .5rem; font-weight: 700; }
.form-card__intro { color: var(--c-muted); margin-bottom: 1.8rem; font-size: 1rem; line-height: 1.5; }
.form-context {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.2rem;
  background: var(--c-orange-soft);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: .9rem;
  color: var(--c-orange-dark);
  font-weight: 600;
  border: 1px solid var(--c-orange-light);
}
.form-context svg { width: 24px; height: 24px; color: var(--c-orange); flex-shrink: 0; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid--full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label, .form-field > .form-label {
  font-size: .82rem;
  color: var(--c-text);
  font-weight: 600;
  letter-spacing: .01em;
}
.form-field label .req { color: var(--c-orange); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: .95rem;
  padding: .8rem 1rem;
  background: var(--c-bg-soft);
  border: 1.5px solid var(--c-line);
  border-radius: 7px;
  color: var(--c-text);
  transition: all var(--t-fast) var(--ease);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(243,146,0,.15);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-check {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--c-text);
  margin: 1.2rem 0;
  line-height: 1.5;
}
.form-check input[type="checkbox"] {
  margin-top: .2rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--c-orange);
}
.form-check a { color: var(--c-orange); border-bottom: 1px solid var(--c-orange); }

.form-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-top: 1.2rem; }
.form-note { font-size: .78rem; color: var(--c-muted); margin-top: .8rem; line-height: 1.5; }

/* ===========================================================
   BREADCRUMB
=========================================================== */
.breadcrumb {
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-line);
  padding: .85rem 0;
  font-size: .82rem;
  color: var(--c-muted);
}
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-orange); }
.breadcrumb__sep { margin: 0 .5rem; opacity: .5; }
.breadcrumb__current { color: var(--c-ink); font-weight: 600; }

/* ===========================================================
   FOOTER
=========================================================== */
.site-footer {
  background: var(--c-navy);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 1.2rem;
  position: relative;
  padding-bottom: .7rem;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--c-orange);
  border-radius: 2px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .6rem; font-size: .9rem; }
.footer-col a { color: rgba(255,255,255,.78); transition: color var(--t-fast) var(--ease); }
.footer-col a:hover { color: var(--c-orange); }

.footer__brand-block { }
.footer__brand-row { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer__brand-row .brand__logo { background: #fff; padding: 4px; width: 56px; height: 56px; }
.footer__brand-row .brand__name { color: #fff; }
.footer__about-text { font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.7); }
.footer__social { display: flex; gap: .9rem; margin-top: 1.2rem; }
.footer__social a {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all var(--t-fast) var(--ease);
}
.footer__social a:hover { background: var(--c-orange); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(243, 146, 0, .35); }
.footer__social svg { width: 22px; height: 22px; fill: rgba(255,255,255,.92); }
.footer__social a:hover svg { fill: #fff; }

.footer-contact-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .87rem;
  line-height: 1.5;
}
.footer-contact-list svg { width: 16px; height: 16px; color: var(--c-orange); flex-shrink: 0; margin-top: .15rem; }

/* Footer mid: awards strip */
.footer-awards {
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
}
.footer-awards__title {
  text-align: center;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-awards__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2rem;
  align-items: center;
}
.footer-award {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  padding: .4rem 1rem;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px dashed rgba(255,255,255,.15);
}

/* Footer extra links (Choquequirao, Sal de Maras) */
.footer-extra-links {
  background: rgba(0,0,0,.2);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-extra-links__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: .85rem;
}
.footer-extra-links span { color: rgba(255,255,255,.55); }
.footer-extra-links a {
  color: var(--c-orange-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.footer-extra-links a:hover { color: #fff; }
.footer-extra-links svg { width: 14px; height: 14px; }

.footer-legal {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.footer-legal p { margin: .3rem 0; }
.footer-legal strong { color: #fff; font-weight: 700; }

/* ===========================================================
   FLOATING WHATSAPP BUTTON
=========================================================== */
.float-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 62px;
  height: 62px;
  background: var(--c-wa);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  z-index: 90;
  transition: all var(--t-base) var(--ease);
  animation: float-pulse 2.2s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); background: var(--c-wa-dark); color: #fff; }
.float-wa svg { width: 32px; height: 32px; fill: #fff; }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}
@media (max-width: 540px) {
  .float-wa { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .float-wa svg { width: 28px; height: 28px; }
}

/* ===========================================================
   GRACIAS / SUCCESS PAGE
=========================================================== */
.gracias-hero {
  background: linear-gradient(135deg, var(--c-success) 0%, #27ae60 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gracias-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 .5rem; font-weight: 800; }
.gracias-hero p { color: rgba(255,255,255,.95); font-size: 1.15rem; max-width: 600px; margin: 0 auto; line-height: 1.5; }
.gracias-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: gracias-pop .6s var(--ease) backwards;
}
.gracias-icon svg { width: 50px; height: 50px; color: #fff; }
@keyframes gracias-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.gracias-actions {
  padding: 4rem 0;
  background: var(--c-bg-section);
}
.gracias-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-md);
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 720px) {
  .gracias-card { grid-template-columns: 1fr; text-align: center; }
  .gracias-card__action { justify-self: center; }
}
.gracias-card__icon {
  width: 60px;
  height: 60px;
  background: var(--c-orange-soft);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--c-orange);
  flex-shrink: 0;
}
.gracias-card__icon svg { width: 30px; height: 30px; }
.gracias-card--wa .gracias-card__icon { background: rgba(37,211,102,.15); color: var(--c-wa); }
.gracias-card h3 { font-size: 1.2rem; margin: 0 0 .3rem; color: var(--c-navy); font-weight: 700; }
.gracias-card p { margin: 0; color: var(--c-muted); font-size: .95rem; line-height: 1.5; }
.gracias-card code {
  background: var(--c-bg-soft);
  padding: .15rem .5rem;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: .92em;
  color: var(--c-navy);
  font-weight: 600;
}

/* ===========================================================
   NOSOTROS / ABOUT
=========================================================== */
.about-content { padding: 4rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid h2 { color: var(--c-navy); font-size: 1.6rem; margin: 2rem 0 1rem; font-weight: 700; }
.about-grid h2:first-child { margin-top: 0; }
.about-grid p { font-size: 1.02rem; line-height: 1.7; color: var(--c-text); margin-bottom: 1.2rem; }

.about-stats { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 90px; }
@media (max-width: 880px) { .about-stats { position: static; flex-direction: row; flex-wrap: wrap; } }
.stat-card {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.stat-card__num { font-size: 2.4rem; color: var(--c-orange); font-weight: 800; line-height: 1; }
.stat-card__lbl { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-top: .4rem; font-weight: 600; }

.values { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .8rem; }
.values li {
  background: var(--c-bg-soft);
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  border-left: 4px solid var(--c-orange);
  font-size: .95rem;
  line-height: 1.5;
}
.values strong { display: block; color: var(--c-navy); font-size: 1.05rem; margin-bottom: .3rem; font-weight: 700; }

/* ===========================================================
   CONTACTO
=========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--c-navy);
  color: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  position: sticky;
  top: 90px;
}
@media (max-width: 980px) { .contact-info-card { position: static; } }
.contact-info-card h2 { color: #fff; margin: 0 0 1.5rem; font-size: 1.5rem; font-weight: 700; }
.contact-info-item { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item__label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-orange-light);
  font-weight: 700;
  margin-bottom: .4rem;
}
.contact-info-item__value { font-size: 1rem; color: #fff; font-weight: 600; line-height: 1.4; }
.contact-info-item a { color: #fff; }
.contact-info-item a:hover { color: var(--c-orange); }

/* ===========================================================
   PRINT / accesibilidad
=========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Reveal: solo oculta cuando JS está cargado (clase 'js-loaded' en <html>).
   Si JS falla o IntersectionObserver no dispara, el contenido queda visible. */
.js-loaded .reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.js-loaded .reveal.is-visible { opacity: 1; transform: none; }
/* Safety net: si tras 3s el reveal aún no se vio, forzar visible */
@keyframes revealFallback { to { opacity: 1; transform: none; } }
.js-loaded .reveal { animation: revealFallback 0s linear 3s forwards; }
.js-loaded .reveal.is-visible { animation: none; }

/* Hide visually but keep accessible */
.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;
}

/* ============================================================
   REDES SOCIALES — visibilidad reforzada
   ============================================================ */

/* Topbar social icons (junto a horario) */
.topbar__follow {
  opacity: .75;
  font-weight: 500;
  margin-right: .35rem;
}
.topbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  margin: 0 .15rem;
  transition: all var(--t-fast) var(--ease);
  color: #fff;
}
.topbar__social:hover {
  background: var(--c-orange);
  transform: translateY(-1px);
}
.topbar__social svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

@media (max-width: 760px) {
  .topbar__right { display: none !important; }
}

/* Banner grande SÍGUENOS en home (debajo de YouTube banner) */
.social-banner {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #0d3868 0%, #15497a 50%, #1f5a92 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 2.4rem 2.8rem;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden;
}
.social-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(243,146,0,.18) 0%, transparent 50%);
  pointer-events: none;
}
.social-banner__text { position: relative; z-index: 2; }
.social-banner__eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--c-orange-light);
  margin-bottom: .8rem;
}
.social-banner h3 {
  color: #fff;
  margin: 0 0 .8rem;
  font-size: 1.6rem;
  line-height: 1.2;
}
.social-banner p {
  color: rgba(255,255,255,.88);
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 420px;
}
.social-banner__icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .9rem;
  position: relative;
  z-index: 2;
}
.social-banner__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 1rem .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  color: #fff;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
}
.social-banner__icon:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
  border-color: rgba(255,255,255,.25);
}
.social-banner__icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.social-banner__icon span {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
}

/* Colores específicos al hacer hover */
.social-banner__icon--fb:hover { background: #1877f2; border-color: #1877f2; }
.social-banner__icon--ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.social-banner__icon--tt:hover { background: #000; border-color: #000; }
.social-banner__icon--yt:hover { background: #ff0000; border-color: #ff0000; }
.social-banner__icon--ta:hover { background: #00aa6c; border-color: #00aa6c; }

@media (max-width: 900px) {
  .social-banner {
    grid-template-columns: 1fr;
    padding: 2rem 1.8rem;
    text-align: center;
  }
  .social-banner p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .social-banner__icons { grid-template-columns: repeat(5, 1fr); gap: .5rem; }
  .social-banner__icon { padding: .8rem .3rem; }
  .social-banner__icon svg { width: 22px; height: 22px; }
  .social-banner__icon span { font-size: .7rem; }
}

@media (max-width: 480px) {
  .social-banner__icons { grid-template-columns: repeat(3, 1fr); }
  .social-banner__icon:nth-child(4),
  .social-banner__icon:nth-child(5) { grid-column: span 1; }
}

/* ============================================================
   BRL referencial — precios secundarios en reales brasileños
   ============================================================ */
.pkg-card__price-brl {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-muted);
  margin-top: .15rem;
  letter-spacing: .01em;
}
.price-box__brl {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--c-muted);
  margin-top: .35rem;
  letter-spacing: .01em;
}
.pkg-hero__brl {
  display: inline-block;
  font-size: .82em;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-left: .35rem;
}

/* ============================================================
   BLOG ARTICLE — responsive padding
   ============================================================ */
.blog-article {
  background: #fff;
  padding: 2.5rem;
  border-radius: 14px;
  border: 1px solid var(--c-line);
  font-size: 1.05rem;
  line-height: 1.75;
}
@media (max-width: 760px) {
  .blog-article {
    padding: 1.5rem 1.1rem;
    border-radius: 10px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .blog-article {
    padding: 1.2rem .9rem;
  }
}
