/* -----------------------------------------------
   🖋️ FONTE & RESET
----------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8f8f8;
  color: #222;
  scroll-behavior: smooth;
}

html, body{ overflow-x: hidden !important; }

/* -----------------------------------------------
   🎯 CORES & TEMAS
----------------------------------------------- */
:root {
  --dourado: #c7a34a;
  --preto: #000;
  --cinza-escuro: #222;
  --branco: #fff;
  --cinza-claro: #f8f8f8;
}

/* -----------------------------------------------
   🔝 HEADER / HERO SECTION
----------------------------------------------- */
header {
  background: linear-gradient(135deg, var(--preto), var(--cinza-escuro));
  color: var(--branco);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 25px;
  color: #ddd;
}

/* -----------------------------------------------
   🔘 BOTÕES GERAIS
----------------------------------------------- */
.btn {
  background-color: var(--dourado);
  color: var(--preto);
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--branco);
  color: var(--preto);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(199, 163, 74, 0.6);
}

/* -----------------------------------------------
   📦 SEÇÕES GERAIS
----------------------------------------------- */
section {
  padding: 80px 20px;
  text-align: center;
}

/* -----------------------------------------------
   💎 BENEFÍCIOS
----------------------------------------------- */
.beneficios {
  background: var(--branco);
}

.beneficios h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--cinza-escuro);
}

.beneficios .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.beneficio {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.beneficio.visible {
  opacity: 1;
  transform: translateY(0);
}

.beneficio:hover {
  background-color: #fff9e6;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* -----------------------------------------------
   🎥 SEÇÃO DE VÍDEO
----------------------------------------------- */
.video-section {
  background: var(--preto);
  color: var(--branco);
  padding: 80px 20px;
}

.video-section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(199, 163, 74, 0.6);
}

iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* -----------------------------------------------
   💰 PLANOS
----------------------------------------------- */
.planos {
  background: #f5f2e9;
  transition: background-color 0.5s ease;
}

.planos.active {
  background: #fff3cc;
}

.planos h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--preto);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: var(--branco);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 300px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.card h3 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  color: var(--preto);
}

.card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.preco {
  font-size: 2rem;
  color: var(--dourado);
  margin-bottom: 20px;
}

/* -----------------------------------------------
   🎁 PROGRAMA DE FIDELIDADE
----------------------------------------------- */
.fidelidade {
  background: #fff9e6;
  padding: 60px 20px;
}

.fidelidade h2 {
  color: var(--dourado);
  margin-bottom: 20px;
  font-size: 2rem;
}

.fidelidade p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #333;
}

section.fotos {
  background: #fff;
  padding: 60px 10px 80px; /* espaço inferior extra */
  text-align: center;
  
}

section.fotos h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  margin-top: 20px;
  color: #111;
}

.fotos .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.fotos img {
  width: 100%;
  height: auto; /* garante proporção correta */
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.fotos img:hover {
  transform: scale(1.05);
}



/* -----------------------------------------------
   ⚙️ RODAPÉ
----------------------------------------------- */
footer {
  background: #111;
  color: #aaa;
  padding: 40px;
  text-align: center;
  font-size: 0.9rem;
}

/* -----------------------------------------------
   💬 BOTÃO WHATSAPP FIXO
----------------------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: var(--branco);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* -----------------------------------------------
   📱 RESPONSIVIDADE
----------------------------------------------- */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  iframe {
    height: 250px;
  }
}
