*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:#1f2937;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1180px;
  margin:auto;
}

.topo{
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
  position:sticky;
  top:0;
  z-index:100;
}

.nav{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:24px;
  font-weight:800;
  color:#194165;
}

.btn-whatsapp{
  background:#25D366;
  color:#ffffff;
  padding:14px 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.btn-whatsapp:hover{
  transform:translateY(-3px);
}

.btn-whatsapp.grande{
  padding:16px 28px;
}

.btn-secundario{
  border:2px solid #194165;
  color:#194165;
  padding:14px 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
}

.hero{
  padding:90px 0;
  background:linear-gradient(135deg,#ffffff 0%,#f3f7fb 55%,#194165 55%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}

.tag{
  display:inline-block;
  background:#dbeafe;
  color:#194165;
  padding:8px 16px;
  border-radius:999px;
  font-weight:700;
  margin-bottom:20px;
}

.hero h1{
  font-size:52px;
  line-height:1.1;
  color:#194165;
  margin-bottom:24px;
}

.hero p{
  font-size:18px;
  margin-bottom:30px;
}

.hero-botoes{
  display:flex;
  gap:16px;
  margin-bottom:28px;
  flex-wrap:wrap;
}

.pontos{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.pontos span{
  background:#ffffff;
  border:1px solid #dbe4ec;
  padding:10px 14px;
  border-radius:14px;
  color:#194165;
  font-weight:700;
}

.hero-imagem{
  position:relative;
}

.hero-imagem img{
  width:100%;
  height:520px;
  object-fit:cover;
  object-position:center top;
  border-radius:30px;
}

.card-flutuante{
  position:absolute;
  left:-30px;
  bottom:30px;
  background:#ffffff;
  padding:22px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.especialidades{
  background:#194165;
  padding:90px 0;
}

.titulo{
  text-align:center;
  margin-bottom:50px;
}

.titulo span{
  color:#194165;
  font-weight:900;
  text-transform:uppercase;
}

.titulo h2{
  font-size:40px;
  color:#194165;
}

.titulo.claro span,
.titulo.claro h2{
  color:#ffffff;
}

.especialidades-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.especialidade{
  background:#ffffff;
  border-radius:26px;
  overflow:hidden;
}

.especialidade img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.especialidade h3{
  color:#194165;
  padding:24px 24px 10px;
}

.especialidade p{
  padding:0 24px 24px;
}

.sobre{
  padding:90px 0;
}

.sobre-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

.sobre-imagem img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:30px;
}

.sobre-texto span{
  color:#194165;
  font-weight:900;
}

.sobre-texto h2{
  font-size:42px;
  color:#194165;
  margin:10px 0 24px;
}

.sobre-texto ul{
  list-style:none;
  margin-bottom:30px;
}

.sobre-texto li{
  padding:12px 0;
  border-bottom:1px solid #e5e7eb;
  font-weight:700;
}

.sobre-texto li::before{
  content:"✓ ";
  color:#25D366;
}

.avaliacoes{
  padding:90px 0;
  background:#f6f9fc;
}

.avaliacoes-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.avaliacao-card{
  background:#ffffff;
  border-radius:24px;
  padding:28px;
}

.estrelas{
  color:#fbbc04;
  font-size:22px;
  margin-bottom:16px;
}

.avaliacao-card p{
  margin-bottom:20px;
}

.avaliacao-card strong{
  color:#194165;
}


.cta-final{
  background:#194165;
  color:#ffffff;
  text-align:center;
  padding:90px 0;
}

.cta-final h2{
  font-size:42px;
  margin-bottom:16px;
}

.cta-final p{
  margin-bottom:28px;
}

footer{
  background:#0f2b44;
  color:#ffffff;
  padding:36px 0;
}

.footer-grid{
  display:flex;
  justify-content:space-between;
}

.whatsapp-fixo{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#25D366;
  color:#ffffff;
  padding:16px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
}

@media(max-width:900px){

  .hero{
    background:#ffffff;
  }

  .hero-grid,
  .especialidades-grid,
  .sobre-grid,
  .avaliacoes-grid,
  .galeria{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:38px;
  }

  .nav{
    flex-direction:column;
    height:auto;
    gap:14px;
    padding:18px 0;
  }

  .footer-grid{
    flex-direction:column;
    gap:20px;
  }

}