:root{
  --azul:#00c8f5;
  --azul-escuro:#0298bd;
  --texto:#1f2937;
  --texto-suave:#5b6b75;
  --suave:#f4fbfd;
  --borda:#dceff4;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--texto);
  background:white;
}
.container{
  width:min(1120px, 92%);
  margin:auto;
}
.topo{
  background:white;
  border-bottom:1px solid var(--borda);
  position:sticky;
  top:0;
  z-index:50;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.logo{
  height:72px;
  width:auto;
}
.nav-links{
  display:flex;
  gap:24px;
  align-items:center;
}
.nav-links a{
  color:var(--texto);
  text-decoration:none;
  font-weight:600;
  font-size:15px;
}
.nav-links a:hover{color:var(--azul-escuro)}
.nav-acoes{display:flex;align-items:center;gap:14px}
.botao{
  display:inline-block;
  background:var(--azul);
  color:white;
  text-decoration:none;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(0,200,245,.22);
  border:none;
  cursor:pointer;
  text-align:center;
}
.botao:hover{background:var(--azul-escuro)}
.botao.secundario{
  background:white;
  color:var(--azul-escuro);
  border:1px solid var(--borda);
  box-shadow:none;
}
.botao.pequeno{padding:10px 16px;font-size:14px}
.botao.grande{font-size:18px}

/* HERO */
.hero{
  background:linear-gradient(135deg,#ffffff 0%,#eefbff 100%);
  padding:74px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:34px;
  align-items:center;
}
.selo{
  color:var(--azul-escuro);
  background:#e9faff;
  border:1px solid var(--borda);
  padding:8px 14px;
  border-radius:999px;
  font-weight:700;
  display:inline-block;
}
h1{
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.02;
  margin:22px 0 16px;
}
.hero p{
  font-size:19px;
  line-height:1.7;
  max-width:650px;
  color:var(--texto-suave);
}
.acoes{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.card-destaque{
  background:white;
  border:1px solid var(--borda);
  border-radius:28px;
  padding:32px;
  box-shadow:0 18px 45px rgba(0,80,110,.10);
}
.card-destaque h2{color:var(--azul-escuro);margin-top:0}
.card-destaque li{margin:12px 0}
.card-destaque ul{padding-left:22px}

/* SELOS DE CONFIANÇA */
.confianca{
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  justify-content:center;
  padding:34px 0;
  border-bottom:1px solid var(--borda);
}
.confianca .item{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:var(--azul-escuro);
  font-size:15px;
}
.confianca .item span.icone{font-size:22px}

/* SEÇÕES */
.secao{padding:70px 0}
.secao h2{
  font-size:34px;
  margin:0 0 10px;
}
.secao .subtitulo{
  color:var(--texto-suave);
  font-size:17px;
  margin:0 0 36px;
  max-width:680px;
}
.cabecalho-secao{text-align:center;margin:0 auto 36px;max-width:720px}
.cabecalho-secao h2{margin-bottom:10px}
.cabecalho-secao .subtitulo{margin:0 auto}

/* CARDS SERVIÇOS */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.cards article{
  border:1px solid var(--borda);
  border-radius:22px;
  padding:24px;
  background:white;
  transition:transform .2s ease, box-shadow .2s ease;
}
.cards article:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,80,110,.10);
}
.cards .icone{
  width:50px;
  height:50px;
  border-radius:14px;
  background:var(--suave);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:14px;
}
.cards h3{
  color:var(--azul-escuro);
  margin:0 0 8px;
  font-size:19px;
}
.cards p{line-height:1.6;color:var(--texto-suave);margin:0}

/* SOBRE */
.sobre-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:center;
}
.sobre-grid h2{margin-top:0}
.sobre-grid p{
  line-height:1.8;
  color:var(--texto-suave);
  font-size:17px;
}
.numeros{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:28px;
}
.numero{
  background:white;
  border:1px solid var(--borda);
  border-radius:18px;
  padding:20px;
  text-align:center;
}
.numero strong{
  display:block;
  font-size:30px;
  color:var(--azul-escuro);
}
.numero span{
  font-size:13px;
  color:var(--texto-suave);
}
.foto-sobre{
  background:linear-gradient(135deg,#e9faff,#ffffff);
  border:1px solid var(--borda);
  border-radius:28px;
  padding:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:320px;
}
.foto-sobre img{
  max-width:200px;
  width:100%;
  height:auto;
}

/* COMO FUNCIONA */
.passos{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.passo{
  background:white;
  border:1px solid var(--borda);
  border-radius:22px;
  padding:28px;
  position:relative;
}
.passo .num{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--azul);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:18px;
  margin-bottom:16px;
}
.passo h3{margin:0 0 8px;color:var(--azul-escuro)}
.passo p{margin:0;color:var(--texto-suave);line-height:1.6}

/* DEPOIMENTOS */
.depoimentos{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.depoimento{
  background:white;
  border:1px solid var(--borda);
  border-radius:22px;
  padding:26px;
}
.estrelas{color:#ffb02e;font-size:18px;margin-bottom:12px;letter-spacing:2px}
.depoimento p{
  color:var(--texto);
  line-height:1.7;
  font-style:italic;
  margin:0 0 16px;
}
.autor{
  display:flex;
  align-items:center;
  gap:12px;
}
.avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--azul);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}
.autor strong{display:block;font-size:14px}
.autor span{font-size:13px;color:var(--texto-suave)}

/* FAQ */
.faq{
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq details{
  background:white;
  border:1px solid var(--borda);
  border-radius:16px;
  padding:18px 22px;
}
.faq summary{
  font-weight:700;
  cursor:pointer;
  color:var(--azul-escuro);
  font-size:16px;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq summary::after{
  content:"+";
  font-size:24px;
  font-weight:400;
  color:var(--azul-escuro);
  transition:transform .2s ease;
}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq p{
  margin:14px 0 0;
  color:var(--texto-suave);
  line-height:1.7;
}

/* LOCALIZAÇÃO */
.localizacao-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:stretch;
}
.info-local{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.info-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:white;
  border:1px solid var(--borda);
  border-radius:18px;
  padding:18px;
}
.info-item .icone{
  width:44px;
  height:44px;
  border-radius:12px;
  background:var(--suave);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  flex-shrink:0;
}
.info-item h3{margin:0 0 4px;font-size:16px}
.info-item p{margin:0;color:var(--texto-suave);line-height:1.6;font-size:15px}
.mapa-wrap{
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--borda);
  min-height:380px;
  box-shadow:0 18px 45px rgba(0,80,110,.10);
}
.mapa-wrap iframe{
  width:100%;
  height:100%;
  min-height:380px;
  border:0;
  display:block;
}

/* CTA FINAL */
.clara{background:var(--suave)}
.contato{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.contato h2{margin-top:0}

/* WHATSAPP FLUTUANTE */
.whatsapp-flutuante{
  position:fixed;
  bottom:24px;
  right:24px;
  background:#25D366;
  color:white;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  text-decoration:none;
  box-shadow:0 10px 28px rgba(0,0,0,.22);
  z-index:60;
  transition:transform .2s ease;
}
.whatsapp-flutuante:hover{transform:scale(1.08)}

/* FOOTER */
footer{
  background:#102a33;
  color:white;
  padding:40px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:30px;
  margin-bottom:24px;
}
.footer-grid h3{margin:0 0 14px;font-size:16px;color:#bff4ff}
.footer-grid p, .footer-grid a{
  color:#cfe9ee;
  font-size:14px;
  line-height:1.8;
  text-decoration:none;
}
.footer-grid a:hover{color:white}
.footer-logo{
  height:48px;
  margin-bottom:12px;
  filter:brightness(0) invert(1);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:18px;
  text-align:center;
  font-size:13px;
  color:#9fc4cb;
}

/* MENU MOBILE */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:26px;
  cursor:pointer;
  color:var(--texto);
}

@media(max-width:980px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2,1fr)}
  .sobre-grid{grid-template-columns:1fr}
  .foto-sobre{order:-1;min-height:220px}
  .passos{grid-template-columns:1fr}
  .depoimentos{grid-template-columns:1fr}
  .localizacao-grid{grid-template-columns:1fr}
  .mapa-wrap{min-height:300px}
  .footer-grid{grid-template-columns:1fr}
}

@media(max-width:820px){
  .cards,.contato{grid-template-columns:1fr}
  .nav{gap:12px}
  .logo{height:58px}
  .nav-links{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:white;
    flex-direction:column;
    padding:18px;
    border-bottom:1px solid var(--borda);
    box-shadow:0 12px 24px rgba(0,0,0,.06);
  }
  .nav-links.aberto{display:flex}
  .menu-toggle{display:block}
  .cards{grid-template-columns:1fr}
  .numeros{grid-template-columns:1fr}
}
