:root{
  --bg:#eef7f2;
  --bg-soft:#f7fcf8;
  --card:#ffffff;
  --card-2:#fdfefe;
  --text:#163528;
  --muted:#5f786c;

  --blue:#2f7d57;
  --blue-dark:#1f5c3d;
  --blue-soft:#e4f3ea;
  --blue-deep:#17462f;

  --accent:#58b77b;
  --accent-soft:#edf8f1;

  --line:#d3e6d9;
  --shadow-sm:0 8px 20px rgba(23,70,47,.06);
  --shadow-md:0 16px 36px rgba(23,70,47,.10);

  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(circle at top left, rgba(228,243,234,.92), transparent 35%),
    linear-gradient(180deg, #eef7f2 0%, #f7fcf8 100%);
  color:var(--text);
}

a{
  text-decoration:none;
  color:inherit;
}

p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

h1,h2,h3{
  margin:0;
  line-height:1.08;
}

h1{
  font-size:clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing:-0.045em;
}

h2{
  font-size:clamp(1.9rem, 3.4vw, 3rem);
  letter-spacing:-0.03em;
}

h3{
  font-size:1.1rem;
  letter-spacing:-0.01em;
}

.container{
  width:min(1280px, calc(100% - 40px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(247,252,248,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(211,230,217,.9);
}

.nav{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  width:58px;
  height:58px;
  border-radius:16px;
  object-fit:cover;
  background:#fff;
  box-shadow:var(--shadow-sm);
  flex-shrink:0;
}

.brand-copy strong{
  display:block;
  font-size:1rem;
}

.brand-copy span{
  display:block;
  font-size:.9rem;
  color:var(--muted);
}

.menu{
  display:flex;
  align-items:center;
  gap:30px;
  color:#486457;
  font-weight:500;
}

.menu a{
  transition:.2s ease;
}

.menu a:hover{
  color:var(--blue);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 26px;
  border-radius:16px;
  border:1px solid transparent;
  font-weight:700;
  transition:.22s ease;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color:#fff;
  box-shadow:0 14px 28px rgba(47,125,87,.20);
}

.btn-outline,
.btn-light{
  background:#fff;
  border-color:var(--line);
  color:var(--text);
  box-shadow:var(--shadow-sm);
}

/* HERO */
.hero{
  padding:92px 0 74px;
}

.hero-inner{
  max-width:1080px;
  margin:0 auto;
  text-align:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:999px;
  background:var(--blue-soft);
  border:1px solid #cfe6d7;
  color:var(--blue);
  font-size:.94rem;
  font-weight:700;
  margin-bottom:24px;
}

.hero h1{
  max-width:980px;
  margin:0 auto;
}

.hero-text{
  max-width:900px;
  margin:26px auto 0;
  font-size:1.08rem;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:38px;
}

.hero-points{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:34px;
}

.hero-points span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  color:#4e685c;
  font-weight:600;
  font-size:.96rem;
}

/* SECTIONS */
.section{
  padding:90px 0;
}

.section-soft{
  background:rgba(255,255,255,.42);
}

.kicker{
  display:inline-block;
  color:var(--blue);
  font-size:.86rem;
  font-weight:800;
  letter-spacing:.14em;
  margin-bottom:12px;
}

.section-head{
  max-width:860px;
  margin:0 auto 42px;
}

.section-head.center{
  text-align:center;
}

.section-head h2{
  margin-bottom:14px;
}

.section-head p{
  max-width:760px;
  margin:0 auto;
}

/* METRICS */
.metrics{
  padding-top:0;
}

.metrics-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.metric-card{
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  border-radius:22px;
  padding:30px 26px;
  text-align:center;
  box-shadow:var(--shadow-sm);
}

.metric-card strong{
  display:block;
  margin-bottom:10px;
  font-size:1.05rem;
  color:var(--text);
}

/* CARDS GERAIS */
.service-card,
.feature-card,
.coverage-card,
.contact-card,
.form-card,
.service-detail-card,
.service-detail-visual,
.benefit-card{
  background:rgba(255,255,255,.95);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow-sm);
  transition:.25s ease;
}

.service-card:hover,
.feature-card:hover,
.coverage-card:hover,
.benefit-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}

/* SERVIÇOS */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.service-card{
  padding:32px 24px 28px;
  min-height:280px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
}

.icon-box{
  width:64px;
  height:64px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #edf8f1, #dff1e6);
  color:var(--blue);
  font-size:1.6rem;
  font-weight:700;
  box-shadow:0 8px 20px rgba(47,125,87,.12);
  transition:.2s ease;
}

.icon-box:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(47,125,87,.18);
}

.service-card p{
  font-size:.97rem;
  line-height:1.7;
}

/* SERVICE DETAILS */
.service-details{
  padding-top:30px;
}

.service-detail-row{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:stretch;
  margin-bottom:26px;
}

.service-detail-row.reverse{
  grid-template-columns:.8fr 1.2fr;
}

.service-detail-row.reverse .service-detail-card{
  order:2;
}

.service-detail-row.reverse .service-detail-visual{
  order:1;
}

.service-detail-card{
  padding:34px 30px;
}

