@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url("../fonts/archivo.woff2") format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/publicsans.woff2") format('woff2');
}

:root {
  --primary: #d6321f;
  --primary-dark: #7c1f14;
  --accent: #6a3fa0;
  --zip-pink: #c93d6e;
  --zip-green: #3f8f4e;
  --whatsapp: #25d366;
  --whatsapp-dark: #1eb958;
  --ink: #17140f;
  --ink-soft: #5c554a;
  --bg: #f6f1e7;
  --bg-alt: #ece4d3;
  --border: #e2d9c4;
  --radius: 4px;
  --radius-pill: 999px;
  --max-width: 1160px;
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: 'Public Sans', -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--primary-dark); outline-offset: 3px; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-family: var(--font-display); text-wrap: balance; margin: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--primary-dark);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 16px; height: 2px; background: var(--primary); display: inline-block; }

/* Header */
header.site-header {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: rgba(246,241,231,.92);
  backdrop-filter: blur(8px);
  z-index: 50;
}
header.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
header.site-header img.logo { height: 42px; width: auto; }
nav.main-nav { display: flex; gap: 26px; font-size: 14.5px; font-weight: 600; }
nav.main-nav a { text-decoration: none; color: var(--ink); }
nav.main-nav a:hover { color: var(--primary-dark); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--whatsapp); color: #fff; font-weight: 700;
  padding: 10px 18px; border-radius: var(--radius-pill); text-decoration: none; font-size: 14px;
  white-space: nowrap; transition: background .15s, transform .15s;
}
.header-cta:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }

/* Hero */
.hero { padding: 60px 0 44px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.01; letter-spacing: -.01em; font-weight: 900;
  margin: 0 0 16px; color: var(--ink);
}
.hero p.lead { font-size: 17.5px; color: var(--ink-soft); margin: 0 0 26px; max-width: 46ch; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .trust-mini {
  margin-top: 22px; font-size: 12.5px; color: var(--ink-soft);
  display: flex; gap: 18px; flex-wrap: wrap; font-family: var(--font-mono);
}
.hero .trust-mini span { display: flex; align-items: center; gap: 6px; }

.hero-frame { position: relative; }
.hero-frame img.hero-img {
  border-radius: 6px 6px 6px 30px;
  box-shadow: 0 26px 54px -24px rgba(23,20,15,.35);
  width: 100%;
}
.hero-frame::after {
  content: ""; position: absolute; top: -12px; right: -12px;
  width: 54px; height: 54px; background: var(--primary); border-radius: 50%; z-index: -1;
}

.btn {
  display: inline-block; padding: 14px 26px; border-radius: var(--radius-pill);
  font-weight: 700; text-decoration: none; font-size: 15.5px;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.btn-primary { background: var(--whatsapp); color: #fff; }
.btn-primary:hover { background: var(--whatsapp-dark); transform: translateY(-1px); box-shadow: 0 10px 22px -12px rgba(37,211,102,.6); }
.btn-outline { border: 2px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }

.zip-divider {
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 7px, transparent 7px 15px);
  opacity: .14;
}

/* Sections */
section { padding: 48px 0; }
section.alt { background: var(--bg-alt); }
h2.section-title { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 800; margin: 0 0 8px; }
p.section-sub { color: var(--ink-soft); margin: 0 0 28px; max-width: 60ch; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card { border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; background: #fff; }
.card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 800; }
.card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }

.product-card {
  position: relative;
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  overflow: hidden; background: #fff; text-decoration: none; color: var(--ink);
  transition: box-shadow .18s, transform .18s;
}
.product-card:hover { box-shadow: 0 16px 32px -16px rgba(23,20,15,.3); transform: translateY(-3px); }
.product-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.product-card .product-card-body { padding: 14px 16px; }
.product-card h3 { margin: 0 0 4px; font-size: 15px; font-weight: 800; }
.product-card span.tag {
  font-family: var(--font-mono); font-size: 11px; color: var(--primary-dark); font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
}
.product-card .swatch {
  position: absolute; top: 0; right: 0; width: 22px; height: 22px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
/* featured (homepage) variant — Pasta Zip Zap & Bolsa Canguru get top billing for ads traffic */
.product-card.featured { grid-column: span 2; }
.product-card.featured img { aspect-ratio: 16/10; }
.product-card.featured h3 { font-size: 19px; }
.product-card.featured .product-card-body { padding: 18px 20px; }

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.feature-list li .dot {
  width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; margin-top: 2px;
}

.faq { border-top: 1px solid var(--border); padding: 18px 0; }
.faq h3 { margin: 0 0 8px; font-size: 16.5px; font-weight: 800; }
.faq p { margin: 0; color: var(--ink-soft); }

.cta-band { background: var(--ink); color: var(--bg); text-align: center; padding: 56px 0; }
.cta-band h2 { margin: 0 0 10px; font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800; }
.cta-band p { margin: 0 0 24px; color: #cfc9bb; }
.cta-band .btn-primary { background: var(--whatsapp); }

footer.site-footer { background: var(--ink); color: #c9c2b2; padding: 40px 0 24px; font-size: 14px; }
footer.site-footer .wrap { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; }
footer.site-footer h4 { color: var(--bg); font-family: var(--font-display); font-weight: 800; font-size: 14px; margin: 0 0 12px; }
footer.site-footer a { color: #c9c2b2; text-decoration: none; }
footer.site-footer a:hover { color: var(--bg); }
footer.site-footer .legal { margin-top: 28px; padding-top: 18px; border-top: 1px solid #33302a; font-size: 12.5px; color: #837c6c; }

.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  background: var(--whatsapp); color: #fff; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -8px rgba(23,20,15,.45);
  text-decoration: none; font-size: 26px; transition: transform .15s;
}
.wa-float:hover { transform: scale(1.06); }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-card.featured { grid-column: span 2; }
  nav.main-nav { display: none; }
  footer.site-footer .wrap { grid-template-columns: 1fr; }
}
