


/* RESET */



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

body{
  font-family:'Inter',sans-serif;
  color:#333;
  background:#fff;
}

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

/* HEADER */
.header{
  position:fixed;
  width:100%;
  background:#fff;
  z-index:1000;
  border-bottom:1px solid rgba(0,0,0,0.08);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
}

.logo{
  height:45px;
}

/* MENU */
.menu{
  display:flex;
  gap:20px;
}

.menu a{
  color:#2f6f4f;
  text-decoration:none;
  font-weight:500;
  position:relative;
}

/* LINHA ANIMADA NO HOVER */
.menu a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  background:#2f6f4f;
  bottom:-5px;
  left:0;
  transition:.3s;
}

.menu a:hover::after{
  width:100%;
}

/* BOTÕES */
.btn{
  background:linear-gradient(90deg,#2f6f4f,#7ed957);
  color:#fff;
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  transition:.3s;
  display:inline-block;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(47,111,79,0.35);
}

/* HERO */
.hero{
  height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding-top:80px;
}

.video-bg{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}


.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  max-width:700px;
  color:#fff;
}

.hero h1{
  font-size:42px;
  line-height:1.2;
}

.hero p{
  margin-top:15px;
  line-height:1.6;
}

.hero-btn{
  margin-top:25px;
}

/* SEÇÕES */
.section{
  padding:100px 20px;
}

/* EMPRESA / DIFERENCIAIS */
.empresa-flex,
.diferenciais-flex{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.bg{
  background:#f8f8f8;
}

/* IMAGENS */
.hover-img img{
  width:100%;
  border-radius:12px;
  transition:.4s;
}

.hover-img:hover img{
  transform:scale(1.05);
}

/* TEXTOS */
p{
  text-align:justify;
  line-height:1.8;
  margin-top:15px;
}

h2{
  margin-bottom:20px;
  font-size:28px;
}

.verde{
  color:#2f6f4f;
}

/* ===== SERVIÇOS ===== */

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

/* CARD */
.servico{
  background:#fff;
  padding:20px;
  border-radius:12px;
  transition:.3s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  display:flex;
  flex-direction:column;
}

/* HOVER */
.servico:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(47,111,79,0.2);
}

/* IMAGEM */
.servico-img{
  width:100%;
  height:auto;
  max-height:200px;
  object-fit:contain;
  border-radius:12px;
  margin-bottom:15px;
  transition:.4s;
  display:block;
}

/* ZOOM */
.servico:hover .servico-img{
  transform:scale(1.03);
}

/* TÍTULO */
.servico h3{
  font-size:18px;
  margin-top:10px;
  min-height:50px;
}

/* BOTÃO */
.saiba-btn{
  margin-top:15px;
  font-size:14px;
  padding:8px 14px;
}

/* CONTATO */
form{
  display:flex;
  flex-direction:column;
  gap:15px;
  max-width:500px;
}

input,textarea{
  padding:12px;
  border-radius:6px;
  border:1px solid #ccc;
}



/* ANIMAÇÕES */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

.reveal-left{
  opacity:0;
  transform:translateX(-60px);
  transition:1s;
}

.reveal-right{
  opacity:0;
  transform:translateX(60px);
  transition:1s;
}

.reveal-left.active,
.reveal-right.active{
  opacity:1;
  transform:translateX(0);
}

/* RESPONSIVO */
@media(max-width:900px){
  .servicos-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .menu{
    gap:10px;
    
  }

  .logo{
    height:38px;
  }

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

  .empresa-flex,
  .diferenciais-flex{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .servicos-grid{
    grid-template-columns:1fr;
    gap: 40px; /* 🔥 espaçamento vertical correto */
  }

  .servico{
    margin: 0; /* 🔥 evita conflito */
  }
}
/* ===== MODAL CORRIGIDO ===== */
.modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  visibility:hidden;
  opacity:0;
  transition:.3s ease;
  z-index:2000;
}

.modal.active{
  visibility:visible;
  opacity:1;
}

/* FUNDO */
.modal-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.55);
}

/* CAIXA */
.modal-content{
  position:relative;
  background:#fff;
  padding:30px;
  border-radius:12px;
  max-width:600px;
  width:90%;
  box-shadow:0 25px 60px rgba(0,0,0,0.25);

  transform:translateX(-80px);
  opacity:0;
  transition:.4s ease;
}

.modal.active .modal-content{
  transform:translateX(0);
  opacity:1;
}

/* TEXTO */
#modal-text{
  margin-top:12px;
  line-height:1.5; /* 🔥 corrigido */
  text-align:justify;
  font-size:15px;
}

/* FECHAR */
.close{
  position:absolute;
  top:12px;
  right:18px;
  font-size:26px;
  cursor:pointer;
}

.close:hover{
  color:#2f6f4f;
}