.service-detail-icon{
  width:74px;
  height:74px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  margin-bottom:18px;
  background:linear-gradient(135deg, var(--blue-soft), #ffffff);
  border:1px solid #cfe6d7;
  box-shadow:0 10px 24px rgba(47,125,87,.10);
}

.service-detail-card h3{
  font-size:1.65rem;
  line-height:1.2;
  margin:8px 0 18px;
  color:var(--text);
}

.service-detail-card p{
  margin-bottom:14px;
  line-height:1.9;
}

.service-detail-card ul{
  margin:18px 0 0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.9;
}

.service-detail-card li{
  margin-bottom:8px;
}

.service-detail-visual{
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at top right, rgba(88,183,123,.12), transparent 35%),
    linear-gradient(180deg, #f7fcf8 0%, #edf7f0 100%);
}

.visual-box{
  width:100%;
  padding:28px;
  border-radius:22px;
  background:linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color:#fff;
  box-shadow:var(--shadow-md);
}

.visual-box strong{
  display:block;
  font-size:1.1rem;
  margin-bottom:12px;
}

.visual-box p{
  color:rgba(255,255,255,.88);
  line-height:1.8;
}

/* BENEFITS */
.benefits-section{
  padding-top:20px;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  align-items:stretch;
}

.benefit-card{
  padding:28px 24px;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-align:left;
  border-radius:22px;
  background:linear-gradient(180deg, #ffffff 0%, #f7fcf8 100%);
}

.benefit-icon{
  width:54px;
  height:54px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  background:linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color:#fff;
  font-weight:800;
  font-size:1.1rem;
  box-shadow:0 10px 20px rgba(47,125,87,.18);
}

.benefit-card h3{
  margin-bottom:12px;
  color:var(--text);
  font-size:1.15rem;
}

.benefit-card p{
  line-height:1.75;
  margin-top:auto;
}

/* DIFERENCIAIS */
.two-column{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:38px;
  align-items:start;
}

.content-column{
  padding-right:8px;
}

.content-column h2{
  margin-bottom:18px;
}

.content-column p + p{
  margin-top:18px;
}

.content-column strong{
  color:var(--blue);
}

.cards-column{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.feature-card{
  padding:28px 24px;
  text-align:center;
}

.feature-card.full{
  grid-column:1 / -1;
}

.feature-card h3{
  margin:0 0 12px;
}

.feature-card p{
  font-size:.96rem;
}

/* COBERTURA */
.coverage-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.coverage-card{
  padding:38px 26px 34px;
  text-align:center;
}

.circle-icon{
  width:62px;
  height:62px;
  margin:0 auto 18px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color:#fff;
  font-size:1.35rem;
  box-shadow:0 10px 24px rgba(47,125,87,.18);
}

.coverage-card h3{
  margin-bottom:10px;
}

/* CTA */
.cta-box{
  max-width:900px;
  margin:0 auto;
  text-align:center;
  padding:46px 34px;
  border-radius:28px;
  background:rgba(255,255,255,.95);
  border:1px solid var(--line);
  box-shadow:var(--shadow-md);
}

.cta-box h2{
  margin:8px 0 16px;
}

.cta-box p{
  max-width:720px;
  margin:0 auto 28px;
}

/* CONTATO */
.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
}

.contact-card,
.form-card{
  padding:32px;
}

.contact-card h2,
.form-card h2{
  margin:8px 0 22px;
}

.contact-list{
  display:grid;
  gap:18px;
}

.contact-list div{
  padding-bottom:16px;
  border-bottom:1px solid rgba(211,230,217,.9);
}

.contact-list div:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.contact-list strong{
  display:block;
  margin-bottom:6px;
  color:var(--text);
}

.form-card{
  display:grid;
  gap:16px;
}

.form-card label{
  display:grid;
  gap:8px;
  font-weight:600;
  color:var(--text);
}

input,
textarea{
  width:100%;
  font:inherit;
  color:var(--text);
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:15px 16px;
  transition:.2s ease;
}

input:focus,
textarea:focus{
  outline:2px solid rgba(47,125,87,.12);
  border-color:#8fc7a5;
}

/* FOOTER */
.site-footer{
  padding:30px 0 38px;
  border-top:1px solid rgba(211,230,217,.9);
  background:rgba(255,255,255,.45);
}

.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.footer-logo{
  width:54px;
  height:54px;
  border-radius:14px;
  object-fit:cover;
}

.footer-brand p,
.footer-links a{
  color:var(--muted);
}

.footer-links{
  display:grid;
  gap:8px;
}

/* WHATSAPP */
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  background:linear-gradient(180deg, #2f9e62 0%, #23794a 100%);
  color:#fff;
  padding:14px 18px;
  border-radius:14px;
  font-weight:700;
  box-shadow:0 12px 24px rgba(47,158,98,.22);
}

/* RESPONSIVO */
@media (max-width:1100px){
  .menu{
    display:none;
  }

  .metrics-grid,
  .services-grid,
  .coverage-grid,
  .benefits-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .two-column,
  .contact-grid,
  .service-detail-row,
  .service-detail-row.reverse{
    grid-template-columns:1fr;
  }

  .service-detail-row.reverse .service-detail-card,
  .service-detail-row.reverse .service-detail-visual{
    order:initial;
  }
}

@media (max-width:720px){
  .container{
    width:calc(100% - 24px);
  }

  h1{
    font-size:clamp(2.1rem, 10vw, 4rem);
  }

  .hero{
    padding-top:72px;
  }

  .metrics-grid,
  .services-grid,
  .coverage-grid,
  .cards-column,
  .benefits-grid{
    grid-template-columns:1fr;
  }

  .feature-card.full{
    grid-column:auto;
  }

  .hero-points{
    gap:12px;
    flex-direction:column;
  }

  .nav{
    min-height:78px;
  }

  .brand-logo{
    width:52px;
    height:52px;
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .service-detail-card,
  .service-detail-visual,
  .benefit-card,
  .contact-card,
  .form-card{
    padding:22px 18px;
  }

  .service-detail-card h3{
    font-size:1.3rem;
  }

  .service-detail-icon{
    width:62px;
    height:62px;
    font-size:1.6rem;
  }
}
.icon-box-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}