:root{
  --bg:#f3f7fb;
  --bg-soft:#f8fbfe;
  --card:#ffffff;
  --card-2:#fdfefe;
  --text:#10213f;
  --muted:#66778f;
  --blue:#0f6ecf;
  --blue-dark:#0b5bb0;
  --blue-soft:#eaf3fc;
  --line:#d7e6f4;
  --shadow-sm:0 8px 20px rgba(14,31,68,.05);
  --shadow-md:0 14px 34px rgba(14,31,68,.08);
  --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(230,241,251,.8), transparent 35%),
    linear-gradient(180deg, #f4f8fc 0%, #f8fbfe 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(244,248,252,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(215,230,244,.85);
}

.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:#4b6078;
  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(15,110,207,.18);
}

.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 #c6ddf3;
  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,.9);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  color:#52667e;
  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{
  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{
  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, #edf5fd, #dcecff);
  color:var(--blue);
  font-size:1.6rem;
  font-weight:700;
  box-shadow:0 8px 20px rgba(15,110,207,.12);
  transition:.2s ease;
}

.icon-box:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(15,110,207,.18);
}

.service-card h3{
  margin:0;
}

.service-card p{
  font-size:.97rem;
  line-height:1.7;
}

/* 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(15,110,207,.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(215,230,244,.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(15,110,207,.12);
  border-color:#8ebce8;
}

/* FOOTER */
.site-footer{
  padding:30px 0 38px;
  border-top:1px solid rgba(215,230,244,.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, #1a8f5d 0%, #167a50 100%);
  color:#fff;
  padding:14px 18px;
  border-radius:14px;
  font-weight:700;
  box-shadow:0 12px 24px rgba(26,143,93,.22);
}

/* RESPONSIVO */
@media (max-width:1100px){
  .menu{
    display:none;
  }

  .metrics-grid,
  .services-grid,
  .coverage-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .two-column,
  .contact-grid{
    grid-template-columns:1fr;
  }
}

@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{
    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;
  }
}
