/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --green:       #4caf4f;
  --green-dark:  #388e3c;
  --green-tint:  #f1f9f1;   /* seções com leve identidade verde */
  --black:       #1a1a1a;
  --dark:        #111;
  --white:       #fff;
  --text:        #444;
  --text-muted:  #777;
  --border:      rgba(76,175,79,.18);
}

/* ===== TIPOGRAFIA GLOBAL ===== */
h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: .03em;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 12px;
}
h3 { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 14px; }
p  { line-height: 1.82; font-size: .9rem; color: var(--text); margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

/* Eyebrow — label verde antes do título de cada seção */
.eyebrow {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.green { color: var(--green); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
section    { padding: 96px 0; }

/* título de seção centralizado */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title .eyebrow { justify-content: center; }

/* ===== BOTÕES ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-green         { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover   { background: var(--green-dark); border-color: var(--green-dark); }
.btn-white         { background: #fff; color: var(--black); border-color: #fff; }
.btn-white:hover   { background: #e8f5e9; }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-white-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-group         { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-group.center  { justify-content: center; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  height: 68px;
  border-bottom: 3px solid var(--green); /* identidade verde */
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
}
.logo-img { height: 42px; width: auto; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: #0b1e0d;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 60px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 1;
}

/* conteúdo texto — alinhado à esquerda */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 0;
}
.hero-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  letter-spacing: .3em;
  margin-bottom: 20px;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 44px;
  line-height: 1.05;
  text-shadow: 0 4px 32px rgba(0,0,0,.35);
  max-width: 580px;
}
.hero-content .btn { padding: 16px 48px; font-size: .85rem; }

