:root{
  --green:#0c6835;
  --green-dark:#084c27;
  --green-deep:#063b1e;
  --gold:#d0ae6e;
  --gold-dark:#b88f4e;
  --cream:#f8f1e4;
  --page-gray:#e2e2e2;
  --white:#ffffff;
  --text:#233028;
  --muted:#5b6a62;
  --shadow-lg:0 22px 55px rgba(5,39,20,.12);
  --shadow-md:0 14px 35px rgba(5,39,20,.09);
  --radius-lg:24px;
  --container:1220px;
  --header-height:84px;
  --font-base:"Roboto",Arial,sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{margin:0;font-family:var(--font-base);color:var(--text);background:var(--page-gray);overflow-x:hidden;}
img{display:block;max-width:100%;height:auto;}
a{color:inherit;text-decoration:none;}
button{cursor:pointer;border:0;font:inherit;}

.container{width:min(var(--container), calc(100% - 40px));margin:0 auto;}
.center-narrow{text-align:center;max-width:640px;margin:0 auto;}

/* HEADER */
.site-header{
  position:fixed;inset:0 0 auto 0;z-index:1000;height:var(--header-height);
  background:rgba(226,226,226,.96);backdrop-filter:blur(12px);
  box-shadow:0 1px 0 rgba(8,76,39,.06);
}
.header-inner{min-height:var(--header-height);display:flex;align-items:center;justify-content:space-between;gap:16px;}
.brand{display:inline-flex;align-items:center;width:142px;}
.brand-logo{width:142px;height:auto;}
.header-nav{display:flex;gap:10px;}

.btn{
  border-radius:999px;min-height:48px;padding:13px 22px;font-weight:900;
  display:inline-flex;align-items:center;justify-content:center;text-align:center;
  transition:transform .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn-gold{background:var(--gold);color:var(--green-deep);}
.btn-gold:hover{background:#dbbb81;}
.btn-green{background:var(--green);color:var(--white);}
.btn-green:hover{background:var(--green-dark);}
.btn-ghost{background:transparent;color:var(--white);box-shadow:inset 0 0 0 2px rgba(255,255,255,.28);}
.btn-ghost:hover{background:rgba(255,255,255,.08);}
.btn-outline-dark{background:transparent;color:var(--green-deep);box-shadow:inset 0 0 0 2px var(--green-deep);}
.btn-outline-dark:hover{background:rgba(6,59,30,.06);}

.menu-toggle{display:none;width:44px;height:44px;border-radius:14px;background:#eef1ed;
  flex-direction:column;align-items:center;justify-content:center;gap:5px;}
.menu-toggle span{width:20px;height:2px;background:var(--green-dark);border-radius:99px;transition:.2s ease;}
.menu-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.menu-toggle.is-active span:nth-child(2){opacity:0;}
.menu-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* HERO */
.hero{
  position:relative;overflow:hidden;color:var(--white);
  padding:calc(var(--header-height) + 40px) 0 60px;
  background:linear-gradient(135deg,#0a5a2e 0%,#0c6835 100%);
}
.hero::after{content:"";position:absolute;width:420px;height:420px;border-radius:50%;
  background:rgba(208,174,110,.06);top:-170px;right:-120px;pointer-events:none;}
.hero-inner{position:relative;z-index:2;max-width:760px;}
.hero-kicker{color:var(--gold);font-weight:900;font-size:.85rem;letter-spacing:.14em;text-transform:uppercase;margin:0 0 14px;}
.hero h1{margin:0;font-size:clamp(2.3rem,4.4vw,3.6rem);line-height:1.04;letter-spacing:-.04em;}
.hero h1 strong{color:var(--gold);font-style:normal;}
.hero p{margin:20px 0 0;color:rgba(255,255,255,.88);line-height:1.6;font-size:1.02rem;max-width:620px;}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px;}

.soon-badge{display:inline-flex;align-items:center;gap:8px;margin-top:26px;
  background:rgba(248,241,228,.14);border:1px solid rgba(208,174,110,.4);
  border-radius:999px;padding:9px 16px;font-size:.85rem;font-weight:700;color:var(--gold);}
.soon-badge::before{content:"●";color:var(--gold);animation:pulse 1.6s infinite;}
@keyframes pulse{0%,100%{opacity:1;}50%{opacity:.3;}}

/* SECTIONS */
.section{padding:64px 0;}
.section-cream{background:var(--cream);}
.section-light{background:var(--page-gray);}
.section-dark{background:var(--green-deep);color:var(--white);}
.section-intro{margin-bottom:30px;max-width:760px;}
.section-kicker{display:inline-block;margin-bottom:8px;color:var(--gold-dark);font-size:.76rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase;}
.section-intro h2, .quality-copy h2{margin:0;font-size:clamp(1.8rem,2.8vw,2.6rem);letter-spacing:-.03em;color:var(--green-deep);}
.section-intro p{margin:14px 0 0;color:var(--muted);line-height:1.6;}
.soon-title{margin:0;font-size:clamp(1.7rem,3vw,2.3rem);color:var(--green-deep);letter-spacing:-.03em;}
.soon-text{margin:14px 0 0;color:var(--muted);line-height:1.6;}

/* HISTÓRIA */
.history-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start;}
.history-grid p{margin:0 0 14px;color:var(--muted);line-height:1.65;font-size:.98rem;}
.history-grid p:last-child{margin-bottom:0;}

/* CARDS */
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.card{background:rgba(248,241,228,.98);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);padding:22px;}
.card h3{margin:0 0 8px;color:var(--green-deep);font-size:1.08rem;letter-spacing:-.01em;}
.card p{margin:0;color:var(--muted);line-height:1.5;font-size:.92rem;}
.card-index{width:38px;height:38px;border-radius:12px;display:grid;place-items:center;background:var(--gold);color:var(--green-deep);font-weight:900;margin-bottom:12px;}

/* DIFERENCIAIS */
.diff-list{display:grid;grid-template-columns:1fr 1fr;gap:12px 24px;padding:0;margin:0;}
.diff-list li{list-style:none;position:relative;padding-left:26px;color:rgba(255,255,255,.9);line-height:1.5;font-size:.95rem;}
.diff-list li::before{content:"✓";position:absolute;left:0;top:0;color:var(--gold);font-weight:900;}

/* CTA STRIP */
.cta-strip{background:var(--green);color:var(--white);padding:44px 0;}
.cta-strip-inner{display:flex;align-items:center;justify-content:space-between;gap:26px;flex-wrap:wrap;}
.cta-strip-copy h2{margin:0;font-size:clamp(1.6rem,2.4vw,2.2rem);letter-spacing:-.03em;}
.cta-strip-copy p{margin:8px 0 0;color:rgba(255,255,255,.85);}
.cta-strip-actions{display:flex;gap:12px;flex-wrap:wrap;}

/* FOOTER */
.site-footer{background:var(--green-deep);color:rgba(255,255,255,.8);padding:32px 0;}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;}
.footer-inner p{margin:0;font-size:.9rem;}
.footer-links{display:flex;gap:16px;font-size:.88rem;font-weight:700;}
.footer-links a:hover{color:var(--gold);}

@media (max-width:900px){
  .history-grid{grid-template-columns:1fr;}
  .grid-4{grid-template-columns:1fr 1fr;}
  .diff-list{grid-template-columns:1fr;}
  .menu-toggle{display:inline-flex;}
  .header-nav{
    display:none;position:fixed;left:14px;right:14px;top:78px;
    flex-direction:column;align-items:stretch;gap:8px;background:var(--page-gray);
    padding:16px;border-radius:20px;box-shadow:var(--shadow-lg);
  }
  .header-nav.is-open{display:flex;}
  .header-nav .btn{width:100%;}
}
@media (max-width:600px){
  .grid-4{grid-template-columns:1fr;}
  .cta-strip-inner{flex-direction:column;align-items:flex-start;}
  .hero-actions .btn{width:100%;}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{transition:none!important;animation:none!important;}
}
