/* =========================
   ESTILO GERAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fffdf9;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  border-radius: 10px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   CONTAINERS E GRID
========================= */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.sobre-grid,
.contato-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sobre-grid {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }

  .contato-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* =========================
  CABEÇALHO
========================= */
header {
  background: #faf8f3;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

header .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.brand h1 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0d0f0d;
}

.brand .muted {
  font-size: 0.85rem;
  color: #080808;
}

nav a {
  margin-left: 1.5rem;
  color: #444;
  font-weight: 500;
  transition: 0.2s;
}

nav a:hover {
  color: #0a0c0b;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: 4rem 0;
  gap: 2rem;
}

.hero-inner {
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  color: #141815;
  margin: 1rem 0;
}

.hero .lead {
  font-size: 1.1rem;
  color: #555;
}

.hero .pill {
  display: inline-block;
  background: #e0f5e8;
  color: #161a17;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
}

.hero-img img {
  width: 100%;
  max-width: 450px;
}

.cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================
   BOTÕES
========================= */
.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: #0d0f0e;
  color: #fff;
}

.btn-primary:hover {
  background: #255635;
}

.btn-outline {
  border: 2px solid #0a0e0b;
  color: #181d1a;
}

.btn-outline:hover {
  background: #0e110f;
  color: #fff;
}

/* =========================
   SEÇÃO: SOBRE (ATUALIZADA - SEM IMAGEM)
========================= */
#sobre {
  background-color: #faf8f3;
  padding: 60px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.sobre-grid {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr; /* APENAS TEXTO */
  align-items: center;
  gap: 2rem;
  text-align: center;
}

/* Texto */
.sobre-texto h3 {
  color: #2f6e44;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}

.sobre-texto p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: center;
}

.sobre-texto ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.sobre-texto li {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.sobre-texto li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #6ab04c;
  font-size: 1rem;
}

/* Hover */
#sobre:hover {
  background-color: #f9f7ef;
  transition: background-color 0.3s ease;
}

/* Responsivo */
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre-texto h3 {
    font-size: 1.8rem;
  }

  .sobre-texto li {
    padding-left: 0;
  }

  .sobre-texto li::before {
    display: none;
  }
}



/* Responsivo - Seção Sobre */
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre-texto {
    order: 2;
  }

  .sobre-img {
    order: 1;
  }

  .sobre-img img {
    max-width: 100%;
  }
}


/* =========================
   CARDS
========================= */
.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card h4 {
  margin-bottom: 0.5rem;
}

.card.info p {
  margin-bottom: 0.3rem;
}

/* =========================
   FORMULÁRIOS
========================= */
form input,
form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

form input:focus,
form textarea:focus {
  border-color: #202722;
}

