body{
  background-color: #E6E3E1;
  font-family: "Poppins", sans-serif;
    
}

main{
  padding-top: 180px;
}

@font-face {
  font-family: "Batangas";
  src: url("../Fonts/Batangas\ Bold\ 700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Bebas";
  src: url("../Fonts/Bebas-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

.titulos_pagina_principal{
    font-family: "Batangas";
    font-weight: 700;
    font-size: 32px;
    margin: 0;
}

.white{
  color: #E6E3E1;
}

.black{
  color: black;
}

.textos_pagina_principal{
    font-size: 16px;
    font-weight: 500;
}

.btn-saiba-mais{
  background-color: #F58075;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: "Batangas";
  color: #E6E3E1;
  gap: 3rem;
  font-size: 1.5rem;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
  height: 50px;
  padding: 0;
  padding-left: 1rem;
  margin: 0;
  transition: transform 0.3s ease;

}

.btn-icone{
  background-color: #D9D9D9;
  margin: 0;
  padding: 0;
  height: 50px;
}

.btn-saiba-mais:hover{
  transform: scale(1.1)
}

.whatsapp-botao {
  display: flex;
  align-items: center;
  background-color: #4BAA2B;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  border-radius: 4px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: fit-content;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-botao:hover {
  transform: scale(1.03);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25);
}

.whatsapp-icone {
  background-color: #A0D849;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-texto {
  padding: 12px 16px;
  white-space: nowrap;
}

a{
  text-decoration: none;
  color: #E6E3E1;
  
}

@media screen and (max-width: 1024px){

   main{
    padding-top: 100px;
  }

  .btn-saiba-mais{
    font-size: 20px;
    gap: 2rem;
  }

}

@media screen and (max-width: 768px) {
  .whatsapp-botao {
    font-size: 16px;
  }

  .whatsapp-icone {
    padding: 10px;
  }

  .whatsapp-texto {
    padding: 10px 12px;
  }

 
}

@media screen and (max-width: 480px) {
  .whatsapp-botao {
    text-align: center;
  }

  .whatsapp-texto {
    white-space: normal;
  }
}

@media screen and (min-width: 1440px) {
  

 
}