/* ==========================================================================
   Lysto Congelados — Landing page
   Mobile-first. Breakpoints: tablet 768px, desktop 1024px (diseño ref. 1440px)
   ========================================================================== */

:root {
  --red: #E1352A;
  --red-hero: #951e1a;
  --red-dark: #C31C14;
  --red-deep: #7C0D07;
  --red-hero-top: #7d1512;
  --black: #1C1A18;
  --paper: #F6F2EC;
  --paper-dark: #EFEAE2;
  --white: #FFFFFF;
  --border: #E3DAD0;
  --border-soft: #EFE7DE;
  --border-mid: #DED6CC;
  --border-dashed: #C9BFB4;
  --text-body: #3A3733;
  --text-secondary: #5A544E;
  --text-tertiary: #8A837C;
  --text-dim: #7A736C;
  --text-on-black: #B5ADA6;
  --pink-light: #FFDDD9;
  --pink-light2: #FFD3CE;
  --pink-eyebrow: #FFC9C4;
  --coral: #FF8F84;
  --whatsapp: #25D366;

  --font: 'Archivo', Helvetica, Arial, sans-serif;
  --font-script: 'Caveat', cursive;
  --pad-x: 56px;
}

@media (min-width: 1440px) {
  :root { --pad-x: max(56px, calc((100% - 1440px) / 2 + 56px)); }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
#quienes-somos, #producto, #presentaciones, #como-pedir { scroll-margin-top: 90px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--paper);
  font-family: var(--font);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, p, span { margin: 0; }
section { overflow: hidden; }

/* Mostrar/ocultar por breakpoint: solo se fuerza el "none"; el estado
   visible siempre conserva el display propio del componente (flex/grid/block). */
@media (max-width: 1023.98px) {
  .desktop-only { display: none !important; }
}

/* Utility text/classes */
.text-red { color: var(--red); font-weight: 700; }
.h2 {
  font-weight: 800;
  font-stretch: 75%;
  font-size: 29px;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--black);
}
.body-text {
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-body);
}
.body-text--sm { font-size: 12.5px; line-height: 1.5; }
.eyebrow {
  font-weight: 700;
  font-stretch: 75%;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink-eyebrow);
}
.script {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--red);
  display: inline-block;
}
.label {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.label--red { color: var(--red); }

.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-stretch: 75%;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-block;
}
.chip--black { background: var(--black); }
.chip--pill { font-size: 10px; }

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 800;
  font-stretch: 75%;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}
.btn--red { background: var(--red); color: var(--white); height: 46px; padding: 0 28px; font-size: 13px; }
.btn--red:hover { background: var(--red-dark); }
.btn--white { background: var(--white); color: var(--red-dark); height: 54px; padding: 0 28px; }
.btn--white:hover { background: var(--paper); }
.btn--black { background: var(--black); color: var(--white); height: 52px; padding: 0 28px; }
.btn--black:hover { background: #2c2925; }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
  height: 52px;
  padding: 0 28px;
}
.btn--outline:hover { background: rgba(255,255,255,.08); }
.btn--full { width: 100%; }
.btn--lg { font-size: 16px; height: 56px; }
.btn--nav { display: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 12px 18px;
  position: relative;
  z-index: 20;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo-img { height: 32px; width: auto; }
.site-header__region {
  font-weight: 700;
  font-stretch: 75%;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  margin-right: auto;
  margin-left: 12px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
}
.hamburger__bar { width: 20px; height: 2px; background: var(--black); display: block; }
.hamburger__bar--red { background: var(--red); }
.hamburger__bar--short { width: 13px; }

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 8px 18px 18px;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  font-weight: 600;
  font-stretch: 75%;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.site-nav a:hover { color: var(--red); }
.site-nav .btn--nav {
  display: flex;
  margin-top: 14px;
  border-bottom: none;
  padding: 0 28px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg,#7d1512 0%,#8e1b17 46%,#951e1a 78%,#951e1a 100%);
}
.hero__grid { position: relative; height: 410px; overflow: hidden; }
.hero__copy {
  position: absolute;
  left: 20px; right: 20px; top: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  z-index: 2;
}
.hero__title {
  font-weight: 800;
  font-stretch: 75%;
  font-size: 41px;
  line-height: .96;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -.01em;
}
.hero__lead {
  max-width: 238px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--pink-light);
}
.hero__lead-strong { color: var(--white); font-weight: 700; display: none; }
.hero__ctas { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.hero__ctas .btn--outline { display: none; }

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__photo-img {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 152%;
  max-width: none;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0,0,0,1) 90px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0px, rgba(0,0,0,1) 90px);
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(80,10,8,.42) 0%, rgba(80,10,8,.10) 46%, rgba(80,10,8,0) 66%);
}
.hero__script {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-size: 23px;
  line-height: 1;
  color: var(--white);
  transform: rotate(-5deg);
  z-index: 2;
}

