/* =====================================
   RESET
===================================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

body{
  background:#ffffff;
  color:#1a1a1a;
  line-height:1.6;
  scroll-behavior:smooth;
}

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

a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block}


/* =====================================
   BOTÕES PADRÃO
===================================== */
button{
  cursor:pointer;
  border:none;
  border-radius:10px;
  padding:14px 28px;
  font-size:15px;
  font-weight:600;
  background:#003366;
  color:#fff;
  transition:all .3s ease;
}

button:hover{
  background:#0055aa;
  transform:translateY(-3px);
}


/* =====================================
   HEADER
===================================== */
.header{
  width:100%;
  background:#fff;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  box-shadow:0 3px 20px rgba(0,0,0,0.08);
}

.header-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo img{
  height:42px;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:28px;
  font-size:14px;
  font-weight:600;
}

.nav-links li a{
  transition:0.3s;
}

.nav-links li a:hover{
  color:#0055aa;
}

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:24px;
  height:3px;
  background:#003366;
  border-radius:2px;
}

/* MENU MOBILE POPUP */
@media(max-width:768px){

  .nav-links{
    display:none;
    position:fixed;
    top:85px;
    right:20px;
    width:240px;
    background:#fff;
    flex-direction:column;
    padding:28px;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,0.18);
    gap:22px;
    animation:fadeMenu .25s ease;
  }

  .nav-links.active{
    display:flex;
  }

  .hamburger{
    display:flex;
  }
}

@keyframes fadeMenu{
  from{opacity:0;transform:translateY(-8px);}
  to{opacity:1;transform:translateY(0);}
}


/* =====================================
   HERO
===================================== */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding-top:130px;
  margin-bottom:100px;
  flex-wrap:wrap;
}

.hero-text{
  flex:1;
  max-width:550px;
}

.hero-text h1{
  font-size:38px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero-text p{
  color:#555;
  margin-bottom:30px;
}

.hero-img{
  flex:1;
  position:relative;
}

.hero-img img{
  height:450px;
  width:100%;
  object-fit:cover;
  border-radius:18px;
}

.hero-img-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to left,rgba(255,255,255,0.1),rgba(255,255,255,0.95));
  border-radius:18px;
}


/* =====================================
   EXPERIÊNCIA
===================================== */
.cards{
  display:flex;
  justify-content:center;
  gap:60px;
  margin:100px 0;
  text-align:center;
}

.cards .card{
  background:#f9f9f9;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 35px rgba(0,0,0,0.05);
  transition:0.3s;
  min-width:220px;
}

.cards .card:hover{
  transform:translateY(-6px);
}

.cards h2{
  font-size:40px;
  color:#003366;
  margin-bottom:8px;
}


/* =====================================
   SERVIÇOS
===================================== */
.servicos{
  padding:100px 0;
}

.servicos h2{
  text-align:center;
  margin-bottom:60px;
  font-size:32px;
}

.servicos-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
}

.servico-card{
  background:#fff;
  padding:35px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.servico-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.servico-card img{
  height:180px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:18px;
}

.servico-card h3{
  margin-bottom:10px;
  color:#003366;
}


/* =====================================
   AVALIAÇÕES – NÍVEL AGÊNCIA
===================================== */
.prova{
  padding:110px 0 170px 0;
  background:#f8fafc;
}

.prova h2{
  text-align:center;
  margin-bottom:70px;
  font-size:32px;
}

.prova-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:40px;
}

/* CARD ESTRUTURADO */
.prova-item{
  background:#ffffff;
  padding:35px;
  border-radius:22px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
  transition:0.3s;
}

.prova-item:hover{
  transform:translateY(-6px);
}

/* HEADER DO REVIEW */
.review-header{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:15px;
}

/* FOTO ESTILO GOOGLE */
.prova-item img{
  width:52px;
  height:52px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  border:2px solid #fff;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* NOME + ESTRELAS */
.review-info{
  display:flex;
  flex-direction:column;
}

.review-info strong{
  font-size:15px;
  color:#003366;
}

.stars{
  color:#f5b301;
  font-size:14px;
  letter-spacing:2px;
  margin-top:3px;
}

.prova-item p{
  font-size:15px;
  color:#555;
  line-height:1.6;
  margin-top:10px;
}

.avaliar-btn{
  display:block;
  margin:70px auto 10px auto;
}

.aviso-avaliacao{
  text-align:center;
  font-size:13px;
  color:#777;
  margin-top:14px;
}

/* =====================================
   WHATSAPP FLUTUANTE
===================================== */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  width:60px;
  height:60px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
  z-index:9999;
  transition:all .3s ease;
}

.whatsapp-float:hover{
  transform:scale(1.08);
}

/* =====================================
   POPUP
===================================== */
.popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:2000;
}

.popup-content{
  background:#fff;
  padding:35px;
  border-radius:20px;
  width:90%;
  max-width:420px;
  position:relative;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.popup-content h3{
  margin-bottom:20px;
  color:#003366;
}

.popup-content input,
.popup-content textarea,
.popup-content select{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #ccc;
  border-radius:8px;
  font-size:14px;
}

.close-btn{
  position:absolute;
  top:12px;
  right:18px;
  font-size:22px;
  cursor:pointer;
}


/* =====================================
   FOOTER
===================================== */
.footer{
  background:#003366;
  color:#fff;
  text-align:center;
  padding:25px 0;
  margin-top:80px;
}


/* =====================================
   RESPONSIVO
===================================== */
@media(max-width:768px){

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-img img{
    height:300px;
  }

  .cards{
    flex-direction:column;
    gap:30px;
  }

  .review-header{
    align-items:center;
  }
}