/* RESET */

body{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

*{
box-sizing:border-box;
}


/* HEADER */

.header{
width:100%;
position:fixed;
top:0;
left:0;
z-index:1000;
background:transparent;
transition:all .3s ease;
}

.header.scrolled{
background:rgba(255,255,255,0.9);
backdrop-filter:blur(10px);
}


/* CONTAINER */

.container-header{
max-width:1200px;
margin:auto;
padding:15px 20px;
display:flex;
align-items:center;
justify-content:space-between;
}


/* LOGO */

.logo img{
height:90px;
}


/* NAV DESKTOP */

.nav ul{
display:flex;
gap:30px;
list-style:none;
margin:0;
padding:0;
}

.nav a{
text-decoration:none;
color:#ffffff;
font-weight:500;
}

.header.scrolled .nav a{
color:#000000c2;
}


/* BOTÃO WHATSAPP DESKTOP */

.btn-whatsapp{
display:flex;
align-items:center;
gap:8px;

background:linear-gradient(
to bottom,
#165295 0%,
#629ec0 60%,
#e0f2f3 100%
);

color:white;
padding:10px 20px;
border-radius:8px;
text-decoration:none;
font-weight:500;
}

.btn-whatsapp img{
width:18px;
height:18px;
}


/* HAMBURGER */

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
}


/* MOBILE BTN */

.mobile-btn{
display:none;
}


/* OVERLAY */

.menu-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
opacity:0;
visibility:hidden;
transition:.3s;
z-index:900;
}

.menu-overlay.active{
opacity:1;
visibility:visible;
}



/* ======================== */
/* MOBILE */
/* ======================== */

@media (max-width:768px){

/* HEADER */

.header{
padding:10px 0;
}


/* LOGO */

.logo img{
height:60px;
object-fit:contain;
}


/* ESCONDE ELEMENTOS DESKTOP */

.desktop-btn{
display:none !important;
}


/* HAMBURGER */

.hamburger{
display:block;
font-size:30px;
cursor:pointer;
z-index:2000;
color:#adadad;
}


/* MENU MOBILE */

.nav{
position:fixed;
top:0;
left:-100%;
width:70%;
height:100vh;

background:linear-gradient(
to bottom,
#165295 0%,
#629ec0 60%,
#e0f2f3 100%
);

padding-top:120px;
transition:left .3s ease;
z-index:1500;
color: white;
}

.nav.active{
left:0;
}


/* NAV LIST */

.nav ul{
flex-direction:column;
gap:25px;
padding-left:30px;
color: white;
}


/* LINKS */

.nav a{
color:white;
font-size:18px;
}


/* BOTÃO MOBILE */

.mobile-btn{
display:block;
margin-top:20px;
}

.mobile-btn .btn-whatsapp{
display:flex;
align-items:center;
justify-content:center;
gap:8px;
background:#25D366;
color:white;
padding:12px;
border-radius:8px;
width:85%;
text-decoration:none;
}

.mobile-btn img{
width:18px;
}

.header.scrolled .nav a{
color:#fff;
}

}

.hero {
 
  background: url("img/capa1.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
   padding-top: 110px;
}


.hero h1 {
  font-size: 45px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}

.hero h1 span {
   background: linear-gradient(
    to bottom,
    #1f599a 0%,
    #92d3f9 60%,
    #91f9fe 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 25px;
  font-size: 20px;
  color: #ddd;
  max-width: 760px;
  margin-inline: auto;
}

/* BOTÕES */ 

.hero-buttons {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 20px;
}


.btn-pulse {
   background: linear-gradient(
    to bottom,
    #1f599a 0%,
    #61b9eb 60%,
    #91f9fe 100%
  );
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(45, 255, 251, 0.6);
  animation: glow 1.5s infinite alternate;
  transition: transform 0.1s ease;
}


.btn-pulse:hover {
  animation: blink 0.6s infinite;
  transform: scale(1.05);
}


@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(45, 164, 255, 0.5);
  }
  to {
    box-shadow: 0 0 25px rgba(45, 213, 255, 0.9);
  }
}


