* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
}

/* HEADER */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: none;
  background-image: linear-gradient(to right,
      #3b2e14,
      #cfa24f,
      #3b2e14);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 2px;
}

.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 32px;
  color: #cfa24f;

}

nav a {
  color: #cfa24f;
  text-decoration: none;
  margin-left: 20px;
}

/* HERO */

.hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url("imagens/capa.jpeg") center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;


  border-bottom: 2px solid #cfa24f;


}

.hero h1 {
  font-family: 'Great Vibes', cursive;
  color: #fff;
  font-size: 42px;
  font-weight: normal;
  border-bottom: none;
  background-image: linear-gradient(to right,
      #3b2e14,
      #cfa24f,
      #3b2e14);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 2px;


}

.hero p {
  margin-top: 10px;
  font-size: 18px;
  color: #cfa24f;
  text-transform: uppercase;

}

/* SERVIÇOS */

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;


}


.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;

  border-bottom: none;
  background-image: linear-gradient(to right,
      #3b2e14,
      #cfa24f,
      #3b2e14);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 2px;
}


.card {

  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}


.card svg {
  width: 55px;
  height: 55px;
  fill: #cfa24f;
  margin-bottom: 15px;
}

.card h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* SOBRE */

.sobre {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 30px;
}

.texto {
  flex: 1;
}

.texto h2 {
    font-weight: normal;
  font-family: 'Great Vibes', cursive;
  color: #cfa24f;
  font-size: 32px;
  margin-bottom: 15px;
}

.texto p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.botao {
  display: inline-block;
  background: linear-gradient(45deg, #cfa24f, #ffdd88);
  color: #000;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* BUTTON */

.btn-agende {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-agende:hover {
  transform: scale(1.05);
}

/* BUTTON */

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.foto {
  flex: 1;
  display: flex;
  justify-content: center;
}

.img-fake {
  width: 280px;
  height: 380px;
  background: url("imagens/sobre-mim.jpeg") center/cover;
  border-radius: 12px;
  border: 2px solid #cfa24f;
}

.servicos {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 30px;
}

.cards-container-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.card-servicos {

  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}



.faq-section-titulo {
  flex: 1;
}

.faq-section-titulo h2 {
  font-weight: normal;
  font-family: 'Great Vibes', cursive;
  color: #cfa24f;
  font-size: 32px;
  margin-bottom: 15px;
}

.faq-section {
  max-width: 900px;  
  padding: 40px 20px; 
  
}

.faq-section h2 {
 font-weight: normal;
  font-family: 'Great Vibes', cursive;
  color: #cfa24f;
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-question {
  width: 100%;
  padding: 18px;
  background: none;
  border: none;
  color: #d4af37;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 18px 18px;
  color: #ddd;
  line-height: 1.6;
}

/* LOCATION */

.location {


  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 30px;
}

/* FOOTER */

footer {
  background: #000;
  padding: 30px;
  text-align: center;
  font-size: 14px;
  color: #aaa;


    border-top: none;
  background-image: linear-gradient(to right,
      #3b2e14,
      #cfa24f,
      #3b2e14);

  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% 2px;
}

/* WHATSAPP FLOAT */

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 999;
}

 .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;

            align-items: start;
        }

        .card-contact {
            background: var(--panel);
            padding: 22px;
        }

        .contact-details h2 {
            margin: 0 0 8px 0;
            color: var(--text);
            font-size: 1.25rem;
        }

        .contact-details p {
            margin: 10px 0;
            color: var(--muted);
        }

        .contact-addr {
            background: linear-gradient(90deg, rgba(143, 175, 190, 0.04), rgba(191, 199, 206, 0.02));
            padding: 14px;
            border-radius: 8px;
            color: var(--text);
            display: inline-block;
            margin-top: 12px;
        }

        .map-card {
            padding: 0;
            overflow: hidden;
            height: 420px;
        }

        .map-card iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .actions {
            display: flex;
            margin-top: 18px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 10px 16px;
            background: var(--cinza-escuro);
            color: var(--prata);
            font-weight: 700;
            text-decoration: none;
            border-radius: 8px;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
        }


/* RESPONSIVO */

@media (max-width: 768px) {

  header {
    flex-direction: column;
    gap: 10px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 30px;
  }

  .sobre {
    flex-direction: column;
  }

              .grid {
                grid-template-columns: 1fr;
            }

            .map-card {
                height: 360px;
            }
}