/* BOTÕES */
.modal-content .btn{
  margin-top:20px;
}

.recolher{
  margin-top:10px;
  background:#ddd;
  color:#333;
}

.recolher:hover{
  background:#ccc;
}



.modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  visibility:hidden;
  opacity:0;
  transition:opacity .4s ease;
  z-index:2000;
}

.modal.active{
  visibility:visible;
  opacity:1;
}

/* OVERLAY BONITO */
.modal-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(4px);
  opacity:0;
  transition:opacity .4s ease;
}

.modal.active .modal-overlay{
  opacity:1;
}

/* CAIXA ENTRANDO DA ESQUERDA */
.modal-content{
  position:relative;
  background:#fff;
  padding:30px;
  border-radius:12px;
  max-width:600px;
  width:90%;
  box-shadow:0 25px 60px rgba(0,0,0,0.25);

  transform:translateX(-120px);
  opacity:0;
  transition:all .45s cubic-bezier(.25,.8,.25,1);
}

.modal.active .modal-content{
  transform:translateX(0);
  opacity:1;
}

/* SAÍDA SUAVE */
.modal.closing .modal-content{
  transform:translateX(-120px);
  opacity:0;
}

/* BOTÃO WHATSAPP MAIS BONITO */
.modal-content .btn{
  margin-top:20px;
  background:linear-gradient(90deg,#25d366,#128c7e);
}

/* RECOLHER */
.recolher{
  margin-top:10px;
  background:#eee;
  color:#333;
}

.recolher:hover{
  background:#ddd;
}

/* LOGO MAIOR */
.logo img{
  max-height: 80px;
  width: auto;
}


header .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

@media(max-width:768px){

  /* QUEBRA LAYOUT EM COLUNA */
  header .row{
    flex-direction:column;
    text-align:center;
  }

  /* LOGO CENTRALIZADO EM CIMA */
  .logodental{
    margin-bottom:10px;
  }

  .logodental img{
    max-height:70px;
  }

  /* TEXTO WHATSAPP CENTRAL */
  .fontedentista{
    text-align:center;
    margin-bottom:10px;
  }

  /* MENU CENTRALIZADO */
  .top-bar{
    text-align:center;
  }

  .top-bar-section ul{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
  }

}


/* ===== HEADER AJUSTADO ===== */

/* container do topo */
.fullcontainer .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* coluna do logo */
.logodental{
  display:flex;
  align-items:center;
}

/* LOGO GRANDE */
.logo img{
  height:90px;
  width:auto;
}

/* TEXTO DIREITA (whatsapp) */
.fontedentista{
  text-align:right;
}

/* MENU */
.top-bar{
  display:flex;
  justify-content:center;
}

.top-bar-section{
  width:100%;
}

.top-bar-section ul{
  display:flex;
  justify-content:center;
  gap:25px;
  list-style:none;
  padding:10px 0;
}

.top-bar-section li{
  display:inline-block;
}

.top-bar-section a{
  text-decoration:none;
  font-weight:500;
  color:#2f6f4f;
}

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

  /* TOPO EM COLUNA */
  .fullcontainer .row{
    flex-direction:column;
    text-align:center;
  }

  /* LOGO CENTRAL */
  .logo{
    justify-content:center;
    margin-bottom:10px;
  }

  .logo img{
    height:90px;
  }

  /* TEXTO CENTRAL */
  .fontedentista{
    text-align:center;
    margin-bottom:10px;
  }

  /* MENU EM COLUNA */
  .top-bar-section ul{
    flex-direction:column;
    gap:10px;
  }

}

.logo{
  height:90px;
  width:auto;
}


/* ===== HEADER RESPONSIVO CORRETO ===== */

@media(max-width:768px){

  .nav{     
    flex-direction:column;
    align-items:center;
    gap:10px;
  }

  .logo{
    height:70px;
  }

  .menu{
    justify-content:center;
    flex-wrap:wrap;
  }

  .header-btn{
    margin-top:10px;
  }

}

@media(max-width:768px){

  .container{
    width:95%;
  }

  .nav{
    width:100%;
  }

}


/* BLOCO WHATSAPP */
.whatsapp-header{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:15px;
}

/* ÍCONE */
.whatsapp-icon{
  width:20px;
  height:20px;
  fill:#25d366;
}

/* TEXTO */
.whatsapp-texto{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.numero{
  color:#25d366;
  font-weight:600;
  font-size:14px;
}

.frase{
  font-size:12px;
  color:#2f6f4f;
}

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

  .nav{
    flex-direction:column;
    align-items:center;
  }

  .whatsapp-header{
    margin:8px 0;
    justify-content:center;
  }

  .whatsapp-texto{
    align-items:center;
    text-align:center;
  }

}


.numero{
  color:#25d366;
}