.hero__panel {
  padding: 22px 20px 26px;
  background: linear-gradient(180deg,#5c1a14 0%,#7c1410 28%,#8f1109 68%,#7C0D07 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__fact-card {
  border: 1px solid rgba(255,255,255,.45);
  display: flex;
  flex-direction: column;
}
.hero__fact-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
}
.hero__fact-row:first-child { border-bottom: 1px solid rgba(255,255,255,.35); }
.hero__fact-label { font-weight: 700; font-size: 12px; color: var(--white); }
.hero__fact-value { font-weight: 400; font-size: 12px; color: var(--pink-light2); }

/* ==========================================================================
   Franja de datos
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
}
.stats__item {
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.stats__item:last-child { border-right: none; }
.stats__item--mobile-only { border-right: none; }
.stats__value { font-weight: 800; font-stretch: 75%; font-size: 19px; color: var(--white); }
.stats__label { font-weight: 500; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-on-black); }
.stats__item--desktop-only { display: none; }

/* ==========================================================================
   Quienes somos
   ========================================================================== */
.about {
  padding: 30px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__text { display: flex; flex-direction: column; gap: 12px; }
.about__box {
  padding: 14px 16px;
  border: 1px dashed var(--red);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__box-title { font-size: 22px; line-height: 1.1; margin-bottom: 8px; }
.about__box-text { font-weight: 500; font-size: 12px; line-height: 1.45; color: var(--text-body); }
.about__chips { display: none; }

/* ==========================================================================
   Resultado perfecto / beneficios
   ========================================================================== */
.benefits {
  background: var(--paper-dark);
  display: flex;
  flex-direction: column;
}
.benefits__text {
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefits__grid { display: flex; flex-direction: column; gap: 14px; }
.benefit { display: flex; flex-direction: column; gap: 6px; }
.benefit__desc { font-weight: 500; font-size: 12.5px; line-height: 1.5; color: var(--text-body); }
.benefits__photo { position: relative; margin: 0; overflow: hidden; }
.benefits__photo-img { width: 100%; height: 230px; object-fit: cover; object-position: center 45%; }
.benefits__script { position: absolute; bottom: 12px; left: 20px; font-size: 23px; transform: rotate(-4deg); color: var(--white); }

/* ==========================================================================
   Presentaciones
   ========================================================================== */
.presentations {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.presentations__intro { display: flex; flex-direction: column; gap: 8px; }
.presentations__pack { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.presentations__pack-img { width: 92px; height: auto; flex: none; }
.presentations__pack-text { display: flex; flex-direction: column; gap: 6px; }

.presentations__cards { display: flex; flex-direction: column; gap: 10px; }
.card {
  background: var(--white);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card__desc { font-weight: 500; font-size: 12px; line-height: 1.5; color: var(--text-body); }
.card__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.card__specs--single { grid-template-columns: 1fr; }
.spec {
  border: 1px solid var(--border);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 1023.98px) {
  .spec--row { flex-direction: row; align-items: center; gap: 14px; }
}
.spec__size { font-weight: 800; font-stretch: 75%; font-size: 22px; line-height: 1; color: var(--black); }
.spec__tag { font-weight: 600; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
.spec__tag--black { color: var(--black); }
.spec__desc { font-weight: 400; font-size: 11px; line-height: 1.4; color: var(--text-secondary); }

/* Comparativa */
.compare { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.compare .script { font-size: 22px; }
.compare__table {
  display: grid;
  grid-template-columns: 66px 1fr 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--border);
}
.compare__row { display: contents; }
.compare__cell {
  padding: 9px 4px;
  font-weight: 400;
  font-size: 10px;
  color: var(--text-body);
  text-align: center;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare__row--head .compare__cell { border-top: none; }
.compare__cell--label {
  justify-content: flex-start;
  padding: 9px 8px;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: left;
}
.compare__cell--head {
  background: var(--black);
  padding: 8px 4px;
  flex-direction: column;
  gap: 2px;
}
.compare__size { font-weight: 800; font-stretch: 75%; font-size: 13px; line-height: 1; color: var(--white); }
.compare__line { font-weight: 600; font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.compare__line--premium { color: var(--coral); }
.compare__line--classic { color: var(--text-on-black); }

/* ==========================================================================
   Papa comun vs Lysto
   ========================================================================== */
.vs {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vs__header { display: flex; flex-direction: column; gap: 8px; }
.vs__plus { font-weight: 700; font-size: 12px; color: var(--black); }
.vs__columns-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.vs__vs-word { font-size: 20px; text-align: center; }
.vs__col-label { font-weight: 600; font-size: 13px; color: var(--text-tertiary); text-align: right; }
.vs__col-label--lysto {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--black);
  text-align: left;
}
.vs__col-logo { height: 20px; width: auto; }

.vs__rows { display: flex; flex-direction: column; }
.vs__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--border-mid);
}
.vs__row--last { border-bottom: 1px solid var(--border-mid); }
.vs__cell { display: flex; flex-direction: column; gap: 3px; }
.vs__title { font-weight: 700; font-stretch: 75%; font-size: 12px; text-transform: uppercase; color: var(--red); }
.vs__title--common { color: var(--text-tertiary); }
.vs__desc { font-weight: 400; font-size: 11px; line-height: 1.4; color: var(--text-body); }
.vs__desc--common { color: var(--text-dim); }

/* ==========================================================================
   Como pedir
   ========================================================================== */
.order {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.order__steps { display: flex; flex-direction: column; gap: 16px; }
.steps { display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 12px; align-items: flex-start; }
.step__number { font-weight: 800; font-stretch: 75%; font-size: 24px; line-height: .9; color: var(--red); min-width: 30px; }
.step__text { font-weight: 500; font-size: 13px; line-height: 1.45; color: var(--text-body); }
.order__delivery {
  padding: 12px 14px;
  border: 1px dashed var(--border-dashed);
  font-weight: 500;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.order__quote {
  padding: 26px 20px;
  background: var(--red);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order__quote-text { font-weight: 600; font-size: 15px; line-height: 1.45; color: var(--white); }
.order__zone { display: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 24px 20px 100px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.site-footer__logo { height: 36px; width: auto; align-self: flex-start; }
.site-footer__tagline { font-weight: 500; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-on-black); }
.site-footer__contact { font-weight: 400; font-size: 12px; line-height: 1.6; color: var(--text-tertiary); }

/* ==========================================================================
   WhatsApp flotante
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 22px;
  right: 16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 10px 26px rgba(28,26,24,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: transform 150ms ease;
}
.whatsapp-fab:hover { transform: scale(1.05); }

/* ==========================================================================
   Tablet — ≥768px
   ========================================================================== */
@media (min-width: 768px) {
  .about { flex-direction: row; align-items: flex-start; padding: 40px 40px; gap: 40px; }
  .about__text { flex: 1.15; }
  .about__box { flex: 1; }
  .about__chips { display: flex; margin-top: 6px; }

  .benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }

  .presentations__cards { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }

  .vs__row { gap: 30px; }
}

/* ==========================================================================
   Desktop — ≥1024px (referencia de diseño: 1440px)
   ========================================================================== */
@media (min-width: 1024px) {
  .mobile-only { display: none !important; }

  .site-header { padding: 18px 56px; }
  .site-header__inner { position: relative; }
  .logo-img { height: 42px; }
  .site-header__region { display: none; }
  .hamburger { display: none; }

  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 34px;
    position: static;
    background: none;
    border: none;
    padding: 0;
    margin-left: auto;
  }
  .site-nav a { padding: 0; border-bottom: none; font-size: 13px; }
  .site-nav .btn--nav { margin-top: 0; padding: 0 28px; }
  .btn--nav { display: flex; }

  .site-header { position: sticky; top: 0; }

  /* Hero */
  .hero { background: var(--red-hero); }
  .hero__grid {
    height: auto;
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    overflow: visible;
  }
  .hero__copy {
    position: static;
    padding: 74px 56px 66px;
    gap: 22px;
    background: var(--red-hero);
  }
  .eyebrow { font-size: 12px; letter-spacing: .24em; }
  .hero__title { font-size: 84px; line-height: .9; letter-spacing: -.02em; }
  .hero__lead { font-size: 19px; max-width: 440px; }
  .hero__lead-strong { display: inline; }
  .hero__ctas .btn--outline { display: flex; }
  .hero__ctas .btn--white { width: auto; padding: 0 30px; }

  .hero__photo {
    position: relative;
    inset: auto;
    min-height: 600px;
    overflow: hidden;
    background: var(--red-hero);
  }
  .hero__photo-img {
    left: 50%; top: 50%; bottom: auto;
    width: 150%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transform: translate(-50%,-50%);
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero__photo::after {
    background: linear-gradient(90deg, rgba(149,30,26,1) 0%, rgba(149,30,26,1) 4%, rgba(149,30,26,.5) 16%, rgba(149,30,26,0) 40%);
  }
  .hero__script { left: 60px; bottom: 44px; font-size: 34px; }

  .hero__panel { display: none; }

  /* Franja de datos */
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stats__item { padding: 26px 40px; gap: 3px; }
  .stats__value { font-size: 30px; }
  .stats__label { font-size: 11px; }
  .stats__item--desktop-only { display: flex; }
  .stats__item--mobile-only { display: none; }

  /* Quienes somos */
  .about { padding: 76px 56px; gap: 70px; }
  .about__text { gap: 20px; }
  .h2 { font-size: 50px; line-height: 1; }
  .body-text { font-size: 17px; }
  .about__box { padding: 30px 34px; gap: 10px; }
  .about__box-title { font-size: 34px; margin-bottom: 0; }
  .about__box-text { font-size: 16px; line-height: 1.55; }

  /* Beneficios */
  .benefits { display: grid; grid-template-columns: 1.05fr 1fr; }
  .benefits__text { padding: 76px 56px; gap: 28px; }
  .benefits__grid { gap: 26px 32px; }
  .benefit__desc { font-size: 15px; line-height: 1.55; }
  .benefits__photo { position: relative; min-height: 520px; }
  .benefits__photo-img { position: absolute; left: 50%; top: 50%; width: 126%; height: 100%; max-width: none; transform: translate(-50%,-50%); object-fit: cover; }
  .benefits__script { font-size: 32px; left: 40px; bottom: 36px; }

  /* Presentaciones */
  .presentations { padding: 76px 56px; gap: 32px; }
  .presentations__intro {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
  .presentations__pack { margin-bottom: 0; gap: 22px; }
  .presentations__pack-img { width: 150px; }
  .presentations__pack-text { max-width: 400px; }

  .presentations__cards { grid-template-columns: 1.55fr 1fr; gap: 24px; }
  .card { padding: 32px 34px; gap: 16px; }
  .card__desc { font-size: 15px; line-height: 1.55; }
  .card__specs { gap: 20px; margin-top: auto; }
  .spec { padding: 24px; gap: 7px; }
  .spec__size { font-size: clamp(30px, 2.6vw, 42px); white-space: nowrap; }
  .spec__tag { font-size: 12px; }
  .spec__desc { font-size: 14px; }
  .card__specs--single .spec { margin-top: auto; }

  .compare { margin-top: 8px; gap: 12px; }
  .compare .script { font-size: 32px; }
  .compare__table { grid-template-columns: 200px 1fr 1fr 1fr; }
  .compare__cell { padding: 16px; font-size: 15px; }
  .compare__cell--label { padding: 16px 20px; font-size: 12px; }
  .compare__cell--head { padding: 14px 16px; }
  .compare__size { font-size: 22px; }
  .compare__line { font-size: 11px; }

  /* Papa comun vs lysto */
  .vs { padding: 70px 56px; gap: 30px; background: var(--paper-dark); }
  .vs__header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .vs__header .script { font-size: 30px; }
  .vs__columns-head { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 14px; }
  .vs__col-label { font-size: 15px; letter-spacing: .12em; text-transform: uppercase; text-align: left; }
  .vs__col-label--lysto { font-size: 15px; letter-spacing: .12em; text-transform: uppercase; }
  .vs__col-logo { height: 24px; }
  .vs__row { gap: 40px; padding: 26px 0; }
  .vs__title { font-size: 20px; }
  .vs__desc { font-size: 15px; line-height: 1.5; }

  /* Como pedir */
  .order { padding: 76px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
  .order__steps { gap: 26px; }
  .steps { gap: 18px; }
  .step__number { font-size: 34px; min-width: 52px; }
  .step__text { font-size: 16px; }
  .order__quote { padding: 36px 40px; gap: 18px; }
  .order__quote-text { font-size: 20px; }
  .order__zone { display: block; font-weight: 500; font-size: 13px; line-height: 1.5; letter-spacing: .1em; text-transform: uppercase; color: var(--pink-light2); }

  /* Footer */
  .site-footer { padding: 44px 56px; flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .site-footer__logo { height: 44px; }
  .site-footer__contact { font-size: 14px; text-align: right; }

  /* WhatsApp flotante */
  .whatsapp-fab { width: 66px; height: 66px; bottom: 28px; right: 28px; }
}

/* Más allá de 1440px: los fondos de color siguen a sangre, pero el contenido
   se limita al ancho de diseño para no estirar de más. */
@media (min-width: 1440px) {
  .site-header { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .hero__copy { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .hero__script { left: var(--pad-x); }
  .about,
  .benefits__text,
  .presentations,
  .vs,
  .order,
  .site-footer {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }
}
