:root{
  --verde:#174b35;
  --verde2:#2f7d5a;
  --verde3:#e7f2ec;
  --creme:#f6f3ea;
  --texto:#24312b;
  --branco:#ffffff;
  --amarelo:#f2c94c;
  --vermelho:#d9534f;
  --sombra:0 12px 28px rgba(0,0,0,.09);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--creme);
  color:var(--texto);
}

.container{
  width:min(1120px, 92%);
  margin:auto;
}

.site-header{
  background:linear-gradient(135deg,var(--verde),var(--verde2));
  color:white;
  padding:26px 0;
  border-bottom-left-radius:34px;
  border-bottom-right-radius:34px;
}

.header-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
}

.brand-logo{
  width:78px;
  height:78px;
  background:white;
  color:var(--verde);
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  font-weight:900;
  font-size:22px;
  box-shadow:var(--sombra);
  line-height:1;
}

.brand-logo span{
  font-size:26px;
}

.brand h1{
  margin:0;
  font-size:36px;
}

.brand p{
  margin:5px 0 0;
  opacity:.95;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:bold;
  margin-left:10px;
  padding:10px 15px;
  border-radius:22px;
  background:rgba(255,255,255,.14);
}

nav a.active,
nav a:hover{
  background:white;
  color:var(--verde);
}

.hero{
  margin:34px 0;
  background:white;
  border-radius:30px;
  padding:34px;
  box-shadow:var(--sombra);
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:28px;
}

.hero h2{
  color:var(--verde);
  font-size:34px;
  margin:0 0 14px;
}

.hero p{
  font-size:18px;
  line-height:1.5;
}

.arca-box{
  background:var(--verde3);
  border:2px solid #cfe7da;
  border-radius:28px;
  padding:28px;
  text-align:center;
}

.arca-icon{
  font-size:90px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  margin-bottom:28px;
}

.card{
  background:white;
  border-radius:24px;
  padding:24px;
  box-shadow:var(--sombra);
  border-top:8px solid var(--verde2);
}

.card h3{
  color:var(--verde);
  margin:0 0 10px;
}

.valor{
  font-size:34px;
  font-weight:900;
  margin:8px 0 12px;
}

.estado{
  display:inline-block;
  padding:8px 14px;
  border-radius:18px;
  font-weight:bold;
  color:white;
  font-size:14px;
}

.verde{background:var(--verde2)}
.amarelo{background:var(--amarelo); color:#4b3b00}
.vermelho{background:var(--vermelho)}

.barra{
  height:13px;
  background:#e8e8e8;
  border-radius:20px;
  overflow:hidden;
  margin-top:14px;
}

.barra span{
  display:block;
  height:100%;
  background:var(--verde2);
}

.panel{
  background:white;
  border-radius:26px;
  padding:26px;
  box-shadow:var(--sombra);
  margin-bottom:28px;
}

.panel h2{
  color:var(--verde);
  margin-top:0;
}

table{
  width:100%;
  border-collapse:collapse;
}

th,td{
  padding:14px;
  border-bottom:1px solid #eeeeee;
  text-align:left;
}

th{
  color:var(--verde);
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

ul{
  line-height:1.8;
}

.site-footer{
  margin-top:40px;
  padding:22px 0;
  background:#123728;
  color:white;
  text-align:center;
}

@media(max-width:850px){
  .header-grid,.hero{grid-template-columns:1fr; flex-direction:column; align-items:flex-start}
  .cards{grid-template-columns:1fr 1fr}
  .grid-2{grid-template-columns:1fr}
  nav a{display:inline-block;margin:6px 5px 0 0}
}

@media(max-width:560px){
  .cards{grid-template-columns:1fr}
  .brand h1{font-size:30px}
}