@keyframes blink {
  0% {
    opacity: 1;
    box-shadow: 0 0 25px rgba(45, 202, 255, 0.9);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 5px rgba(45, 160, 255, 0.2);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 25px rgba(45, 181, 255, 0.9);
  }
}

.btn-green {
  background: #1db954;
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.btn-green:hover {
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.8);
  transform: scale(1.05);
}


.btn-green img {
  width: 16px;
  height: 16px;
}


.mouse {
  position: absolute;
  bottom: 18px;              
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 20px;
  z-index: 10;
  pointer-events: none;
}



.mouse span {
  width: 5px;
  height: 10px;
  background: #fff;
  display: block;
  margin: 7px auto;
  border-radius: 5px;
  animation: scroll 1.4s infinite;
}


@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

.mobile-text {
  display: none;
}

@media (min-width: 1300px){

  .hero {
    height: 100vh;
    background: url("img/capa1.png") center/cover no-repeat;
    margin: 0;             
    border-radius: 0;     
    overflow: hidden;
  }


}

@media (max-width: 768px) {
  .desktop-text {
    display: none;
  }

  .mobile-text {
    display: inline;
  }
}


@media (max-width: 768px) {
  .hero {
    background: url("img/capa1-celular.png") center/cover no-repeat;
    margin: 0;             
    border-radius: 0;     
    overflow: hidden;
  }

  .hero::before {
    border-radius: 0;
  }

  .hero-content {
  margin-bottom: 90px; 
  padding: 140px 20px 0; 
}


  .hero h1 {
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 30px; 
}


  .hero p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 80px; 
}


 .hero-buttons {
  flex-direction: column;
  gap: 18px;        
  margin-top: 0;    
}


  .btn-pulse,
  .btn-green {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }

 
  .mouse {
    bottom: 16px;
  }

}

/*sobre*/

.estrela-dourada{
padding:100px 8%;
background:#fff;
}

.estrela-container{
display:flex;
align-items:center;
gap:60px;
max-width:1200px;
margin:auto;
}



/* TEXTO */

.estrela-texto{
flex:1;
}



.subtitulo{
color:#000;
font-weight:600;
display:block;
margin-bottom:10px;
}

.estrela-texto h2{
font-size:48px;
background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
margin-bottom:20px;
line-height:1.1;
}

.estrela-texto p{
font-size:17px;
color:#555;
margin-bottom:15px;
line-height:1.6;
max-width:520px;
}

/* BOTÃO */

.btn-estrela{
display:inline-block;
background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
color:#fff;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn-estrela:hover{
background:#0d2a45;
}

/* IMAGEM */

.estrela-imagem{
flex:1;
}

.estrela-imagem img{
width:100%;
border-radius:10px;
display:block;
}

.estrela-icone{
width:230px;
margin-bottom:15px;
display:block;
}

.animar{
opacity:0;
transition:all .9s ease;
}

.animar.ativo{
opacity:1;
transform:translateX(0) translateY(0);
}

/* DIREÇÕES INICIAIS */

.fade-up{
transform:translateY(40px);
}

.esquerda{
transform:translateX(-60px);
}

.direita{
transform:translateX(60px);
}

/* DELAYS */

.delay1{transition-delay:.2s;}
.delay2{transition-delay:.4s;}
.delay3{transition-delay:.6s;}
.delay4{transition-delay:.8s;}

/* RESPONSIVO */

@media(max-width:900px){

.estrela-container{
flex-direction:column;
text-align:center;
}

.estrela-texto p{
margin-left:auto;
margin-right:auto;
}

@media (max-width:768px){

.estrela-icone{
width:200px;
margin-left:auto;
margin-right:auto;
}

}

}

/*servicos*/

.servicos{

padding:100px 8%;
background:#f5f5f5;

}

.titulo-servicos{

text-align:center;
font-size:40px;
margin-bottom:60px;
background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.servicos-container{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1200px;
margin:auto;

}

/* CARD */

.servico-card{

background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:.4s;
opacity:0;
transform:translateY(40px);

}

.servico-card.ativo{

opacity:1;
transform:translateY(0);

}

.servico-card:hover{

transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.15);

}

