/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header {
  background: #111;
  padding: 15px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #d4af37;
  transition: 0.3s;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* LOGO */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 150px;
  width: auto;
}

.logo-text {
  color: #d4af37;
  font-size: 1.8rem;
  font-weight: bold;
}

/* MENU */
.nav .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #d4af37;
}

/* HAMBURGUER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #d4af37;
  border-radius: 2px;
  transition: 0.3s;
}

/* TRANSFORMAR HAMBURGUER EM X */
.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .nav .nav-links {
    position: fixed;
    top: 50px; /* SUBIU O MENU */
    right: -100%;
    width: 200px;
    height: calc(100vh - 50px);
    background: #111;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 30px;
    gap: 20px;
    transition: 0.3s;
  }

  .nav .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}


/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url('hero-bg.jpeg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* clareado (30% de opacidade) */
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    background-position: top center; /* foca no topo */
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d4af37;
  color: #111;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-hero:hover {
  background: #b8942f;
  transform: translateY(-3px);
}

.whats-icon {
  width: 24px;
  height: 24px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero h2 { font-size: 1.5rem; }
  .btn-hero { padding: 12px 20px; }
}




/* Hero text e botão */
.hero h1 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d4af37;
  color: #111;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-hero:hover {
  background: #b8942f;
  transform: translateY(-3px);
}

.whats-icon {
  width: 24px;
  height: 24px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero h2 { font-size: 1.5rem; }
  .btn-hero { padding: 12px 20px; }
}



/* Sobre */
.sobre-section {
  background: #111;
  color: #fff;
  padding: 80px 20px;
}

.sobre-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centraliza horizontalmente */
  align-items: center; /* centraliza verticalmente */
  gap: 40px;
}

.sobre-imagem {
  flex: 0 1 350px;
  text-align: center;
}

.sobre-imagem img {
  width: 100%;
  max-width: 350px;
  border: 3px solid #d4af37;
  border-radius: 10px;
}

.sobre-texto {
  flex: 1 1 300px;
  text-align: left; /* Pode usar center se quiser texto centralizado */
}

.sobre-texto h2 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 2rem;
}

.sobre-texto p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .sobre-section .container {
    flex-direction: column;
  }

  .sobre-texto {
    text-align: center;
  }
}



/* Serviços */
.servicos-section {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.servicos-section h2 {
  color: #d4af37;
  margin-bottom: 40px;
  font-size: 2rem;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centraliza os cards */
  gap: 30px;
}

.card {
  background: #1a1a1a;
  border: 2px solid #d4af37;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  color: #d4af37;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Efeito hover nos cards */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .card {
    width: 90%;
  }
}



/* FAQ */
.faq-section {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.faq-section h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 20px 25px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.faq-item::before {
  content: "✔";
  color: #d4af37;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 20px;
}

.faq-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 25px;
}

.faq-answer {
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.5;
  display: none; /* inicialmente escondido */
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .faq-section h2 { font-size: 1.8rem; }
  .faq-title { font-size: 1.1rem; }
  .faq-answer { font-size: 0.95rem; }
}


/* CTA */
.cta-section {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.cta-section h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d4af37;
  color: #111;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #b8942f;
  transform: translateY(-3px);
}

.whats-icon {
  width: 24px;
  height: 24px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .cta-section h2 { font-size: 1.8rem; }
  .cta-section p { font-size: 1rem; }
  .btn-cta { padding: 12px 20px; }
}


/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  border-top: 2px solid #d4af37;
}

/* WhatsApp fixo */
.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50%;
  background-color: #25d366; /* verde clássico do WhatsApp */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-fixo:hover {
  transform: scale(1.1);
}

.whatsapp-fixo img {
  width: 60%;
  height: 60%;
}

/* Efeito pulsante */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

