/* ── Brasil Massas · Landing Page ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde:        #1A6B38;
  --verde-escuro: #0F4524;
  --verde-claro:  #EAF4EE;
  --amarelo:      #F0B429;
  --texto:        #111827;
  --muted:        #6B7280;
  --borda:        #E5E7EB;
  --bg:           #F9FAFB;
}

body {
  font-family: 'Sora', sans-serif;
  color: var(--texto);
  background: #fff;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--verde-escuro);
  padding: 0 24px; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 76px; width: auto; display: block; }
.nav-wpp {
  display: flex; align-items: center; gap: 7px;
  background: #25D366; color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: 6px; text-decoration: none;
}

/* ── HERO ── */
.hero {
  background: var(--verde-escuro);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; min-height: 88vh;
}
.hero-img {
  background-image: url('../images/priscila.jpg');
  background-size: cover; background-position: center 15%;
  order: 2;
}
.hero-content {
  padding: 64px 40px 64px 48px;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff; order: 1;
}

@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-img { order: 1; height: 300px; width: 100%; background-position: center 10%; }
  .hero-content { order: 2; padding: 36px 24px 48px; }
}

.hero-kicker {
  display: inline-block;
  background: rgba(240,180,41,.18);
  border: 1px solid rgba(240,180,41,.35);
  color: var(--amarelo);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.8px; margin-bottom: 16px; color: #fff;
}
.hero h1 em { font-style: normal; color: var(--amarelo); }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,.72);
  line-height: 1.65; margin-bottom: 36px; max-width: 400px;
}
.hero-cta-row { display: flex; flex-direction: column; gap: 10px; max-width: 320px; }

.btn-wpp {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: #25D366; color: #fff;
  font-weight: 700; font-size: 16px;
  padding: 15px 24px; border-radius: 10px; text-decoration: none;
}
.btn-outline {
  display: block; text-align: center;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.75);
  font-size: 14px; font-weight: 500;
  padding: 12px 24px; border-radius: 10px; text-decoration: none;
}

.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.chip {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  font-size: 12px; padding: 5px 12px; border-radius: 20px;
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }

/* ── PRODUTOS ── */
.produtos { padding: 72px 24px; background: var(--bg); }
.produtos-inner { max-width: 960px; margin: 0 auto; }

.section-kicker {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--verde); margin-bottom: 8px;
}
.section-title {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800; letter-spacing: -.3px;
  margin-bottom: 40px; line-height: 1.2;
}

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 700px) { .prod-grid { grid-template-columns: 1fr; } }

.prod-card {
  background: #fff; border: 1px solid var(--borda);
  border-radius: 14px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.prod-card img {
  width: 100%; height: 220px;
  object-fit: cover; object-position: center 20%; display: block;
}
@media (max-width: 700px) {
  .prod-card img { height: 340px; object-fit: contain; object-position: center; background: #f5f5f0; }
}
.prod-info { padding: 16px 18px 20px; }
.prod-info h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.prod-info p  { font-size: 13px; color: var(--muted); line-height: 1.5; }
.prod-tag {
  display: inline-block;
  background: var(--verde-claro); color: var(--verde-escuro);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; margin-top: 10px;
}

.produtos-cta { text-align: center; margin-top: 32px; }
.btn-wpp-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid #25D366; color: #25D366;
  font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 10px; text-decoration: none;
  transition: background .15s, color .15s;
}
.btn-wpp-outline:hover { background: #25D366; color: #fff; }
.btn-wpp-outline:hover svg { fill: #fff; }

/* ── BENEFÍCIOS ── */
.beneficios { padding: 72px 24px; background: #fff; }
.ben-header { max-width: 900px; margin: 0 auto 40px; text-align: center; }
.ben-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 700px) { .ben-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .ben-inner { grid-template-columns: 1fr; } }

.ben-card {
  background: var(--bg); border: 1px solid var(--borda);
  border-radius: 14px; padding: 24px 18px; text-align: center;
}
.ben-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.ben-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.ben-card p  { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── PÚBLICO ── */
.publico { background: var(--verde-escuro); padding: 60px 24px; text-align: center; color: #fff; }
.pub-kicker { font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--amarelo); margin-bottom: 10px; }
.pub-title  { font-size: clamp(22px, 3vw, 32px); font-weight: 800; }
.pub-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px;
  margin: 28px auto 32px; max-width: 680px;
}
.pub-pill {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.85);
  font-size: 14px; font-weight: 600;
  padding: 9px 18px; border-radius: 30px;
}

/* ── DEPOIMENTOS ── */
.depo { padding: 72px 24px; background: var(--bg); }
.depo-inner { max-width: 960px; margin: 0 auto; }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 700px) { .depo-grid { grid-template-columns: 1fr; } }

.depo-card { background: #fff; border: 1px solid var(--borda); border-radius: 14px; padding: 22px 20px; }
.stars { color: var(--amarelo); font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.depo-text { font-size: 14px; color: var(--muted); font-style: italic; line-height: 1.65; margin-bottom: 16px; }
.depo-author { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--borda); padding-top: 14px; }
.av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--verde); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.depo-author strong { display: block; font-size: 13px; font-weight: 700; }
.depo-author span   { font-size: 12px; color: var(--muted); }
.depo-tag {
  background: var(--verde-claro); color: var(--verde-escuro);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 10px; display: inline-block;
}

/* ── CTA FINAL ── */
.cta-final { background: var(--verde-escuro); padding: 80px 24px; text-align: center; color: #fff; }
.cta-final h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; letter-spacing: -.5px;
  line-height: 1.15; margin-bottom: 14px;
}
.cta-final h2 em { font-style: normal; color: var(--amarelo); }
.cta-final p {
  font-size: 16px; color: rgba(255,255,255,.65);
  margin-bottom: 32px; max-width: 440px;
  margin-left: auto; margin-right: auto; line-height: 1.6;
}
.cta-wpp-big {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-size: 18px; font-weight: 700;
  padding: 17px 40px; border-radius: 12px;
  text-decoration: none; margin-bottom: 12px;
}
.cta-disc { font-size: 13px; color: rgba(255,255,255,.4); }

/* ── FOOTER ── */
footer {
  background: #07301A;
  color: rgba(255,255,255,.4);
  text-align: center; padding: 20px 24px; font-size: 13px;
}
footer .footer-name { color: rgba(255,255,255,.6); font-weight: 600; margin-bottom: 4px; }

/* ── FLOATING WPP ── */
.float-wpp {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: #25D366;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none; transition: transform .2s;
}
.float-wpp:hover { transform: scale(1.08); }
