/*  header EM celular */


@media (max-width: 900px) {
   
  
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
  }



  .waves {
      height: 40px;
      min-height: 40px;
    }
  
    
    .header {
      margin: 0; 
     padding-top: 15px;
      text-align: center;
      background: linear-gradient(
        60deg,
        rgba(84, 58, 183, 1) 0%,
        rgba(0, 172, 193, 1) 100%
      );
      color: white;
    }
    
   

    .logo {
      
      fill: white;
      display: inline-block;
      vertical-align: middle;
      font-family: var(---fonte1);
      font-weight: 900;
  }
  
  .ctrHeader {
      margin-left: 100px !important;
      color: white;
      background-color: #00B48F;
      border-radius: 30px;
      border: none;
      width: 120px;
      height: 38px;
      font-weight: 700;
      font-size: 15px;
  }
  
    .ctrHeader:hover{
      background-color: #ffffff;
      border: 2px solid #00B48F ;
      color:#00B48F;
      cursor: pointer;
      scale: 1;
      transition: 1s;
    }
  
  
    
    .inner-header {
      height: 10vh;
      width: 90vw; /* Define a largura para 90% da largura da tela */
     /* Define uma largura máxima para o elemento */
      margin: 0 auto;
      padding: 0;
    }
    
    .flex {
      /*Flexbox for containers*/
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    }

/*  main EM celular */
@media (max-width: 900px) {
  
    .h1PrincipalMain{
        
        font-size: 30px;
        margin-left: 15px;
        margin-right: 15px;
        font-weight: 900;
        
    }

    p.p2{
        margin-left: 20px;
        margin-right: 20px;
        font-size: 15px;
        line-height: 1.6;
        color: rgba(49, 49, 49, 0.932);
        font-weight: 500;
        font-size: 14px;
    
    }

    p.p3{
      font-size: 14px;
      margin-top: -30px;
    }

    p.sitesProfissionais{

        margin-top: 30px;
        font-size: 13px;
        margin-bottom: -2px;
    }


    button.CTR{
        width: 240px ;
        height: 55px;
    }

    .estrelas label i.fa{
        font-size: 0.7em;
        margin-top: -100px;
      }
}



/*  COMO*/
@media (max-width: 1100px) {
  section.especiliadades {
    
      width: 100%; /* Garante que ocupe 100% da largura */
      padding: 40px 5vw;
      background: linear-gradient(to top, #1C87BE 15%, white 15%);
  }

  .especiliadades .flex {
      flex-direction: column;
      align-items: center;
      justify-content: center; /* Garante o alinhamento central */
      gap: 20px; /* Define um espaçamento entre os elementos */
  }

  .especiliadades .especialidades-box {
      width: 90%; /* Garante que a caixa ocupe uma boa parte da largura no mobile */
      height: auto; /* Ajusta a altura automaticamente */
      padding: 20px;
      margin-top: 20px;
      text-align: center; /* Centraliza o conteúdo dentro da caixa */
  }
  
  h2.titulo {
      font-size: 20px; /* Ajusta o tamanho do título no mobile */
  }
}


/*  DEPOIMENTOS*/
@media (max-width: 1100px) {
  .especiliadades .interface {
      width: 90%;
      margin: 0 auto;
  }

  .especiliadades .interface .titulo {
      font-size: 23px;
      margin-bottom: 10px; 
  }

  .flex {
      display: flex; /* Certifique-se de que a classe 'flex' é um contêiner flex */
      flex-wrap: wrap; /* Para que as caixas possam se ajustar em telas menores */
  }

  .especialidades-box {
      flex: 1;
      text-align: center;
      margin-bottom: -35px !important;
      min-height: 250px; /* Use min-height para garantir que a altura mínima seja aplicada */
      background-color: white; /* Fundo branco */
      border-radius: 8px; /* Opcional: bordas arredondadas */
      padding: 20px; /* Opcional: espaço interno */
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Opcional: sombra */
  }

  .especialidades-box h3 {
      margin-top: 10px;
      font-size: 22px !important; 
  }

  .especialidades-box p {
      font-size: 18px !important; 
  }
}




/*  PITH*/
@media (max-width: 1100px) {
  
div.ctr{
  margin: 0; /* Remove qualquer margem */
  padding: 20px; /* Ajuste o padding conforme necessário */
  width: 100%; /* Garante que ocupe toda a largura disponível */
  box-sizing: border-box; /* Garante que padding seja incluído na largura */

}



  div.caixaCtr{
    height: 780px;
   width: 345px;
   border: none;
  }
}


@media (max-width: 900px) {

.precos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
  width: 100%; /* Define a largura total */
}

.caixaPreco {
  width: 300px; /* Ajuste a largura conforme necessário */
  margin: 20px 0; /* Adiciona espaçamento entre as caixas de preço */
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Ajuste do texto de preços */
h2.tituloPreco {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

p.descricaoPreco {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

button.btnComprar {
  width: 100%;
  max-width: 200px; /* Limita o tamanho do botão */
  padding: 10px;
  background-color: #002fff;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
}

button.btnComprar:hover {
  background-color: #ffffff;
  border: 2px solid #002fff;
  color: #002fff;
  transition: 0.3s;
}
}


@media screen and (max-width: 1000px) {
section.WhastApp {
  padding: 50px 30px; /* Ajusta o padding */
}
section.WhastApp .quadro {
  flex-direction: column;
  text-align: center;
  width: 100%;
}
section.WhastApp .quadro .imagem {
  max-width: 120px;
}
section.WhastApp .quadro .texto {
  align-items: center;
  text-align: center;
  padding: 20px 0 0 0; /* Mantém o padding superior */
}
section.WhastApp .quadro .texto p {
  max-width: 280px;
}
}

button.btnwpp {
margin-top: 10px;
background-color: rgb(0, 0, 0);
color: #5CF2AD;
border: 2px solid white;
border-radius: 20px;
padding: 10px;
text-align: center;
display: flex;
align-items: center; 
justify-content: center;
font-size: 16px;
}
