/* =====================
   RESET / BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #111111;
}

/* =====================
   HEADER / NAV
===================== */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  z-index: 10;
}

.header nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
}

/* menu hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s ease;
}

/* =====================
   HERO
===================== */
.hero {
  height: 100vh;
  background-image: url('img/WhatsApp\ Image\ 2026-01-21\ at\ 17.57.29.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}


.hero-overlay {
  height: 100%;
  background: rgba(43, 43, 43, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.hero p {
  max-width: 800px;
  margin: 20px 0;
  color: #ddd;
}

/* =====================
   BOTÕES
===================== */
button,
.btn-google {
  background: #8c7a55;
  color: #fff;
  padding: 15px 35px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-google {
  border-radius: 30px;
  background: #111;
}

.btn-google:hover {
  background: #333;
}


/* =====================
   SEÇÕES
===================== */
.dark-section {
  background: #1f1f1a;
  color: #fff;
  padding: 100px 60px;
  text-align: center;
}
/* =====================
   CTA WHATSAPP – DARK SECTION
===================== */

.cta-whatsapp {
  display: inline-block;
  margin-top: 15px;

  background-color: #25d366;
  color: #ffffff;

  padding: 16px 42px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}


.white-section {
  padding: 100px 60px;
  text-align: center;
}

/* =====================
   FAQ
===================== */
.blog-preview {
  background: #f9f9f9;
  padding: 80px 20px;
}

.blog-preview-container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-preview h2 {
  font-size: 2.2rem;
  margin: 10px 0 20px;
}

.blog-preview p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
}

.blog-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #b38b59;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

/* =====================
   ESPECIALIDADES / ÁREAS DE ATUAÇÃO
===================== */

.dark-section ul {
  list-style: none;
  max-width: 900px;
  margin: 50px auto 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
}

.dark-section li {
  position: relative;
  padding-left: 28px;
  text-align: left;

  font-size: 16px;
  line-height: 1.6;
}

.dark-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #8c7a55;
  font-weight: bold;
}


/* =====================
   LISTAS COM CHECK
===================== */
.dark-section ul {
  list-style: none;
}

.dark-section li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  text-align: left;
}

.dark-section li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8c7a55;
  font-weight: bold;
}


@media (max-width: 480px) {
  .grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}

/* =====================
   QUEM SOMOS
===================== */
.about-bg {
  position: relative;
  min-height: 90vh;
  background: url('img/quemsomos\ -\ Copy.jpeg') center / cover no-repeat;
  display: flex;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.189);
  display: flex;
  align-items: center;
  padding: 100px 60px;
}

.about-content {
  max-width: 600px;
  color: #fff;
}

.about-content h2 {
  font-size: 42px;
  margin: 15px 0;
}

.about-content p {
  line-height: 1.8;
  color: #e0e0e0;
}

/* =====================
   ÍCONES
===================== */
.icons {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.icon-item {
  max-width: 180px;
  text-align: center;
}

.icon-item i {
  font-size: 70px;
  margin-bottom: 15px;
}

/* =====================
   AVALIAÇÕES
===================== */
.avaliacoes-google {
  background: #f7f7f7;
  padding: 100px 20px;
}

.avaliacoes-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.avaliacoes-container h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #111;
}

.avaliacoes-container .subtitulo {
  color: #666;
  margin-bottom: 60px;
}

.cards-avaliacoes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.avaliacao-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  text-align: left;
}

.avaliacao-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar {
  width: 44px;
  height: 44px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.avaliacao-header strong {
  font-size: 16px;
  color: #111;
}

.estrelas {
  color: #f5b301;
  font-size: 13px;
  margin-top: 3px;
}

.avaliacao-card p {
  color: #444;
  line-height: 1.7;
  font-size: 15px;
}

/* =====================
   BOTÃO GOOGLE AVALIAÇÕES
===================== */

.btn-google-avaliacoes {
  display: block;
  width: fit-content;
  margin: 30px auto;

  padding: 14px 28px;
  border-radius: 28px;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}


.btn-google-avaliacoes:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}


/* RESPONSIVO */
@media (max-width: 900px) {
  .cards-avaliacoes {
    grid-template-columns: 1fr;
  }

  .avaliacoes-container h2 {
    text-align: center;
    font-size: 28px;
  }
}
  
/* =====================
   FALE CONOSCO
===================== */
.fale-conosco-section {
  background: #fff;
  padding: 100px 60px;
  text-align: center;
}

.fale-conosco-section h2 {
  font-size: 36px;
  margin: 20px 0 70px;
  color: #111;
}

.fale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 70px;
}

.fale-item {
  padding: 20px;
}

.fale-item i {
  font-size: 52px;
  color: #8c7a55;
  margin-bottom: 20px;
}

.fale-item h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
}

.fale-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.fale-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 16px 42px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.fale-btn:hover {
  background: #8c7a55;
  transform: translateY(-3px);
}

/* =====================
   RESPONSIVO
===================== */
@media (max-width: 900px) {
  .fale-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fale-conosco-section h2 {
    font-size: 28px;
  }
}


/* =====================
   CONTATO
===================== */
.contact-section {
  background: #000;
  color: #fff;
  padding: 100px 60px;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  margin: 20px 0 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.contact-item i {
  font-size: 36px;
  color: #8c7a55;
  margin-bottom: 15px;
}

.contact-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-item p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  background: #8c7a55;
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #a08c64;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  line-height: 1.6;
}

/* =====================
   RESPONSIVO CONTATO
===================== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section h2 {
    font-size: 28px;
  }
}


/* =====================
   WHATSAPP FIXO – PILL
===================== */
.whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 20px;

  background-color: #25d366;
  color: #ffffff;

  border-radius: 999px;
  text-decoration: none;

  font-size: 3rem; /* ~16px padrão */
  font-weight: 500;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  z-index: 999;
}


/* Hover discreto */
.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  .whatsapp {
    bottom: 16px;
    left: 16px;
    padding: 12px 14px;
    font-size: 14px;
  }
}


  .whatsapp::before {
    font-size: 18px;
  }


/* =====================
   ANIMAÇÕES
===================== */
@keyframes bgMoveSlow {
  0% { background-position: left; }
  50% { background-position: right; }
  100% { background-position: left; }
}

/* =====================
   RESPONSIVO
===================== */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.068);
    flex-direction: column;
    padding: 30px 0;
    text-align: center;
  }

  .nav.active { display: flex; }

  .about-overlay {
    padding: 80px 30px;
    justify-content: center;
    text-align: center;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

  .hero-overlay {
    padding: 80px 20px 60px;
  }

 .hero h1 {
  font-size: 20px; /* exemplo */
  line-height: 1.3;
  color: #fff;
}


  .hero p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }


@media (max-width: 480px) {
  .dark-section {
    padding: 70px 20px;
    text-align: center;
  }

  .dark-section ul {
    margin-top: 40px;
  }

  .dark-section li {
    font-size: 15px;
    line-height: 1.6;
  }
}