.servico-img{

width:100%;
height:200px;
object-fit:cover;

}

.servico-conteudo{

padding:25px;

}

.servico-icon{

width:50px;
height:50px;
background:#ffffff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
margin-top:-50px;
margin-bottom:15px;

}

.servico-icon img{

width:26px;

}

.servico-conteudo h3{

font-size:20px;
margin-bottom:10px;

}

.servico-conteudo p{

font-size:15px;
color:#666;
margin-bottom:20px;

}

/* BOTÃO */

.btn-servico{

display:inline-block;
background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
color:white;
padding:10px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.btn-servico:hover{

background:#0d2a45;
;

}

/* RESPONSIVO */

@media(max-width:900px){

.servicos-container{

grid-template-columns:1fr;

}

}

/*diferenciais*/


.planejamento {
  background: url("img/capa2.png") center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.planejamento::before {
  content: "";
  position: absolute;
  inset: 0;
 
  z-index: 0;
}

.planejamento-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.planejamento h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
 background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.planejamento h2 {
  font-size: 2rem;
  font-weight: 700;
 background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 60px;
}

.planejamento-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.planejamento-card {
  background-color: #0e1b27ab; 
  color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  width: 260px;
  text-align: center;
  opacity: 0;
 
 
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}


.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.planejamento-card.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.planejamento-card:hover {
 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.planejamento-card img {
  width: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1); 
}
.planejamento-card h4 {
  font-size: 1rem;
 background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.planejamento-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
}

.btn-planejamento {
  margin-top: 50px;
}

.botao {
 background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.botao:hover {
  background-color: #e0ad4e69;
}


@media (max-width: 900px) {

    .planejamento {
  background: url("img/capa2-celular.png") center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

  .planejamento-container {
    flex-direction: column;
    align-items: center;
  }

  .planejamento h2 {
    font-size: 1.8rem;
  }

  .planejamento-card {
    width: 85%;
    margin-bottom: 20px;
  }

  .planejamento-card p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #fff;
}

.planejamento-card img {
  width: 60px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1); 
}
}

/*area de atendimentos*/

.areas{

padding:100px 8%;
background:#f5f5f5;
text-align:center;

}

.areas h1{

font-size:40px;
margin-bottom:10px;
 background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
  background-size: 300% 300%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.subtitulo{

color:#666;
margin-bottom:60px;

}

.areas-container{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
max-width:1200px;
margin:auto;
align-items:stretch;

}

/* MAPA */

.mapa-box{

background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);

display:flex;
flex-direction:column;


}

.mapa-titulo{

 background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
  
color:white;
padding:15px;
font-weight:600;

}

#map {
  width: 100%;
  flex: 1;
  min-height: 300px; 
}

/* LISTA */

.regioes-box{

background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);

}

.regioes-box h3{

margin-bottom:25px;

}

.regioes-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:15px;

}

.cidade{

padding:14px;
border-radius:10px;
background:#f2f2f2;
cursor:pointer;
transition:.3s;
font-weight:500;

}

.cidade:hover{

 background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
 color:#ffffff;
transform:scale(1.03);

}

.destaque{

 background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
  color: #fff;

}


.btn-area{

display:inline-block;
margin-top:30px;
 background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );

color:white;
padding:15px 30px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.btn-area:hover{

background:#4e7ca6;

}

/* RESPONSIVO */

@media(max-width:900px){

.areas-container{

grid-template-columns:1fr;

}

#map{

height:350px;

}

.regioes-grid{

grid-template-columns:1fr;

}

}

@media(max-width:900px){

.areas-container{
grid-template-columns:1fr;
}

.mapa-box{
order:2;
}

.regioes-box{
order:1;
}

  #map {
    height: 300px !important; 
    flex: unset !important; 
  }
}

/*forma de pagamento*/

