@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=DM+Serif+Display:ital@0;1&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:wght@900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Stack+Sans+Text:wght@200..700&display=swap');


:root {
  --secondary: #25D366;
  --dark: #111;
  --light: #fff;
  --radius: 16px;
  --font: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #121212;

}

h1, h2, h3, h4, p, li, a{
  caret-color: transparent;
}
/* HERO */
.cabecalho {
  height: 60vh;
  background: url('../img/fundo-cabecalho.jpg') center/cover no-repeat;
  position: relative;
}

.cabecalho-sobreposicao {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cabecalho-conteudo {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 0 1rem;
}

.cabecalho-logo {
  width: 300px;
  margin-bottom: 1rem;
}

.cabecalho-titulo {
  font-size: 3rem;
  font-family: var(--font);
  font-weight: 800;
}



.cabecalho-subtitulo {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: var(--font);
}

/* INTRO */
.introducao {
  text-align: center;
  padding: 4rem 1rem;
}

.introducao__1 {
  font-size: 3rem;
  font-weight: 800;
  color: #C0392B;
  font-family: var(--font)
}

.introducao__2 {
  font-family: var(--font);
  font-weight: 500;
  color: #CFCFCF;
  font-size: 24px;
}

.btn-whatsapp {
  margin-top: 2rem;
  background: var(--secondary);
  border: none;
  color: white;
  font-size: 24px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp img {
  height: 30px;
  width: 30px;
}


/*================== SERVIÇOS============== */
.servicos {
  padding-bottom: 50px;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* GRID RESPONSIVO */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */
.servicos-card {
  background: white;
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

/* HOVER SEM ESTOURAR TELA */
.servicos-card:hover {
  transform: translateY(-6px);
}

/* TEXTO */
.servicos-card h2 {
  font-family: var(--font);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  body{
    overflow-x: hidden;
  }
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}
.centro {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*=========GALERIA==========*/
.galeria {
  background-color: #181818;
  padding-top: 30px;
}

.galeria-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2vw;
  padding: 0 20px;
  padding-bottom: 50px;
  padding-top: 50px;
}

.galeria-itens {
  width: 340px;
  height: 340px;
  border: 10px solid #FFF;
  box-shadow: 5px 5px 5px #0006;
  flex-grow: 1;
  transition: transform .3s linear;
}

.galeria-itens img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeria-itens:hover {
  transform: scale(1.04);
}


.galeria h2 {
  font-size: 3rem;
  text-align: center;
  font-family: var(--font);
  font-weight: 800;
  color: #EAEAEA;
}




  /* ============AVALIAÇÕES=============== */

.reviews {
  padding: 2rem 1.5rem;
  padding-bottom: 80px;
  background-color: #252222;
  text-align: center;
}

.reviews-titulo {
  font-size: 3rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: #CFCFCF;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.review-card {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

/* FOTO */
.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  caret-color: transparent;
}

/* NOME */
.review-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000000;
}

/* ESTRELAS */
.stars {
  font-size: 1.1rem;
  color: #F39C12;
  margin-bottom: 1rem;
}

/*=========REDES SOCIAIS=========*/
.social {
  padding: 3rem 1rem;
  background-color: #201f1f;
  text-align: center;
}

.social p{
  font-size: 2rem;
  color: #ffff;
  margin-bottom: 50px;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}


.social-btn {
  display: inline-block;
  margin-top: 2rem;
  background: #000;
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: 0.3s;
}

.social__btn:hover {
  background: #333;
}

.social h2 {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 800;
  color: #EAEAEA;
}


/*========RODAPÉ===========*/
.footer {
  background: #5a5a5a;
  color: #ffffff;
  padding-bottom: 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}


.footer h4 {
  margin-bottom: 0.5rem;
}

.footer p {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-abaixo {
  border-top: 1px solid #333;
  text-align: center;
  padding: 1rem;

}

.footer-abaixo p{
  font-size: 1.3rem;
  color: #e4e4e4;
  font-family: var(--font);
  font-weight: 800;

}

.footer-contato a{
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease-in-out;
}
.footer-contato a:hover{
  color: #209f10;
}
/* Mobile */

.fixo {
  position: fixed;
  bottom: 20px;
  /* distância da parte inferior da janela */
  right: 20px;
  /* distância da borda direita da janela */
  z-index: 9999;
  /* garante que o botão fique sobre outros elementos */
}

.servicos .row {
  gap: 2rem;
}

/*============MEDIA QUERIE=========*/
@media (max-width: 768px) {

  .cabecalho-titulo{
    font-size: 1.8rem;
  }
  
  .cabecalho-subtitulo{
    font-size: 1.5rem;
  }

.introducao__1{
  font-size: 2rem;
}

.introducao__2{
  font-size: 1.5rem;
}

.servicos-card{
  margin: 1;
  padding: 0.1;
}

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
   .galeria-container .galeria-itens:nth-child(n+5) {
    display: none;
  }

  .footer-marca h3{
    font-size: 3rem;
    font-family: var(--font);
    font-weight: 800;
  }
  .footer p{
    font-size: 1.5rem;
    font-family: var(--font);
  }

  .footer-links h4{
    font-size: 3rem;
    font-weight: 800;
  }
  .footer-links a{
    font-size: 1.5rem;
    font-weight: 500;
  }
  .footer-contato h4{
    font-size: 3rem;
    font-weight: 800;
  }

  .footer-contato p{
    font-weight: 800;
  }

  .btn-whatsapp{
    padding: 9px 20px;
    font-size: 20px;
  }
  .btn-whatsapp{
      transition: opacity 0.3s ease;
  }
  .btn-whatsapp.hidden {
  opacity: 0;
  pointer-events: none;
  
}
body {
  background: #121212;
  overflow-x: hidden;
  max-width: 100%;
}
}

@media (max-width: 860px){
   .btn-whatsapp.hidden {
  opacity: 0;
  pointer-events: none;
   }
body {
  background: #121212;
  overflow-x: hidden;
  max-width: 100%;
}
  }