/* ===== FORMULÁRIO ===== */
/* ritmo: hero (escuro) → form (verde) — CTA imediato */
.form-section { background: var(--green); padding: 80px 0; }
.form-section .container { text-align: center; }
.form-section .eyebrow  { color: rgba(255,255,255,.7); }
.form-section h2 { color: #fff; margin-bottom: 10px; }
.form-section > .container > p {
  color: rgba(255,255,255,.82);
  margin: 0 auto 40px;
  max-width: 480px;
}
.kommo-form-wrap { max-width: 600px; margin: 0 auto; }

/* ===== QUEM SOMOS ===== */
/* ritmo: form (verde) → quem somos (branco) */
.quem-somos { background: #fff; }
.qs-img { width: 100%; border-radius: 14px; }
.col-right h3 { color: var(--green); font-size: .95rem; font-weight: 700; }

/* ===== VANTAGENS ===== */
/* ritmo: quem somos (branco) → vantagens (tint verde) */
.vantagens { background: var(--green-tint); }
.vant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vant-card {
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(76,175,79,.08);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.vant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(76,175,79,.16);
}
.vant-body { flex: 1; padding: 28px 22px; display: flex; flex-direction: column; justify-content: center; }
.vant-body h4 { color: var(--black); font-size: .82rem; font-weight: 900; letter-spacing: .07em; margin-bottom: 9px; }
.vant-body p  { color: var(--text-muted); font-size: .76rem; line-height: 1.65; margin: 0; }
.vant-icon {
  width: 72px;
  flex-shrink: 0;
  background: var(--green-tint);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.vant-icon svg { width: 30px; height: 30px; color: var(--green); }

/* ===== PRONTO PARA ===== */
/* ritmo: vantagens (tint) → pronto para (verde forte) — declaração da marca */
.pronto-para {
  background: var(--green);
  padding: 80px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px;
  overflow: hidden;
}
.pp-inner { flex-shrink: 0; }
.pp-label {
  font-size: .68rem;
  font-weight: 800;
  color: rgba(255,255,255,.6);
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pp-words { display: flex; flex-direction: column; }
.pp-words span {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.02;
  color: rgba(255,255,255,0.92);
  -webkit-text-stroke: 0;
}
.pp-products { display: flex; gap: 20px; align-items: flex-end; flex-wrap: wrap; justify-content: center; }
.pp-products img {
  height: 180px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.35));
  transition: transform .35s;
}
.pp-products img:hover { transform: scale(1.08) rotate(-2deg); }

/* ===== PRODUTOS ===== */
/* ritmo: pronto para (verde) → produtos (tint verde) */
.produtos { background: var(--green-tint); padding: 96px 0; }
.produtos-titulo { text-align: center; margin-bottom: 64px; }
.produtos-titulo h2 { color: var(--black); }
.produtos-titulo .eyebrow { color: var(--green); }
.categoria { margin-bottom: 72px; }
.categoria:last-child { margin-bottom: 0; }
.categoria-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.categoria-header h3 { color: var(--black); font-size: .88rem; font-weight: 900; letter-spacing: .16em; margin: 0; }

/* pill tabs */
.tamanhos { display: flex; gap: 8px; flex-wrap: wrap; }
.tam {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(76,175,79,.28);
  background: transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.tam-nome { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: .71rem; letter-spacing: .1em; color: rgba(0,0,0,.45); transition: color .2s; }
.tam-peso { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .67rem; color: rgba(0,0,0,.3); transition: color .2s; }
.tam.ativo { background: var(--green); border-color: var(--green); }
.tam.ativo .tam-nome, .tam.ativo .tam-peso { color: #fff; }
.tam:hover:not(.ativo) { border-color: var(--green); }
.tam:hover:not(.ativo) .tam-nome, .tam:hover:not(.ativo) .tam-peso { color: var(--black); }

/* produto cards */
.prod-track-wrap { overflow: hidden; }
.prod-track { display: flex; gap: 16px; transition: transform .35s ease; }
.prod-track.grid-3 { display: flex; gap: 16px; }
.prod-track.grid-3 .prod-card .p-img { height: 155px; object-fit: contain; padding: 12px; }
.prod-card {
  flex: 0 0 200px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform .22s, box-shadow .22s;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 330px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(76,175,79,.07);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(76,175,79,.18); }
.prod-card .p-img {
  width: 100%; height: 155px;
  object-fit: cover;
  background: #fff;
  padding: 0;
  flex-shrink: 0;
}
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 12px 12px;
}
.card-body h4 {
  color: var(--black);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 5px;
  flex-shrink: 0;
  line-height: 1.3;
}
.card-body p {
  color: var(--text-muted);
  font-size: .67rem;
  line-height: 1.55;
  margin: 0 0 5px;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.btn-veja {
  display: block;
  padding: 8px 0;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  transition: background .2s;
  margin-top: auto;
  flex-shrink: 0;
}
.btn-veja:hover { background: var(--green-dark); }
.identificador { display: block; font-size: .58rem; color: rgba(0,0,0,.3); padding: 0 0 5px; flex-shrink: 0; }
.badge-sl  { position: absolute; top: 9px; left: 9px; background: #1565c0; color: #fff; font-size: .56rem; font-weight: 800; padding: 4px 7px; border-radius: 4px; line-height: 1.2; text-align: center; z-index: 1; }
.badge-int { position: absolute; top: 9px; right: 9px; background: var(--green); color: #fff; font-size: .56rem; font-weight: 800; padding: 4px 7px; border-radius: 4px; line-height: 1.2; text-align: center; z-index: 1; }
.track-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.dots { display: flex; gap: 6px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(76,175,79,.25); cursor: pointer; transition: background .2s, transform .2s; }
.dot.active { background: var(--green); transform: scale(1.35); }
.arrows { display: flex; gap: 8px; }
.arrows button {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(76,175,79,.3);
  background: transparent;
  color: var(--black); font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s, color .2s;
}
.arrows button:hover { border-color: var(--green); background: var(--green); color: #fff; }

/* ===== PARCEIROS ===== */
/* ritmo: hero → parceiros (tint verde) — credibilidade logo no início */
.parceiros-esteira {
  background: var(--green-tint);
  padding: 56px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.esteira-titulo {
  text-align: center;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .3em;
  margin-bottom: 36px;
}
.esteira-wrap { overflow: hidden; position: relative; }
.esteira-wrap::before,
.esteira-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.esteira-wrap::before { left: 0; background: linear-gradient(to right, var(--green-tint), transparent); }
.esteira-wrap::after  { right: 0; background: linear-gradient(to left, var(--green-tint), transparent); }
.esteira-track { display: flex; gap: 32px; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.esteira-track:hover { animation-play-state: paused; }
.esteira-track img {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  padding: 14px 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  border: 1px solid rgba(76,175,79,.14);
  opacity: .92;
  filter: grayscale(.1);
  transition: opacity .25s, filter .25s, transform .25s, box-shadow .25s;
}
.esteira-track img:hover { opacity: 1; filter: grayscale(0); transform: scale(1.06); box-shadow: 0 6px 20px rgba(76,175,79,.2); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== NÚMEROS ===== */
/* ritmo: parceiros (dark) → números (branco) — respiro visual */
.numeros { background: #fff; padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  position: relative;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}
.num { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; line-height: 1; margin-bottom: 12px; display: block; }
.num.green { color: var(--green); }
.desc { font-size: .74rem; font-weight: 600; color: var(--text-muted); text-align: center; line-height: 1.55; max-width: 160px; }

/* ===== DEPOIMENTOS ===== */
/* ritmo: números (branco) → depoimentos (tint verde) */
.depoimentos { background: var(--green-tint); }
.depo-header { text-align: center; margin-bottom: 56px; }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.depo-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 28px 28px;
  position: relative;
  box-shadow: 0 2px 20px rgba(76,175,79,.07);
  border: 1px solid var(--border);
}
.depo-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 22px;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--green);
  font-family: Georgia, serif;
  opacity: .7;
}
.depo-card h4 { color: var(--black); font-weight: 900; font-size: .88rem; margin-bottom: 4px; }
.depo-cargo { display: block; font-size: .65rem; font-weight: 700; color: var(--green); letter-spacing: .07em; margin-bottom: 18px; }
.depo-card p { color: var(--text); font-size: .82rem; line-height: 1.78; margin: 0; }

/* ===== CTA DUPLO ===== */
/* ritmo: depoimentos (tint) → cta (branco) */
.cta-duplo { background: #fff; padding: 96px 0; }
.cta-item { text-align: center; max-width: 480px; }
.cta-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: var(--green-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cta-icon svg { width: 36px; height: 36px; color: var(--green); }
.cta-item h3 { font-size: 1.55rem; font-weight: 900; letter-spacing: .04em; color: var(--black); margin-bottom: 14px; }
.cta-item p { font-size: .88rem; color: var(--text); max-width: 340px; margin: 0 auto 28px; }
.dep-links { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.dep-links .btn { width: 100%; max-width: 260px; text-align: center; }

/* ===== MÍDIAS ===== */
/* ritmo: cta (branco) → mídias (branco) — continuidade */
.midias { background: #fff; padding: 80px 0; border-top: 1px solid rgba(76,175,79,.12); }
.midias-center { text-align: center; }
.midias-center h2 { margin-bottom: 10px; }
.midias-center > p { max-width: 520px; margin: 0 auto 48px; }
.social-cards { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 40px;
  border-radius: 16px;
  background: var(--green-tint);
  border: 2px solid transparent;
  color: var(--black);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  transition: all .22s ease;
  min-width: 130px;
}
.social-card svg { width: 34px; height: 34px; color: var(--green); transition: color .22s; }
.social-card:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(76,175,79,.28);
}
.social-card:hover svg { color: #fff; }

/* ===== DÚVIDA ===== */
/* ritmo: mídias (branco) → duvida (verde) — CTA final */
.duvida { background: var(--green); padding: 80px 0; text-align: center; }
.duvida h2 { color: #fff; margin-bottom: 14px; }
.duvida p { color: rgba(255,255,255,.82); margin: 0 auto 36px; max-width: 480px; }

/* ===== FOOTER ===== */
footer { background: var(--dark); padding: 64px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-logo-img { height: 42px; width: auto; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-info p { color: rgba(255,255,255,.38); font-size: .76rem; line-height: 1.9; margin: 0; }
.footer-fone { color: var(--green) !important; margin-top: 12px !important; font-weight: 700 !important; font-size: .82rem !important; }
.footer-social-col { display: flex; flex-direction: column; gap: 10px; }
.soc-icon { width: 40px; height: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s; }
.soc-icon:hover { border-color: var(--green); background: rgba(76,175,79,.18); }
.soc-icon svg { width: 18px; height: 18px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.footer-nav a { color: rgba(255,255,255,.4); font-size: .76rem; font-weight: 600; letter-spacing: .05em; transition: color .2s; }
.footer-nav a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.25); font-size: .72rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: underline; }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  background: #25d366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .22s, box-shadow .22s;
}
.whatsapp-fab:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,.6); }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ===== WA TOAST ===== */
#wa-toast {
  position: fixed;
  bottom: 96px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #1a1a1a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  font-size: .82rem; font-weight: 600;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .28s, transform .28s;
  z-index: 1100;
  max-width: 90vw; white-space: normal;
}
#wa-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
#wa-toast a {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== SCROLL DOTS (mobile) ===== */
.scroll-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.sdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(76,175,79,.22);
  cursor: pointer;
  transition: background .22s, transform .22s;
  flex-shrink: 0;
}
.sdot.active { background: var(--green); transform: scale(1.3); }


/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .depo-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social-col { flex-direction: row; flex-wrap: wrap; }
  .pp-products img { height: 140px; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  h2 { font-size: 1.5rem; }

  /* ── HERO MOBILE ── */
  .hero {
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
  }
  .hero-content { text-align: left; }
  .hero-content h1 { font-size: clamp(2rem, 10vw, 2.8rem); max-width: 100%; margin-bottom: 28px; }
  .hero-content .btn { display: inline-block; padding: 14px 36px; }
  .hf1, .hf2, .hf3 { display: none; }

  /* vantagens – scroll horizontal */
  .vant-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 14px;
    scrollbar-width: none;
  }
  .vant-grid::-webkit-scrollbar { display: none; }
  .vant-card { flex: 0 0 76vw; scroll-snap-align: start; }
  .vant-icon { width: 60px; }

  .pronto-para { padding: 40px 20px; flex-direction: row; align-items: center; gap: 16px; flex-wrap: nowrap; }
  .pp-inner { flex: 1 1 0; min-width: 0; }
  .pp-words span { color: rgba(255,255,255,.92); -webkit-text-stroke: 0px; font-size: clamp(1.4rem, 7vw, 2rem); }
  .pp-products { flex: 0 0 auto; width: 42vw; flex-direction: column; gap: 10px; align-items: center; flex-wrap: nowrap; justify-content: center; }
  .pp-products img { height: 90px; width: auto; mix-blend-mode: normal; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }

  .scroll-dots { display: flex; }

  .categoria-header { flex-direction: column; align-items: flex-start; }

  /* produtos – scroll nativo com dedo, 2 cards visíveis */
  .prod-track-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .prod-track-wrap::-webkit-scrollbar { display: none; }
  .prod-card { flex: 0 0 calc(50vw - 36px); height: 300px; scroll-snap-align: start; }
  .prod-card .p-img { height: 130px; object-fit: cover; padding: 0; background: #fff; }

  /* pão de queijo: grid 3 colunas, sem scroll horizontal */
  .prod-track-wrap:has(.grid-3) {
    overflow: visible;
    scroll-snap-type: none;
  }
  .prod-track.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .prod-track.grid-3 .prod-card { flex: unset; height: auto; min-height: 200px; scroll-snap-align: none; }
  .prod-track.grid-3 .prod-card .p-img { height: 100px; }


  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* depoimentos – scroll horizontal */
  .depo-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 14px;
    scrollbar-width: none;
    grid-template-columns: unset;
  }
  .depo-grid::-webkit-scrollbar { display: none; }
  .depo-card { flex: 0 0 83vw; scroll-snap-align: start; }

  .social-cards { gap: 12px; }
  .social-card { padding: 24px 28px; min-width: 100px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-social-col { flex-direction: row; flex-wrap: wrap; }
  .dep-links .btn { max-width: 100%; }
}

@media (max-width: 400px) {
  .tamanhos { gap: 6px; }
  .tam { padding: 8px 13px; }
  .tam-nome { font-size: .66rem; }
  .tam-peso { font-size: .61rem; }
}

/* ===== TELAS GRANDES (≥ 1440px — monitor wide / TV 720p) ===== */
@media (min-width: 1440px) {
  .container,
  .nav-container { max-width: 1360px; }

  section { padding: 112px 0; }

  .prod-card { flex: 0 0 230px; height: 355px; }
  .prod-card .p-img { height: 172px; }
  .card-body h4 { font-size: .78rem; }
  .card-body p  { font-size: .72rem; }
  .prod-track.grid-3 .prod-card { height: 355px; }
  .prod-track.grid-3 .prod-card .p-img { height: 172px; }

  .hero-content h1 { max-width: 700px; }
}

/* ===== TV FULL HD (≥ 1920px) ===== */
@media (min-width: 1920px) {
  .container,
  .nav-container { max-width: 1760px; }

  section { padding: 140px 0; }

  h2 { font-size: clamp(2.4rem, 2.5vw, 3.2rem); }
  h3 { font-size: 1.3rem; }
  p  { font-size: 1rem; line-height: 1.9; }

  header { height: 84px; }
  .logo-img { height: 52px; }

  .hero-content h1   { font-size: clamp(3.5rem, 4.2vw, 6.5rem); max-width: 960px; }
  .hero-eyebrow      { font-size: .9rem; letter-spacing: .35em; }
  .hero-content .btn { padding: 20px 64px; font-size: .95rem; }

  .prod-card { flex: 0 0 290px; height: 410px; }
  .prod-card .p-img { height: 215px; }
  .card-body h4 { font-size: .88rem; }
  .card-body p  { font-size: .78rem; }
  .btn-veja { font-size: .78rem; padding: 10px 0; }
  .prod-track.grid-3 .prod-card { height: 410px; }
  .prod-track.grid-3 .prod-card .p-img { height: 215px; }

  .vant-body h4 { font-size: .95rem; }
  .vant-body p  { font-size: .85rem; }
  .vant-icon { width: 90px; }
  .vant-icon svg { width: 38px; height: 38px; }

  .num { font-size: clamp(3rem, 3.5vw, 4.5rem); }
  .stats-grid { gap: 60px; }

  .form-section { padding: 140px 0; }
  .kommo-form-wrap { max-width: 760px; }

  .depo-grid { gap: 32px; }
  .depo-card { padding: 36px; }

  .pp-products img { height: 240px; }
  .arrows button { width: 48px; height: 48px; font-size: 1.7rem; }
  .dots .dot { width: 9px; height: 9px; }

  .esteira-track img { height: 100px; }
  .footer-grid { gap: 80px; }
}

/* ===== TV 4K (≥ 2560px) ===== */
@media (min-width: 2560px) {
  .container,
  .nav-container { max-width: 2300px; }

  section { padding: 180px 0; }

  h2 { font-size: 3.8rem; }
  p  { font-size: 1.2rem; }

  header { height: 100px; }
  .logo-img { height: 64px; }

  .hero-content h1 { font-size: 7rem; max-width: 1200px; }

  .prod-card { flex: 0 0 380px; height: 510px; }
  .prod-card .p-img { height: 270px; }
  .card-body h4 { font-size: 1rem; }
  .card-body p  { font-size: .9rem; }
  .prod-track.grid-3 .prod-card { height: 510px; }
  .prod-track.grid-3 .prod-card .p-img { height: 270px; }

  .num { font-size: 5rem; }
  .esteira-track img { height: 130px; }
  .pp-products img { height: 320px; }
}
