/* --- GERAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial Black', Gadget, sans-serif; }
body { background-color: #000 !important; color: #fff; line-height: 1.4; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- HERO --- */
.hero { position: relative; padding: 40px 0; text-align: center; background: #000; overflow: hidden; }
.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%; background: rgba(0, 0, 0, 0.85); z-index: 2; }
.hero-content { z-index: 3; position: relative; }
.hero h1 { font-size: 2rem; color: #fff; margin-bottom: 15px; text-transform: uppercase; }
.highlight { color: #D4AF37 !important; }

/* --- VÍDEO --- */
.video-wrapper { max-width: 650px; margin: 0 auto 30px; padding: 4px; background: #D4AF37; border-radius: 12px; }
.video-container { width: 100%; background: #000; border-radius: 8px; overflow: hidden; aspect-ratio: 4 / 3; }
.video-container video { width: 100%; height: 100%; object-fit: cover; }

.botao-cta {
    display: inline-block; background: #D4AF37; color: #000; padding: 18px 30px;
    font-size: 1.2rem; font-weight: bold; text-decoration: none; border-radius: 5px;
    text-transform: uppercase;
}

/* --- ÍCONES --- */
.trust-icons { background: #000; padding: 30px 0; }
.grid-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 5px 0; }
.check-v { color: #D4AF37 !important; font-size: 1.5rem; font-weight: bold; }

/* --- SEÇÃO DE PREÇOS (O FIX DO CELULAR AQUI) --- */
.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;
    line-height: 1.6;
}

/* Estilo FORTE para a frase dourada */
.chamada-dourada {
    color: #D4AF37 !important; /* Dourado forçado */
    font-size: 1.5rem !important; /* Bem grande no PC */
    font-weight: 900 !important; /* Peso máximo da letra */
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: 20px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Sombra para destacar no fundo preto */
}

/* CARDS */
.grid-cards { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.card { background: #0a0a0a; border: 1px solid #333; width: 280px; border-radius: 12px; overflow: hidden; }
.card-content { padding: 20px; text-align: center; }
.gold-price { color: #D4AF37 !important; font-size: 2.2rem; font-weight: bold; display: block; }

.botao-card {
    display: block; margin-top: 15px; background: #D4AF37; color: #000;
    padding: 15px; text-decoration: none; font-weight: bold; border-radius: 6px;
}
.botao-card.outline { background: transparent; border: 2px solid #D4AF37; color: #D4AF37; }

/* --- MEDIA QUERY (AJUSTE ESPECIAL CELULAR) --- */
@media (max-width: 768px) {
    .chamada-dourada {
        font-size: 1.8rem !important; /* Tamanho grande no celular também */
        color: #D4AF37 !important;
        padding: 0 10px;
        line-height: 1.3;
    }
    .text-white {
        font-size: 1rem !important;
        padding: 0 10px;
    }
    .hero h1 { font-size: 1.6rem; padding: 0 15px; }
    .video-container { aspect-ratio: 1 / 1; }
    .card { width: 100%; max-width: 320px; }
}
/* FAQ - Sanfona Laranja e Grafite */
.faq { 
    padding: 60px 20px; 
    text-align: left; 
    max-width: 800px; 
    margin: 0 auto; 
}

.faq h2 { 
    text-align: center; 
    margin-bottom: 30px; 
    color: #E6B902; 
}

details {
    background: #383838;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden; 
    transition: background 0.3s ease; 
}

details[open] summary {
    background: #FC8700;
    color: #fff; 
}

summary {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    outline: none;
    color: #fff; 
    transition: background 0.3s ease;
}

.faq .content {
    background: #1A191D;
    padding: 20px;
}

.faq .content p {
    margin: 0;
    padding: 0;
    color: #eee; 
    line-height: 1.6;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .grid-cards { grid-template-columns: 1fr; }
}