.numero{
  color:#1f7a4d; /* verde mais elegante */
  font-weight:600;
  font-size:15px;
}

.frase{
  font-size:12px;
  color:#2e5f47;
}

@media(max-width:768px){

  .nav{
    flex-direction:column;
    align-items:center;
  }

  .whatsapp-header{
    margin:10px 0;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:5px;
  }

  .whatsapp-texto{
    align-items:center;
  }

}

.whatsapp-header{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:15px;
}

.whatsapp-texto{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}


.hero{
  position:relative;
  z-index:1;
}
@media(max-width:768px){

  .header{
    position:relative; /* evita sobreposição bugada */
  }

  .hero{
    margin-top:20px; /* empurra o conteúdo pra baixo */
  }

}

@media(max-width:768px){

  .hero-content h1{
    font-size:22px;
    line-height:1.3;
    padding:0 10px;
  }

  .hero-content p{
    font-size:14px;
    padding:0 10px;
  }

}

@media(max-width:768px){

  .logo{
    width:200px; /* ajuste fino aqui */
    height:auto;
  }

}

@media(max-width:768px){

  .whatsapp-texto{
    gap:6px; /* espaço entre número e frase */
    align-items:center;
  }

  .numero{
    font-size:16px;
    letter-spacing:0.5px;
  }

  .frase{
    font-size:13px;
    line-height:1.4;
  }

}

@media(max-width:768px){

  /* HEADER mais compacto */
  .header{
    padding:8px 0; /* antes provavelmente 15~20px */
  }

  /* NAV mais colado */
  .nav{
    gap:6px; /* reduz espaço entre logo / whats / menu */
  }

  /* LOGO menor */
  .logo{
    width:180px;
  }

  /* WHATSAPP mais compacto */
  .whatsapp-header{
    gap:5px;
    margin:4px 0;
  }

  .whatsapp-texto{
    gap:3px;
  }

  .numero{
    font-size:14px;
  }

  .frase{
    font-size:11px;
  }

  /* MENU mais compacto */
  .menu{
    gap:10px;
  }

  .menu a{
    padding:5px 8px;
    font-size:14px;
  }

  /* BOTÃO menor */
  .header-btn{
    padding:6px 12px;
    font-size:14px;
  }

}

@media(max-width:768px){

  .header{
    padding-top:0;
    padding-bottom:0;
  }

  .nav{
    margin-top:-40px;   /* puxa tudo pra cima */
    margin-bottom:-40px;
  }

}

@media(max-width:768px){

  .logo{
    margin-top:40px;
  }

}

/* mantém estrutura original */
.diferenciais-img{
  width:100%;
}

/* área visível */
.slider{
  width:100%;
  overflow:hidden;
  border-radius:12px;
}

/* trilho */
.slides{
  display:flex;
  transition:transform 0.8s ease-in-out;
}

/* imagens */
.slides img{
  width:100%;
  flex:0 0 100%;
  display:block;
  object-fit:cover;
}

html {
  scroll-behavior: smooth;
}

a, button {
  cursor: pointer;
}


.modal-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.modal-nav span {
  pointer-events: all;
  cursor: pointer;
  font-size: 28px;
  color: #999;
  padding: 10px 15px;
  transition: 0.3s;
  user-select: none;
}

.modal-nav span:hover {
  color: #00a859; /* seu verde */
  transform: scale(1.2);
}


.hero-content {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* quando ativar */
.hero-content.ativo {
  opacity: 1;
  transform: translateY(0);
}

.animar h2,
.animar p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animar.ativo h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.animar.ativo p:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.animar.ativo p:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}


.animar-servico {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.7s ease;
}

/* alterna direção automaticamente */
.animar-servico:nth-child(odd) {
  transform: translateX(-80px);
}

/* quando ativa */
.animar-servico.ativo {
  opacity: 1;
  transform: translateX(0);
}

/* delay progressivo (efeito cascata bonito) */
.animar-servico:nth-child(1).ativo { transition-delay: 0.1s; }
.animar-servico:nth-child(2).ativo { transition-delay: 0.2s; }
.animar-servico:nth-child(3).ativo { transition-delay: 0.3s; }
.animar-servico:nth-child(4).ativo { transition-delay: 0.4s; }
.animar-servico:nth-child(5).ativo { transition-delay: 0.5s; }
.animar-servico:nth-child(6).ativo { transition-delay: 0.6s; }

@media (max-width: 768px) {
  .animar-servico {
    transform: translateY(50px);
  }

  .animar-servico:nth-child(odd) {
    transform: translateY(50px);
  }
}

/* layout lado a lado */
.contato-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* form ocupa mais espaço */
.contato-form {
  flex: 1;
}

/* imagem */
.contato-img {
  flex: 1;
}

.contato-img img {
  width: 100%;
  border-radius: 12px;
}

