body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: #5D442F; /* fundo da barra */
}

::-webkit-scrollbar-thumb {
  background: #8C6A3F; /* "pegador" da barra */
  border-radius: 10px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #8C6A3F #5D442F;
}


.hero {
  width: 100%;
  background: #0c0c0c;
  padding: 40px 0 20px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.branding {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.branding img.logo {
  width: 60px;
  margin-right: 15px;
}

.branding .title-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.branding .title-group h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.branding .title-group .divider {
  height: 30px;
  width: 1px;
  background-color: #fff;
}

.branding .title-group span {
  font-size: 14px;
  font-style: italic;
  color: #ccc;
}

.text-area {
  max-width: 500px;
}

.subtitulo {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.descricao {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 24px;
  background-color: #00c851;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
  width: 100%;
  max-width: 240px;
}

.btn-whatsapp:hover {
  background-color: #007e36;
}


.ligar {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 24px;
  background-color: #8C6A3F;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
  width: 100%;
  max-width: 140px;
}
.ligar i {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;}

.ligar:hover {
  background-color: #6C5231;
}

.image-area {
  flex: 1;
  text-align: right;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.servicos {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  background-color: #5d442f;
  border-radius: 10px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.servico {
  background-color: #8c6a3f;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  font-size:15px;
}



.porque-jorge {
  background-color: #0F0F0F;
  color: #ddd;
  margin: 60px 0px;
}

.pq-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pq-col {
  flex: 1;
  min-width: 280px;
}

.pq-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.pq-texto h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pq-texto ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pq-texto li {
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.linha-dourada {
  margin-top: -66px;
  height: 3px;
  border: none;
  background: linear-gradient(to right, rgba(61, 56, 43, 0.9),rgba(255, 220, 130, 0.8));
  border-radius: 2px;
  
  width: 100%;
  z-index: 999;
}

.servicos-blocos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 70px 20px; /* margem corrigida aqui */
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.servicos-blocos .bloco {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px 10px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s;
}

.servicos-blocos .bloco:hover {
  transform: translateY(-6px);
}

.servicos-blocos i {
  font-size: 40px;
  color: #ff5e3a;
  margin-bottom: 20px;
}

.servicos-blocos h3 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.servicos-blocos p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .image-area {
    text-align: center;
    margin-top: 20px;
  }

  .branding {
    justify-content: center;
    flex-direction: column;
  }

  .branding .title-group {
    flex-direction: column;
    gap: 5px;
  }

  .btn-whatsapp {
    justify-content: center;
    width: 100%;
  }

  .pq-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .pq-texto {
    text-align: left;
  }
}
.balao {
  position: absolute;
  width: 50%;
  max-width: 240px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  animation: slideIn 1s ease-out forwards;
  opacity: 0;
  z-index: 10;
}

.balao::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 20px solid rgba(255, 255, 255, 0.85);
}

.pq-img {
  position: relative;
}

.balao.b1 {
  top: 55%;
  left: 35%;
  animation-delay: 0.3s;
}

.balao.b2 {
  top: 70%;
  left: 5%;
  animation-delay: 1s;
}

@keyframes slideIn {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .balao {
    width: 80%;
    font-size: 13px;
    padding: 10px 14px;
  }

  .balao.b1,
  .balao.b2 {
    left: 10%;
    top: auto;
  }

  .balao.b1 {
    bottom: 130px;
  }

  .balao.b2 {
    bottom: 40px;
  }

  .balao::before {
    top: 15px;
    left: -15px;
    border-right: 15px solid rgba(255, 255, 255, 0.85);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
}
.faq {
  background-color: #f9f9f9;
  color: #333;
  padding: 60px 20px;
}

.faq .container {
  max-width: 960px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.accordion {
  border-top: 1px solid #ddd;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-family:Poppins;
  font-weight: 600;
  padding: 18px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f1f1f1;
}
.accordion-header::after {
  content: "▼";
  position: absolute;
  right: 20px;
  font-size: 18px;
  color: #000; /* seta preta para baixo */
  transition: transform 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  content: "▲";
  color: #e53935; /* seta vermelha para cima */
}


.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
  padding: 0 20px;
}

.accordion-item.active .accordion-body {
  padding: 20px;
  max-height: 500px; /* ajuste conforme necessário */
}


.frase-final {
  max-width: 860px;
  margin: 20px auto;
  padding: 0 16px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  color: #ddd;
}

.pq-texto ul li:last-child {
  margin-bottom: 60px;
}

.rodape {
  background-color: #0c0c0c;
  color: #ccc;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.rodape{
  
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  gap: 30px;
  text-align: center;
  font-size: 14px;
  color: #666;
  padding: 20px 10px;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row !important; /* força linha */
  gap: 10px;
  margin: 20px auto;
  padding: 0;
  width: fit-content;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: transform 0.3s, filter 0.3s;
  font-size: 18px;
}

/* Facebook - azul */
.social-icons .facebook {
  background-color: #3b5998;
}

.social-icons .facebook:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
}

/* Instagram - rosa */
.social-icons .instagram {
  background-color: #e1306c;
}

.social-icons .instagram:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
}

/* Email - azul claro */
.social-icons .email {
  background-color: #00acee;
}

.social-icons .email:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
}
