/* =====================
   RESET / BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #111111;
}

/* =====================
   HEADER / NAV
===================== */

.header {
  display: flex;
  justify-content: space-between; /* separa logo da nav */
  align-items: center;
  padding: 20px 30px;
  width: 100%;
  position: absolute; /* não é fixo */
  top: 0;
  left: 0;
  z-index: 10;
}


/* CONTAINER DA LOGO */
.logo img {
  width: 120px;              /* tamanho normal */
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .logo img {
    width: 80px;
  }
}


.header nav a {
  color: #ffffffa2;
  margin-left: 25px;
  text-decoration: none;
}

/* menu hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 4px;
  background: #ffffff57;
  margin: 3px 0;
  transition: 0.3s ease;
}

/* =====================
   HERO
===================== */
.hero {
  height: 100vh;
  background-image: url('img/f529f9c5-f4ef-4903-a980-434d821e6840.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.hero h1 {
  font-size: 20px; /* exemplo */
  line-height: 1.3;
  color: #E6C27A;
}

.hero-overlay {
  height: 100%;
  background: rgba(19, 19, 19, 0.87);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px 60px;
}

.hero p {
  max-width: 800px;
  margin: 20px 0;
  color: #E6C27A;
  font-weight: 700;
}

/* =====================
   BOTÕES
===================== */
.btn-falar {
  background: #b89247;
  color: #000000;
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 1px;
  transition: all 0.3s ease;
  
  /* Efeito neon */
  text-shadow: 0 0 4px rgba(218, 218, 218, 0.788);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.822)
}

/* =====================
   SEÇÕES
===================== */
.dark-section {
  background: #0a0a0a;
  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: 40px 30px;
  text-align: center;
}

.blog-preview {
  background: #e7e7e7e7;
  padding: 80px 20px;
}

.blog-preview-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.blog-main-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.blog-main-subtitle {
  color: #666;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  background: #fff;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 1rem;
  padding: 15px 15px 5px;
}

.blog-card p {
  font-size: 0.9rem;
  color: #555;
  padding: 0 15px 10px;
}

.blog-card a {
  display: inline-block;
  padding: 0 15px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b38b59;
  text-decoration: none;
}

.blog-card a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================
   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: 18px;
  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.527);
  display: flex;
  align-items: center;
  padding: 70px 50px;
}

.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;
}

@media (max-width: 768px) {

  .about-overlay {
    justify-content: flex-start; 
    align-items: center;          
    text-align: center;             
    padding: 80px 25px;
  }

  .about-content {
    max-width: 100%;
    text-align: center;             
  }

  .about-content h2,
  .about-content p {
    text-align: center;
  }

}


/* =====================
   Í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: 60px;
  margin-bottom: 15px;
}

/* =====================
   AVALIAÇÕES
===================== */
.avaliacoes-google {
  background: #bdbdbd42;
  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;
}

.slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

/* CONTAINER */
.cards-avaliacoes {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

/* CARD */
.avaliacao-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 50px 60px;
  text-align: left;
}

/* Botões */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 30px;
  color: #c5c5c5;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 10;
  padding: 10px;
}

.slider-btn:hover {
  color: #111;
}

/* Agora alinhamos ao CARD */
.prev {
  left: -5px;   /* mais para fora */
}

.next {
  right: -5px;  /* mais para fora */
}


/* MOBILE */
@media (max-width: 768px) {
  .avaliacao-card {
    min-width: 100%;
  }

  .prev {
    left: 0;
  }

  .next {
    right: 0;
  }
}

.avaliacao-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  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: 50px 30px;
  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: 15px;
}

.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: 2.5rem; /* ~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: 14px 18px;
    font-size: 2rem;
  }
}


/* =====================
   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;
  }

@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;
  }
}
