/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #eee;
  background: #111;
  line-height: 1.6;
  font-size: 16px;
}

/* Hero */
.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 12px;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #d4af37;
}

.hero p {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.cta {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.7rem 1.5rem;
  background: #d4af37;
  color: #111;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #c0a12f;
}

.chips {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.chips li {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.3rem 0.6rem;
  border-radius: 16px;
  font-size: 0.85rem;
}

/* Seções */
section {
  padding: 3rem 1.5rem;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: #d4af37;
}

section p {
  font-size: 1rem;
  color: #ccc;
  text-align: center;
}

/* Bullets */
.bullets {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.bullets li {
  font-size: 0.95rem;
}

.bullets li strong {
  color: #fff;
}

/* Galeria */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.galeria figure {
  margin: 0;
  text-align: center;
}

.galeria img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.galeria figure:hover img {
  transform: scale(1.03);
  filter: brightness(0.95);
}

.galeria figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* Vídeo */
.video-container {
  max-width: 800px;
  margin: auto;
}

video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Credibilidade */
.credibilidade p {
  text-align: center;
  font-size: 1rem;
  color: #ccc;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #333;
  background: #000;
  color: #aaa;
  font-size: 0.9rem;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #d4af37, #a8892c);
  color: #111;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.lightbox.ativo {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

#lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