/* =========================
   RODAPÉ
========================= */
footer {
  background: #0d110e;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* =========================
   SEÇÃO: PERGUNTAS FREQUENTES
========================= */
.faq {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 10%;
  background-color: #fff;
}

.faq-text {
  flex: 1;
  min-width: 300px;
  margin-right: 30px;
}

.faq-text h1 {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #0a0c0c;
}

.faq-text p {
  font-size: 1.1em;
  color: #0a0909;
  margin-bottom: 20px;
  line-height: 1.6;
}

.faq-text ul {
  list-style: none;
  margin: 20px 0;
}

.faq-text li {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1em;
}

.faq-text li strong {
  color: #020607;
}

.faq-image {
  flex: 1;
  text-align: center;
}

.faq-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsivo - FAQ */
.faq {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 1rem;
  background-color: #faf8f3;
  border-radius: 12px;
  flex-wrap: wrap;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
}

.faq-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-text {
  flex: 1;
  min-width: 300px;
}

.faq-text h2 {
  color: #0d130f;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.faq-text p {
  color: #555;
  margin-bottom: 1rem;
}

.faq-text ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.faq-text li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.faq-text strong {
  color: #060e09;
}

.faq .btn-primary {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #3d423b;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.faq .btn-primary:hover {
  background-color: #0a0c09;
  transform: scale(1.05);
}


/* =========================
   SEÇÃO: DEPOIMENTOS
========================= */
.depoimentos {
  text-align: center;
  padding: 60px 20px;
}

.depoimentos h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.depoimentos p {
  color: #110f0f;
  margin-bottom: 40px;
  font-size: 1rem;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.carousel .card {
  background-color: #f1efef;
  color: #0c0a0a;
  border-radius: 15px;
  padding: 25px;
  min-width: 300px;
  max-width: 300px;
  text-align: left;
}

.carousel .card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.perfil {
  display: flex;
  align-items: center;
  gap: 10px;
}

.perfil img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* Botões do carrossel */
button.prev,
button.next {
  background: none;
  border: none;
  font-size: 2rem;
  color: #e6dede;
  cursor: pointer;
  transition: color 0.3s;
}

button.prev:hover,
button.next:hover {
  color: #f6fff6;
}

/* Botão Avaliação */
.avaliacao {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #1d3015;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.avaliacao:hover {
  background-color: #0b0e0a;
  transform: scale(1.05);
}


/* Indicadores (bolinhas) */
.dots {
  margin-top: 25px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #070a0a;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.dot.active {
  background-color: #0f0f0f;
}

/* Responsivo - Depoimentos */
/* ====== Indicadores do carrossel ====== */
.indicators {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #0c0a0a;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #131611; /* cor principal */
}

/* SEÇÃO INSTAGRAM */
.instagram-section {
  padding: 80px 20px;
  background-color: #fafafa;
  text-align: center;
}

.instagram-section h2 {
  font-size: 2.5rem;
  color: #009848;
  margin-bottom: 15px;
  font-weight: bold;
}

.instagram-section p.subtitle {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 30px;
}

/* BOTÃO INSTAGRAM */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 35px;
  border-radius: 12px;
  background: linear-gradient(to right, #181214, #C13584);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.3s ease-in-out;
}

.instagram-btn:hover {
  background: linear-gradient(to right, #0c0a0b, #833AB4);
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* CAIXA DO TEXTO FINAL */
.instagram-box {
  margin-top: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.instagram-box p {
  color: #222;
  font-size: 1.2rem;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .instagram-section h2 {
    font-size: 2rem;
  }

  .instagram-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .instagram-box p {
    font-size: 1rem;
  }
}

/* =========================
   RESPONSIVIDADE - HERO
========================= */
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-inner {
    max-width: 500px;
  }

  .hero h2 {
    font-size: 2.3rem;
  }
}
/* ====== Seção Fale Conosco ====== */
.contato {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  background-color: #080807; /* cor de fundo da seção */
  padding: 50px 10%;
  gap: 30px;
}

.mapa {
  flex: 1 1 350px;
  background: #f9f4ee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.info-contato {
  padding: 15px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* ====== FORMULÁRIO ====== */
.formulario {
  flex: 1 1 350px;
  background-color: #f3f1ef; /* fundo branco */
  color: #000000; /* texto preto */
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.formulario h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #000; /* título preto */
}

.formulario p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #110e0e; /* texto escuro */
}

.formulario form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.formulario input,
.formulario textarea {
  padding: 10px 12px;
  border: 1px solid #ccc; /* borda suave */
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
  background-color: #fff;
  color: #000;
}

.formulario textarea {
  resize: none;
}

.formulario button {
  background-color: #0a0908;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

@media (min-width: 769px) {
  .formulario button:hover {
    background-color: #92d157;
    transform: scale(1.03);
  }
}
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background-color: #25D366;
  color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 1.5s infinite;
}

.whatsapp-btn:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
}

/* Animação pulse */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}



/* Responsividade */
@media (max-width: 900px) {
  .contato {
    flex-direction: column;
    align-items: center;
  }

  .mapa, .formulario {
    width: 100%;
  }
}