/* inputs */
#form input,
#form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

/* textarea maior */
#form textarea {
  height: 140px;
  resize: none;
}

/* efeito verde elegante */
#form input:focus,
#form textarea:focus {
  border-color: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
  outline: none;
}

/* efeito ao digitar */
#form input:not(:placeholder-shown),
#form textarea:not(:placeholder-shown) {
  border-color: #2ecc71;
}

/* botão */
#form button {
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .contato-flex {
    flex-direction: column;
  }

  .contato-img {
    display: none;
  }
}

.contato-form h2,
.contato-form input,
.contato-form textarea,
.contato-form button {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.5s ease;
}

/* quando ativar */
.contato-form.ativo h2 { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }

.contato-form.ativo input:nth-of-type(1) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.contato-form.ativo input:nth-of-type(2) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.contato-form.ativo input:nth-of-type(3) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

.contato-form.ativo textarea { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.contato-form.ativo button { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }



/* SOMBRA SUAVE PADRÃO */
.sombra {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* SOMBRA MAIS FORTE (cards) */
.sombra-forte {
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}



.servico {
  border-radius: 12px;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.servico:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.contato-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.header {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.empresa-img img,
.contato-img img {
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: 0.4s;
}

.empresa-img img:hover,
.contato-img img:hover {
  transform: scale(1.03);
}

.btn {
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn {
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


.verde {
  position: relative;
}

.verde::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #00c853;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}


.overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.3)
  );
}

.section {
  transition: all 0.6s ease;
}

.section.ativo {
  transform: translateY(0);
  opacity: 1;
}

.section {
  transform: translateY(60px);
  opacity: 0;
}

.section {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.menu a {
  cursor: pointer;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #00c853;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.contato-form {
  backdrop-filter: blur(10px);
}


/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00c853, #00e676);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 999;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.whatsapp-float svg {
  width: 28px;
  fill: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}


/* BOTÃO TOPO */
.btn-topo {
  position: fixed;
  left: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 999;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.btn-topo:hover {
  transform: translateY(-3px) scale(1.1);
}


/* MOSTRAR BOTÕES */
.show {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999;

  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

/* Ícone */
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ANIMAÇÃO PULSANTE PREMIUM */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media(max-width:600px){
  .servicos-grid{
    grid-template-columns:1fr;
    row-gap: 25px; /* 🔥 apenas vertical */
    column-gap: 0; /* 🔥 garante que horizontal não muda */
  }

  .servico{
    margin: 0 !important; /* 🔥 força padrão e remove conflitos */
  }
}


@media(max-width:768px){
  /* Remove animação dos serviços no mobile */
  .animar-servico {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}


@media (max-width: 768px) {

  .fade-mobile {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity;
  }

  .fade-mobile.aparecer {
    opacity: 1;
  }

}


@media(max-width:768px){

  .animar-servico {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fade-mobile {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity;
  }

  .fade-mobile.aparecer {
    opacity: 1;
  }
    
    
 @media(max-width:768px)    {

        
        
        
        
  /* DESATIVA totalmente qualquer animação antiga */
  .animar-servico {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* ANIMAÇÃO NOVA */
  .fade-mobile {
    opacity: 0 !important;
   transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .fade-mobile.aparecer {
    opacity: 1 !important;
  }

}
    

    
/* ===== FOOTER PREMIUM ===== */

.footer {
  background: linear-gradient(135deg, #1f5f3b, #0f3d2a);
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}

/* CONTEÚDO CENTRAL */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

/* TEXTO ESQUERDA */
.footer-left {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 14px;
  opacity: 0.7;
}

/* BOTÃO WHATSAPP PREMIUM */
.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: linear-gradient(135deg, #25d366, #00e676);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

/* HOVER */
.btn-whatsapp-footer:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* ÍCONE */
.btn-whatsapp-footer .icon {
  width: 22px;
  height: 22px;
  fill: white;
}

/* TEXTO FINAL */
.footer-bottom {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

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

  .footer {
    height: auto;
    padding: 100px 20px;
  }

  .footer-left {
    position: static;
    text-align: center;
  }

  .footer-bottom {
    position: static;
    margin-top: 40px;
  }

}  
    
/* ===== CORREÇÃO FORÇADA DESKTOP ===== */

@media (min-width: 769px) {

  .footer {
    height: 600px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  .footer-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
    width: 100% !important;
  }

  .btn-whatsapp-footer {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
  }

}    
    
.footer,
.footer * {
  opacity: 1 !important;
  transform: none !important;
}
    
/* HERO VIDEO BASE */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* DESKTOP */
.video-desktop {
  display: block;
}

.video-mobile {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .video-desktop {
    display: none !important;
  }
  .video-mobile {
    display: block !important;
  }
}

/* OVERLAY */
.overlay {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5);
  z-index:1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
} 