/* ==========================================================================
   VARIÁVEIS GLOBAIS E RESET
   ========================================================================== */
   :root {
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --text-main: #f0f0f0;
    --text-muted: #999999;
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --red-fire: #e74c3c;
    --red-dark: #c0392b;
    --whatsapp-green: #25D366;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   TIPOGRAFIA E UTILITÁRIOS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.text-gold { color: var(--gold); }
.text-red { color: var(--red-fire); }
.highlight-gold { 
    color: var(--gold); 
    text-shadow: 0px 0px 10px rgba(212, 175, 55, 0.4);
}
.highlight-red { 
    color: var(--red-fire);
    text-shadow: 0px 0px 10px rgba(231, 76, 60, 0.4);
}
.text-center { text-align: center; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a { text-decoration: none; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Botões */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--red-fire) 0%, var(--red-dark) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.5);
    transition: var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.7);
    filter: brightness(1.1);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: url('hero-bg.png') no-repeat center/cover;
    text-align: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,1) 100%);
    z-index: 1;
}

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

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--gold);
}

.headline {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Video Placeholder */
.video-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    cursor: pointer;
}

.video-placeholder .video-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.video-placeholder:hover .video-bg {
    opacity: 0.7;
}

.video-placeholder .play-icon {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: var(--gold);
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.8));
    transition: var(--transition-fast);
}

.video-placeholder:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    color: var(--gold-light);
}

.video-placeholder span {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px #000;
}

.scarcity-text {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--gold-light);
    font-weight: 300;
}

/* ==========================================================================
   PAIN SECTION (Agitação)
   ========================================================================== */
.pain-section {
    padding: 80px 0;
    position: relative;
    background: url('pain-bg.png') no-repeat center/cover;
    background-attachment: fixed;
}

.pain-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.85); /* Overlay para não sumir o texto */
    z-index: 1;
}

.pain-section .container {
    position: relative;
    z-index: 2;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pain-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 3px solid var(--red-dark);
    text-align: center;
    transition: var(--transition-fast);
}

.pain-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--red-fire);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pain-card i {
    font-size: 3rem;
    color: var(--red-fire);
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.urgency-call {
    text-align: center;
    background: rgba(231, 76, 60, 0.1);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(231, 76, 60, 0.2);
    font-size: 1.1rem;
}

/* ==========================================================================
   MODULES SECTION (Solução)
   ========================================================================== */
.modules-section {
    padding: 80px 0;
    background: #0d0d0d;
}

.modules-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.module-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.module-item i {
    margin-right: 15px;
    font-size: 1.3rem;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-box {
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed var(--gold);
}

.feature-box h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* ==========================================================================
   BONUS SECTION
   ========================================================================== */
.bonus-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-fast);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bonus-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--red-dark);
}

.bonus-content {
    padding: 25px;
}

.bonus-content h3 {
    font-size: 0.9rem;
    color: var(--red-fire);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.bonus-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.bonus-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   AUTHORITY SECTION
   ========================================================================== */
.authority-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.auth-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.auth-image {
    flex: 1;
    min-width: 300px;
}

.auth-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: -15px 15px 0 rgba(212, 175, 55, 0.2);
}

.auth-text {
    flex: 1.5;
    min-width: 300px;
}

.auth-text h2 {
    color: var(--gold);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.auth-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.auth-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.auth-text strong {
    color: #fff;
}

/* ==========================================================================
   OFFER SECTION
   ========================================================================== */
.offer-section {
    padding: 80px 0;
    background: url('offer-bg.png') no-repeat center/cover;
    background-attachment: fixed;
    position: relative;
}

.offer-section::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(10,10,10,0.9);
}

.offer-section .container {
    position: relative;
    z-index: 2;
}

.offer-box {
    background: var(--bg-card);
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offer-header h2 {
    font-size: 2rem;
    color: var(--gold);
}

.pricing {
    text-align: center;
    margin-bottom: 30px;
}

.regular-price {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.price-big {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 15px 0;
    color: #fff;
}

.currency {
    font-size: 1.5rem;
    margin-right: 10px;
    font-weight: 300;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.cash-price {
    font-size: 1.1rem;
    font-weight: 600;
}

.offer-checklist {
    list-style: none;
    margin-bottom: 40px;
}

.offer-checklist li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.offer-checklist i {
    margin-right: 15px;
    font-size: 1.3rem;
}

.huge-cta {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
    padding: 25px;
}

.secure-payment {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.whatsapp-help {
    text-align: center;
    margin-top: 50px;
}

.whatsapp-help p {
    margin-bottom: 15px;
}

.btn-whatsapp {
    display: inline-block;
    background: var(--whatsapp-green);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: var(--transition-fast);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 900px) {
    .headline { font-size: 2.5rem; }
    .amount { font-size: 4rem; }
    .auth-grid { flex-direction: column; text-align: center; }
    .auth-image img { box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2); }
}

@media (max-width: 600px) {
    .headline { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .offer-box { padding: 30px 20px; }
    .amount { font-size: 3.5rem; }
}
