/* ── Variables ──────────────────────────────────── */
:root {
  --teal:       #00809d;
  --orange:     #ff6a2a;
  --bg-light:   #f4f4f4;
  --text-dark:  #1a2a30;
  --text-muted: #777;
  --white:      #ffffff;
  --ig-grad: linear-gradient(to right, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --fb-blue:    #1877F2;
  --wa-green:   #25D366;
  --font: 'Montserrat', sans-serif;
  --radius: 10px;
  --shadow-orange: 0 4px 16px rgba(255, 106, 42, 0.4);
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
body { font-family: var(--font); color: var(--text-dark); background: var(--white); }

/* ── Botones base ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.15s;
  touch-action: manipulation;
}
.btn:hover, .btn:focus-visible { opacity: 0.88; }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.btn--orange  { background: var(--orange); color: var(--white); box-shadow: 0 3px 12px rgba(255,106,42,0.35); }
.btn--outline { background: rgba(255,255,255,0.18); color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn--pill    { border-radius: 30px; padding: 8px 18px; }
.btn--full    { width: 100%; margin-top: 16px; font-size: 1rem; padding: 14px; border-radius: 8px; }

/* ── Banner top ─────────────────────────────────── */
.banner-top {
  background: var(--teal);
  padding: 4px 16px;
  text-align: center;
}
.banner-top p {
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 600;
}

/* ── Nav ────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 20px 0;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  overflow: visible;
}
.nav__logo {
  position: relative;
  z-index: 101;
  margin-bottom: -36px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 96px;
  width: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
  display: block;
}
.nav__link { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); justify-self: start; grid-column: 1; }
.nav__link--desktop { display: none; }
.nav__link:hover { color: var(--teal); }
.nav__logo { grid-column: 2; }
.nav > .btn--pill { justify-self: end; grid-column: 3; }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 320px;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center 50%;
  display: flex;
  align-items: flex-end;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,40,60,0.85) 100%);
}
.hero__content {
  position: relative;
  padding: 0 20px 28px;
  width: 100%;
  max-width: 600px;
}
.hero__eyebrow {
  font-size: 0.65rem;
  color: #a8e6ef;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero__title {
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
  text-wrap: balance;
}
.hero__subtitle {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
  line-height: 1.5;
}
.hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Trust strip ────────────────────────────────── */
.trust-strip {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px 12px;
  border-bottom: 1px solid #eee;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  border: 1px solid #e8f4f7;
  border-radius: 12px;
  padding: 14px 8px;
  flex: 1;
}
.trust-strip__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ── Social proof ───────────────────────────────── */
.social-proof {
  background-image: linear-gradient(rgba(0,20,40,0.55), rgba(0,20,40,0.55)), url('assets/hielo.jpg');
  background-size: 220% auto;
  background-position: 0% center;
  animation: bgPan 14s ease-in-out infinite alternate;
  padding: 18px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes bgPan {
  from { background-position: 0% center; }
  to   { background-position: 100% center; }
}
@media (prefers-reduced-motion: reduce) {
  .social-proof { animation: none; background-position: 50% center; }
}
.social-proof__stat {
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.social-proof__stat.active { opacity: 1; }
.social-proof__num {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.social-proof__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Catálogo ───────────────────────────────────── */
.catalogo {
  background: var(--white);
  padding: 24px 16px;
}
.catalogo__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.catalogo__title { font-size: 1.25rem; font-weight: 800; color: var(--teal); }
.catalogo__badge {
  background: #fff9f6;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}

/* ── Lista de productos ─────────────────────────── */
.productos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.producto {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5f4f7;
  border-top: 3px solid var(--teal);
  border-radius: var(--radius);
  overflow: hidden;
}
.producto--popular {
  border: 2px solid var(--orange);
  background: #fff9f6;
}
.producto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: var(--white);
}
.producto__info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.producto__name-row { display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }
.producto__name     { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.producto__badge-popular {
  background: var(--orange);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.producto__badge-classic {
  background: var(--teal);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.producto--classic { border: 2px solid var(--teal); }
.producto__desc  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 5px; }
.producto__precio { font-size: 1.15rem; font-weight: 800; color: var(--teal); }
.producto__precio--popular { color: var(--orange); }
.producto__precio-ref {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: -3px;
}

/* ── Qty controls ───────────────────────────────── */
.producto__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  transition: opacity 0.15s;
  font-family: var(--font);
  line-height: 1;
  flex-shrink: 0;
}
.qty-btn--plus  { background: var(--orange); color: var(--white); }
.qty-btn--minus { background: var(--teal);   color: var(--white); }
.qty-btn--minus:disabled { background: #e0e0e0; color: #aaa; cursor: default; }
.qty-btn:hover:not(:disabled) { opacity: 0.85; }
.qty-num {
  font-size: 1rem;
  font-weight: 800;
  min-width: 20px;
  text-align: center;
  color: var(--text-dark);
}

/* ── Cart panel ─────────────────────────────────── */
.cart-panel {
  background: #f0fafb;
  border: 1.5px solid #b8dfe8;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
  animation: slideDown 0.3s ease;
}
.cart-panel--hidden { display: none; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cart-panel__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 10px;
}
.cart-panel__line {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 5px;
}
.cart-panel__total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  border-top: 1.5px solid #b8dfe8;
  padding-top: 10px;
  margin-top: 8px;
}
.cart-panel__cta {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 13px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 8px;
  touch-action: manipulation;
  transition: opacity 0.15s;
  box-shadow: var(--shadow-orange);
}
.cart-panel__cta:hover, .cart-panel__cta:focus-visible { opacity: 0.88; }
.cart-panel__cta:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.cart-panel__payment {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.cart-panel__despacho-nota {
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 4px;
  opacity: 0.75;
}

/* ── Indicador despacho en carrito ──────────────── */
.cart-delivery {
  margin-top: 10px;
  padding: 10px 12px;
  background: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}
.cart-delivery--free {
  background: #dcfce7;
  border-color: #86efac;
  color: #15803d;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 10px;
}
.cart-delivery__bar {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.cart-delivery__fill {
  height: 100%;
  background: linear-gradient(to right, var(--teal), var(--orange));
  border-radius: 3px;
  transition: width 0.4s ease;
}
.cart-delivery__msg {
  font-size: 0.75rem;
  color: #555;
  font-weight: 600;
  text-align: center;
}

.producto__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 7px 0;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 6px;
  touch-action: manipulation;
  transition: opacity 0.15s;
  width: 100%;
}
.producto__cta:hover, .producto__cta:focus-visible { opacity: 0.88; }
.producto__cta:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

/* ── Banner origen ──────────────────────────────── */
.banner-origen {
  position: relative;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-origen__bg {
  position: absolute;
  inset: -30% 0;
  background-image: url('assets/flota.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.banner-origen__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,40,60,0.55);
}
.banner-origen__content { position: relative; padding: 0 24px; text-align: center; }
.banner-origen__title {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  text-wrap: balance;
}
.banner-origen__sub {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

/* ── Cómo funciona ──────────────────────────────── */
.como-funciona {
  background: var(--bg-light);
  padding: 24px 16px;
}
.como-funciona__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 20px;
}

.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), rgba(0,128,157,0.1));
}
.timeline__item { position: relative; margin-bottom: 22px; }
.timeline__item:last-child { margin-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -40px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline__dot--orange { background: var(--orange); font-size: 1rem; }
.timeline__step-title  { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 3px; }
.timeline__step-title--orange { color: var(--orange); }
.timeline__step-desc   { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ── Zonas ──────────────────────────────────────── */
.zonas {
  background: var(--white);
  padding: 20px 16px;
  border-top: 1px solid #eee;
}
.zonas__title { font-size: 1rem; font-weight: 700; color: var(--teal); margin-bottom: 14px; }
.zonas__gratis-banner {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #15803d;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.zonas__subtitulo {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.zonas__tip {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 4px;
}
.zonas__tabla {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.zonas__tabla thead th {
  background: var(--bg-light);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  text-align: left;
}
.zonas__tabla tbody tr {
  border-bottom: 1px solid #f0f0f0;
}
.zonas__tabla tbody tr:last-child { border-bottom: none; }
.zonas__tabla tbody td {
  padding: 9px 12px;
  color: var(--text-dark);
}
.zonas__costo {
  font-weight: 700;
  text-align: right;
}
.zonas__costo--gratis {
  color: #16a34a;
}
.zonas__costo--consultar {
  color: var(--text-muted);
  font-weight: 600;
}
.zonas__nota { font-size: 0.72rem; color: #bbb; }

/* ── Contacto ───────────────────────────────────── */
.contacto {
  background: var(--bg-light);
  padding: 22px 0;
  border-top: 1px solid #e8e8e8;
}
.contacto__inner {
  padding: 0 16px;
}
.contacto__titulo { font-size: 1rem; font-weight: 700; color: var(--teal); margin-bottom: 14px; }
.contacto__titulo + .contacto__titulo { margin-top: 16px; }

.redes {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  max-width: 220px;
  padding: 11px 16px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  border-radius: 10px;
  cursor: pointer;
  touch-action: manipulation;
  transition: opacity 0.15s;
}
.btn-red:hover, .btn-red:focus-visible { opacity: 0.88; }
.btn-red:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.btn-red--ig { background: var(--ig-grad); border-radius: 30px; box-shadow: 0 3px 10px rgba(220,39,67,0.3); }
.btn-red--fb { background: var(--fb-blue); box-shadow: 0 3px 10px rgba(24,119,242,0.3); }

.contacto__info { font-size: 0.82rem; color: #555; line-height: 1.9; }

/* ── Redes strip ────────────────────────────────── */
.redes-strip {
  padding: 32px 20px 24px;
  background: var(--white);
  text-align: center;
  border-top: 1px solid #eee;
}
.redes-strip__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* ── Clientes (fotos) ────────────────────────────── */
.clientes {
  padding: 32px 20px;
  background: var(--bg-light);
}
.clientes__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 18px;
}
.clientes__carousel {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}
.clientes__item {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: clienteFadeIn 0.5s ease;
}
.clientes__item--active {
  display: flex;
}
@keyframes clienteFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.clientes__foto {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d0e8ed;
}
.clientes__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.clientes__cita {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}
.clientes__nombre {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
}
.clientes__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.clientes__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.clientes__dot--active {
  background: var(--teal);
}

/* ── ¿Cómo funciona? ────────────────────────────── */
.como-pedir {
  padding: 32px 20px;
  background: var(--white);
}
.como-pedir__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 24px;
}
.como-pedir__pasos {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 480px;
  margin: 0 auto;
}
.como-pedir__paso {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.como-pedir__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.como-pedir__texto strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.como-pedir__texto p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Footer ─────────────────────────────────────── */
.footer img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.footer__body {
  background: #1a2a30;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer__redes {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-red--wa { background: var(--wa-green); box-shadow: 0 3px 10px rgba(37,211,102,0.3); }
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.footer__contact a { color: rgba(255,255,255,0.8); }
.footer__contact a:hover { color: var(--white); }
.footer__copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

/* ── WhatsApp flotante ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  touch-action: manipulation;
  transition: transform 0.15s;
}
.whatsapp-float:hover, .whatsapp-float:focus-visible { transform: scale(1.08); }
.whatsapp-float:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

/* ── Desktop ────────────────────────────────────── */
@media (min-width: 640px) {
  .nav__logo img { height: 110px; width: 110px; }
  .nav__logo { margin-bottom: -44px; }
  .hero { min-height: 420px; }
  .hero__content { padding: 0 40px 40px; max-width: 560px; }
  .catalogo, .como-funciona, .zonas { padding: 32px 40px; }
  .productos { grid-template-columns: 1fr 1fr; max-width: 640px; margin: 0 auto; }
  .footer img { height: 240px; }
  .trust-strip { display: flex; justify-content: center; gap: 16px; padding: 20px 40px; }
}

#productos, #como-pedir { scroll-margin-top: 140px; }

/* ── Fade-up scroll animation ───────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--delay, 0ms);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn, .btn-red, .whatsapp-float { transition: none; }
  .fade-up { opacity: 1; transform: none; transition: none; }
}

@media (min-width: 960px) {
  .nav { padding: 10px 60px 0; }
  .nav__link--desktop { display: block; }
  .nav__logo img { height: 120px; width: 120px; }
  .nav__logo { margin-bottom: -50px; }
  .banner-top { padding: 5px 40px; }
  .hero__content { max-width: 640px; padding: 0 60px 50px; }
  .catalogo, .como-funciona, .zonas {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 0;
  }
  .footer__body { padding: 32px 40px 28px; }
  .footer__redes { gap: 14px; }
}
