@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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 */
.top-bar {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 8px 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid #333;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar-link:hover {
  color: #FDCB02;
}

.top-bar-btn {
  background-color: #FDCB02;
  color: #000000;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.3s;
}

.top-bar-btn:hover {
  background-color: #e5b802;
}

@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #FDCB02;
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  max-width: 120px;
}

.badge svg {
  width: 32px;
  height: 32px;
  fill: #FDCB02;
}

@media (max-width: 768px) {
  .trust-badges {
    gap: 20px;
  }
  .badge {
    font-size: 12px;
  }
}

.cabecalho {
  height: 60vh;
  background: url('../img/fundo-cabecalho.webp') 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: #FDCB02;
  font-family: var(--font)
}

.introducao__2 {
  font-family: var(--font);
  font-weight: 500;
  color: #CFCFCF;
  font-size: 24px;
}

.btn-whatsapp {
  background: #FDCB02; /* Vibrant Yellow from image */
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000 !important;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none !important;
  padding: 12px 30px;
  border-radius: 50px; /* Pill shape */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(253, 203, 2, 0.3);
  min-width: 280px; /* Garante tamanho igual */
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(253, 203, 2, 0.5);
  color: #000000 !important;
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: #000000;
}

.div-botoes {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn-phone {
  background: #FDCB02; /* Unified Yellow theme */
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000 !important;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none !important;
  padding: 12px 30px;
  border-radius: 50px; /* Pill shape */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(253, 203, 2, 0.3);
  min-width: 280px; /* Garante tamanho igual */
}

.btn-phone:hover {
  background: #e5b802;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(253, 203, 2, 0.5);
  color: #000000 !important;
}

.btn-phone svg {
  width: 24px;
  height: 24px;
  fill: #000000;
}


/*================== 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: grid;
  grid-template-columns: repeat(2, 340px);
  justify-content: center;
  gap: 20px;
  padding: 50px 20px;
}

.galeria-itens {
  width: 340px;
  height: 340px;
  border: 10px solid #FFF;
  box-shadow: 5px 5px 5px #0006;
  transition: transform .3s linear;
}

@media (max-width: 768px) {
  .galeria-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .galeria-itens {
    width: 90vw;
    height: 90vw;
    max-width: 340px;
    max-height: 340px;
  }
}

.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;
}

/* FAQ */
.faq {
  padding: 4rem 1.5rem;
  background-color: #121212;
}

.faq-titulo {
  text-align: center;
  font-size: 3rem;
  color: #eee;
  margin-bottom: 2rem;
  font-family: var(--font);
  font-weight: 800;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
  color: #ccc;
  font-family: var(--font);
}

.faq-answer p {
  padding-bottom: 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-question span {
  transition: transform 0.3s ease;
  font-size: 1.5rem;
}




  /* ============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 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-botoes {
  flex-direction: column;
  align-items: center;
  gap: 12px !important;
}

.footer-contato a{
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease-in-out;
}
.footer-contato a:hover{
  color: #209f10;
}
/* Mobile */

.btn-whatsapp-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #FDCB02;
  color: #000;
  text-decoration: none;
  font-weight: 800;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.btn-whatsapp-floating:hover {
  transform: scale(1.1);
  background: #e5b802;
  color: #000;
}

.btn-whatsapp-floating svg {
  fill: #000;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.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, .btn-phone {
    padding: 10px 20px;
    font-size: 18px;
    width: 100%; /* Mantém largura total no mobile para facilidade de toque */
    max-width: 280px; /* Unifica o tamanho máximo */
    min-width: 0;
  }
  
  .div-botoes {
    flex-direction: column; /* No mobile, empilhamos para manter o alinhamento central */
    align-items: center;
  }
  
  .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%;
}
  }

