/* Reseta as margens, preenchimentos e corrige o cálculo de tamanho de todos os elementos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Garante que o fundo ocupe a tela toda sem criar barras de rolagem desnecessárias */
html, body {
    width: 100%;

    color: #fff;
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- Ajuste de boas práticas para resetar o comportamento padrão de listas, links e imagens --- */
ul, ol { 
  list-style: none; 
}
a { 
  text-decoration: none; 
  color: inherit; 
}
img { 
  display: block; 
  max-width: 100%; 
  height: auto; 
}


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

/* --- HERO --- */
.hero {
  position: relative;
  padding: 30px 0;
  text-align: center;
}

.hero-bg-container,
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-content {
  z-index: 3;
  position: relative;
}

.hero h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.highlight {
  color: #D4AF37 !important;
}

/* --- SEÇÃO DO VÍDEO EXCLUSIVO (AJUSTADO PARA NÃO TER FAIXAS PRETAS) --- */
.box-video-exclusiva {
  /* Aumentei para 850px para o vídeo ficar maior e "mais alto" no PC */
  max-width: 850px !important;
  width: 95% !important;
  margin: 0 auto 30px !important;
  padding: 4px !important;
  background: #D4AF37 !important;
  /* Borda dourada */
  border-radius: 12px !important;
  box-sizing: border-box !important;
  display: block !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  /* Sombra para destacar */
}

.area-video-exclusiva {
  width: 100% !important;
  position: relative !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  /* O SEGREDO: Aspect ratio 16/9 mata as faixas pretas */
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  background: #000000 !important;
}

.area-video-exclusiva iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}


/* --- SEÇÃO DO VÍDEO EXCLUSIVO (OTIMIZADO) --- */
.box-video-exclusiva {
  /* Aumentei de 680px para 850px para o vídeo ficar "mais alto" no PC sem barras pretas */
  max-width: 850px !important;
  width: 95% !important;
  margin: 0 auto 30px !important;
  padding: 3px !important;
  /* Borda dourada um pouco mais fina para parecer mais luxuosa */
  background: #D4AF37 !important;
  border-radius: 12px !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  /* Um leve brilho dourado em volta */
}

.area-video-exclusiva {
  width: 100% !important;
  position: relative !important;
  border-radius: 9px !important;
  overflow: hidden !important;
  /* Isso garante a proporção perfeita sem faixas pretas */
  aspect-ratio: 16 / 9 !important;
  background: #000 !important;
}

.area-video-exclusiva iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}

/* AJUSTE PARA CELULAR */
@media (max-width: 768px) {
  .box-video-exclusiva {
    width: 100% !important;
    /* No celular ele ocupa a largura toda */
    margin-bottom: 20px !important;
    border-radius: 0px !important;
    /* Opcional: tirar o arredondado no celular para ganhar tela */
  }
}

/*-- Configuração do Botão --*/
.botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease-in-out;
    background-color: #D4AF37; /* Dourado Premium */
    color: #000000;
    font-size: clamp(16px, 4vw, 20px);
    padding: 15px 30px;
    min-height: 3.5em;
    border-radius: 8px;
    width: 100%;
    max-width: 85%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* O RAIO DE BRILHO PASSANDO */
.botao::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: passarBrilho 3s infinite ease-in-out;
}

@keyframes passarBrilho {
    0% { left: -50%; }
    30% { left: 125%; }
    100% { left: 125%; }
}

.botao:active { transform: scale(0.95); }

/* Estilo da frase abaixo do botão */
.aviso-botao {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  margin: 0;
  background-color: #990000;
  /* Vermelho escuro elegante */
  padding: 8px 15px;
  border-radius: 6px;
  display: inline-block;
}

/* Alinha o botão e a frase no centro */
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}


/* --- ÍCONES --- */
.trust-icons {
  background: #000;
  padding: 40px 0;
}

.grid-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-v {
  color: #D4AF37 !important;
  font-size: 1.5rem;
  font-weight: bold;
}

/* --- PREÇOS E TEXTOS --- */
.pricing-cards {
  background: #000 !important;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.text-white {
  color: #ffffff !important;
  font-size: 1.1rem;
  margin-bottom: 25px;
  display: block;
}

.chamada-dourada {
  color: #D4AF37;
  font-size: 1.2rem;
  font-weight: 550;
  line-height: 1.1;
  text-transform: uppercase;
}

/* CARDS DE PREÇO */
.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #0d0d0d;
  border: 1px solid #222;
  width: 290px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin: 10px;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
}

.card-content {
  padding: 30px 20px;
  text-align: center;
}

.card-content h4 {
  color: #D4AF37 !important;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.gold-price {
  color: #ffffff !important;
  font-size: 2.6rem;
  font-weight: 800;
  display: block;
}

/* RESPONSIVIDADE (CELULAR) */
@media (max-width: 768px) {
  .box-video-exclusiva {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
    border-radius: 0;
    /* No celular vídeo ocupa tudo */
    padding: 2px !important;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .chamada-dourada {
    font-size: 1.5rem !important;
  }
}

/* FAQ - Principais Dúvidas */
.faq { max-width: 800px; margin: 40px auto; padding: 0 20px; }
.faq h2 { color: #D4AF37; text-align: center; margin-bottom: 20px; }
.faq .container { border: 2px solid #D4AF37; border-radius: 8px; overflow: hidden; }
details { background: #0d0d0d; border-top: 1px solid rgba(212, 175, 55, 0.3); }
summary { padding: 15px; cursor: pointer; font-weight: bold; color: #fff; outline: none; }
details[open] summary { background: #FC8700; }
.faq .content { padding: 20px; background: #000; color: #eee; }