/* ============================================================
   PRATIPET — CSS Global
   Cores: #0D2B1E (verde escuro), #EDEADE (creme), #C8E135 (verde limão), #2DB84B (verde médio)
   Font: Roboto (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

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

:root {
  --verde:       #0D2B1E;
  --creme:       #EDEADE;
  --limao:       #C8E135;
  --verde-medio: #2DB84B;
  --branco:      #FFFFFF;
  --texto:       #1A1A1A;
  --texto-muted: #666666;
  --borda:       rgba(13,43,30,0.12);
  --radius:      12px;
  --radius-sm:   6px;
  --radius-pill: 999px;
  --trans:       0.22s ease;
  --max-w:       1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--creme);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--creme);
  border-bottom: 1px solid var(--borda);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.navbar-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img { height: 36px; width: auto; }

.navbar-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--verde);
  transition: color var(--trans);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--limao);
  transition: width var(--trans);
}

.navbar-links a:hover { color: var(--verde-medio); }
.navbar-links a:hover::after,
.navbar-links a.ativo::after { width: 100%; }

/* ---- BOTÕES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  text-decoration: none;
  line-height: 1;
}

.btn-limao {
  background: var(--limao);
  color: var(--verde);
}
.btn-limao:hover { background: #b8d020; transform: translateY(-2px); }

.btn-verde {
  background: var(--verde);
  color: var(--creme);
}
.btn-verde:hover { background: #1a4a30; transform: translateY(-2px); }

.btn-outline-verde {
  background: transparent;
  border: 2px solid var(--verde);
  color: var(--verde);
}
.btn-outline-verde:hover { background: var(--verde); color: var(--creme); }

/* ---- ARROW ICON ---- */
.btn .arrow { font-size: 16px; transition: transform var(--trans); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- SEÇÕES ---- */
.section-wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde-medio);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--verde);
  line-height: 1.15;
}

.section-sub {
  font-size: 15px;
  color: var(--texto-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ---- WHATSAPP FLOAT ---- */
.whats-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--trans), box-shadow var(--trans);
}
.whats-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whats-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---- FOOTER ---- */
footer {
  background: var(--verde);
  color: rgba(255,255,255,0.8);
  padding: 56px 5% 28px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-logo { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color var(--trans); }
.footer-col ul a:hover { color: var(--limao); }

.footer-contato { display: flex; flex-direction: column; gap: 8px; }
.footer-contato p { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-contato a { color: rgba(255,255,255,0.7); transition: color var(--trans); }
.footer-contato a:hover { color: var(--limao); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- ÁREA DE IMAGEM DOS PRODUTOS ---- */
.prod-img-wrap {
  background: #EDEADE !important;
}
.prod-img-area {
  background: #EDEADE !important;
}

/* ---- ANIMAÇÃO ENTRADA ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visivel { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVO ---- */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .navbar-links .esconde-mobile { display: none; }
  section { padding: 40px 4%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whats-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
}