.cta-vazamento{
  background: linear-gradient(
    to bottom,
    #165295 0%,
    #629ec0 60%,
    #e0f2f3 100%
  );
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.cta-container{
  max-width: 900px;
  margin: auto;
}

/* TITULO */

.cta-vazamento h2{
  font-size: 38px;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-vazamento p{
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* BOTÕES */

.cta-botoes{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:16px 30px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  font-size:16px;
  transition:all .3s ease;
}

.btn img{
  width:22px;
}

/* WHATSAPP */

.whatsapp{
  background:#25D366;
  color:white;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.whatsapp:hover{
  transform:translateY(-3px);
 box-shadow:0 12px 25px rgba(255, 254, 254, 0.25);
}

/* TELEFONE */

.telefone{
  background:#165295;
  color:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.telefone:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(255, 254, 254, 0.25);
}

/* FORMAS DE PAGAMENTO */

.formas-pagamento{
  margin-top:50px;
  padding:30px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.titulo-pagamento{
  font-weight:700;
  margin-bottom:20px;
  font-size:20px;
  color: #fff;;
}

/* PAGAMENTOS */

.pagamentos{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.pagamento{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:18px;
  color:#ffffff;
  font-weight:600;
}

/* ICONES */

.pagamento img{
  width:45px;
  animation:pulsar 2s infinite;
}

/* EFEITO PULSAR */

@keyframes pulsar{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.15);
  }
  100%{
    transform:scale(1);
  }
}

/* RESPONSIVO */

@media (max-width:768px){

.cta-vazamento{
  padding:60px 20px;
}

.cta-vazamento h2{
  font-size:28px;
}

.cta-vazamento p{
  font-size:16px;
}

.cta-botoes{
  flex-direction:column;
  align-items:center;
}

.btn{
  width:100%;
  max-width:320px;
  justify-content:center;
}

.pagamentos{
  flex-direction:column;
  gap:20px;
}

.formas-pagamento{
  padding:25px;
}

}

/*footer*/

.footer{
  background:#ffffff;
  color:#0d2b52;
  padding:80px 20px 25px;
  border-top:1px solid #e8e8e8;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
}

/* LOGO */

.footer-logo{
  width:110px;
  margin-bottom:18px;
}

.footer-col p{
  line-height:1.7;
  font-size:15px;
  color:#4b5b70;
}

/* TITULOS */

.footer-col h3{
  font-size:18px;
  margin-bottom:18px;
  font-weight:600;
  color:#0d2b52;
}

/* LINKS */

.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
  color:#4b5b70;
  cursor:pointer;
  transition:all .25s ease;
}

.footer-links li:hover{
  color:#165295;
  transform:translateX(4px);
}

/* ATENDIMENTO */

.footer-col p{
  margin-bottom:8px;
}

/* BADGE EXPERIÊNCIA */

.footer-col:last-child{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}

.footer-col:last-child h3{
  font-size:20px;
  line-height:1.4;
}

.footer-col:last-child::after{
  content:"✔ Profissionais especializados";
  margin-top:12px;
  font-size:14px;
  color:#4b5b70;
}

/* LINHA FINAL */

.footer-bottom{
  text-align:center;
  margin-top:50px;
  padding-top:20px;
  border-top:1px solid #e6e6e6;
  font-size:14px;
  color:#6b7a90;
}

/* RESPONSIVO */

@media (max-width:900px){

.footer-container{
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

}

@media (max-width:600px){

.footer-container{
  grid-template-columns:1fr;
  text-align:center;
}

.footer-col:last-child{
  align-items:center;
}

.footer-logo{
  margin:auto;
  margin-bottom:18px;
}

}

/* BOTÃO WHATSAPP FLUTUANTE */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
z-index:9999;
animation:pulse 2s infinite;
transition:0.3s;
}

.whatsapp-float img{
width:32px;
height:32px;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* EFEITO PULSAR */

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,0.7);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

@media (max-width:768px){

.whatsapp-float{
width:50px;
height:50px;
bottom:20px;
right:20px;
}

.whatsapp-float img{
width:24px;
height:24px;
}

}