:root{
  --azul:#0d4252;
  --azul-escuro:#07333f;
  --verde:#88ad27;
  --verde-claro:#a4c63a;
  --texto:#173038;
  --muted:#68777b;
  --bg:#f5f7f5;
  --line:#dce4e0;
  --white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--texto);
  line-height:1.62;
}
a{color:inherit}
.wrap{
  width:min(calc(100% - 64px),1280px);
  margin-inline:auto;
}

/* HEADER */
header{
  background:#fff;
  border-bottom:1px solid #e6ece9;
}
.head{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
}
.brand img{
  display:block;
  width:210px;
  height:auto;
}
nav{
  display:flex;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}
nav a{
  text-decoration:none;
  font-size:.95rem;
  font-weight:600;
  color:#39525a;
}
nav a:hover{color:#6f9020}

/* HERO */
.hero{
  background:
    radial-gradient(circle at 82% 22%,rgba(136,173,39,.15),transparent 25%),
    linear-gradient(135deg,var(--azul-escuro),var(--azul));
  color:#fff;
}
.hero-grid{
  min-height:560px;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(380px,.85fr);
  gap:90px;
  align-items:center;
  padding:76px 0;
}
.hero-copy{
  max-width:720px;
}
.kicker{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:800;
  color:#cadc98;
  margin-bottom:16px;
}
h1{
  margin:0;
  font-size:clamp(3rem,5.2vw,5.2rem);
  line-height:.98;
  letter-spacing:-.045em;
}
.green{color:var(--verde-claro)}
.hero p{
  max-width:680px;
  margin:26px 0 0;
  color:#dce7e4;
  font-size:1.15rem;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:10px;
  background:var(--verde);
  text-decoration:none;
  font-weight:800;
  color:#14282f;
}
.btn.alt{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.3);
}
.hero-visual{
  min-height:390px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.hero-visual:before{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.06);
}
.hero-visual img{
  position:relative;
  z-index:1;
  display:block;
  width:310px;
  height:310px;
  object-fit:contain;
}

/* HOME CONTENT */
main{
  padding:78px 0 94px;
}
.intro{
  max-width:820px;
  margin-bottom:36px;
}
.intro h2{
  margin:0 0 12px;
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.14;
}
.intro p{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
}
.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.feature{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:30px;
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.num{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#eff4df;
  color:#6f9020;
  font-weight:900;
  margin-bottom:20px;
}
.feature h3{
  margin:0 0 9px;
  font-size:1.12rem;
}
.feature p{
  margin:0;
  color:var(--muted);
  font-size:.98rem;
}
.brandbar{
  margin-top:58px;
  background:var(--azul);
  border-radius:20px;
  padding:34px 42px;
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  gap:48px;
  align-items:center;
  color:#fff;
}
.brandbar img{
  width:250px;
  height:auto;
  display:block;
}
.brandbar p{
  margin:0;
  max-width:760px;
  color:#dce7e4;
  font-size:1.03rem;
}

/* INTERNAL PAGES */
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:52px 60px;
  max-width:1080px;
  margin:0 auto;
}
.page-title{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:6px;
}
.page-title img{
  width:64px;
  height:64px;
  object-fit:contain;
}
.page-title h1{
  font-size:clamp(2.2rem,3.8vw,3.7rem);
  color:var(--texto);
}
.meta{
  color:var(--muted);
  font-size:.92rem;
  margin:4px 0 30px 84px;
}
.card h2{
  font-size:1.32rem;
  margin:34px 0 10px;
}
.card p{margin:10px 0}
.card ul{padding-left:24px}
.note{
  margin:24px 0;
  padding:16px 18px;
  border-left:4px solid var(--verde);
  background:#f2f6e8;
  border-radius:8px;
}

/* FOOTER */
footer{
  background:var(--azul-escuro);
  color:#d7e2df;
}
.foot{
  min-height:118px;
  padding:24px 0;
  display:grid;
  grid-template-columns:200px 1fr auto;
  gap:34px;
  align-items:center;
}
.foot img{
  width:185px;
  height:auto;
  display:block;
}
.footlinks{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footlinks a{
  text-decoration:none;
  font-size:.9rem;
}
.copy{
  color:#aebfbb;
  font-size:.86rem;
}

/* TABLET */
@media (max-width:980px){
  .wrap{width:min(calc(100% - 44px),1080px)}
  .hero-grid{
    grid-template-columns:minmax(0,1fr) 300px;
    gap:50px;
  }
  .hero-visual{min-height:300px}
  .hero-visual:before{width:250px;height:250px}
  .hero-visual img{width:230px;height:230px}
  .brandbar{grid-template-columns:220px 1fr;gap:32px}
  .brandbar img{width:210px}
  .card{padding:42px}
}

/* MOBILE: mantém o comportamento aprovado */
@media (max-width:760px){
  .wrap{width:min(calc(100% - 30px),1080px)}
  .head{
    min-height:auto;
    padding:15px 0;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }
  .brand img{width:185px}
  nav{gap:14px}
  nav a{font-size:.88rem}

  .hero-grid{
    min-height:auto;
    grid-template-columns:1fr;
    gap:28px;
    padding:54px 0 58px;
  }
  .hero p{font-size:1.03rem}
  .hero-visual{
    min-height:auto;
    justify-content:flex-start;
  }
  .hero-visual:before{display:none}
  .hero-visual img{
    width:155px;
    height:155px;
  }

  main{padding:48px 0 64px}
  .grid{grid-template-columns:1fr;gap:16px}
  .feature{min-height:auto;padding:24px}
  .brandbar{
    margin-top:36px;
    grid-template-columns:1fr;
    gap:18px;
    padding:26px;
  }
  .brandbar img{width:190px}

  .card{
    padding:26px 22px;
    border-radius:16px;
  }
  .page-title{
    align-items:flex-start;
    gap:14px;
  }
  .page-title img{
    width:50px;
    height:50px;
  }
  .meta{margin-left:0}

  .foot{
    grid-template-columns:1fr;
    gap:16px;
    padding:28px 0;
  }
  .foot img{width:165px}
  .footlinks{justify-content:flex-start}
}