:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.7);
    --gold-primary: #FFD700;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --gold-dark: #B38728;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --accent-red: #FF3333;
    --font-main: 'Inter', sans-serif;
    --glass-border: 1px solid rgba(255, 215, 0, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 50% 0%, #1a1500 0%, #000000 70%),
        linear-gradient(to bottom, transparent 0%, #000 100%);
    min-height: 100vh;
}

/* REGRA DE OURO PARA RESPONSIVIDADE */
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

/* TIPOGRAFIA */
h1, h2, h3 { font-weight: 800; color: var(--text-main); letter-spacing: -0.03em; text-transform: uppercase; line-height: 1.2; }

.highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.text-gold { color: var(--gold-primary); }
.text-red { color: var(--accent-red); text-shadow: 0 0 15px rgba(255, 51, 51, 0.4); }
.center-text { text-align: center; }

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BOTÕES */
.cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 20px 40px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(179, 135, 40, 0.3);
    border: 1px solid #FCF6BA;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    text-align: center;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(179, 135, 40, 0.6); }

.final-cta { width: 100%; max-width: 600px; font-size: 1.5rem; padding: 25px; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}
.pulse-animation { animation: pulse 2s infinite; }

/* SEÇÕES */
section { padding: 80px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); position: relative; }

/* HERO */
.hero-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0 60px;
}
.hero-headline { font-size: 3.2rem; line-height: 1.1; margin-bottom: 25px; }
.hero-subheadline { font-size: 1.2rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 30px; font-weight: 300; }
.hero-security { margin-top: 20px; font-size: 0.9rem; color: #666; letter-spacing: 0.5px; }

/* MOCKUPS */
.phone-mockup {
    position: relative;
    width: 260px;
    margin: 20px auto;
    border: 8px solid #111;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.1);
    background: #000;
}

.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0;
    background: #0a0a0a;
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.9);
    border: 1px solid rgba(255,255,255,0.05);
}

/* GRID LAYOUTS */
.grid-2-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.impact-text {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 20px;
    border-left: 3px solid var(--gold-primary);
    padding-left: 20px;
    line-height: 1.5;
}

/* TWIN PHONES ANIMATION */
@keyframes swapPhones {
    0%, 45% { opacity: 1; z-index: 10; transform: translateX(40px) scale(1); filter: blur(0); }
    50%, 95% { opacity: 0.6; z-index: 1; transform: translateX(-60px) scale(0.85); filter: blur(2px); }
    100% { opacity: 1; z-index: 10; transform: translateX(40px) scale(1); filter: blur(0); }
}
@keyframes swapPhonesReverse {
    0%, 45% { opacity: 0.6; z-index: 1; transform: translateX(-60px) scale(0.85); filter: blur(2px); }
    50%, 95% { opacity: 1; z-index: 10; transform: translateX(40px) scale(1); filter: blur(0); }
    100% { opacity: 0.6; z-index: 1; transform: translateX(-60px) scale(0.85); filter: blur(2px); }
}
.twin-phones { display: flex; justify-content: center; position: relative; height: 500px; align-items: center; width: 100%; }
.twin-phones .phone-mockup { position: absolute; margin: 0; box-shadow: 0 30px 60px rgba(0,0,0,0.8); }
.twin-phones .phone-mockup:first-child { animation: swapPhonesReverse 6s infinite ease-in-out; }
.twin-phones .phone-mockup.overlay-mockup { animation: swapPhones 6s infinite ease-in-out; }

/* FEATURES */
.feature-list li { display: flex; gap: 20px; margin-bottom: 35px; align-items: flex-start; }
.icon-box {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #1a1a1a, #000);
    width: 60px; height: 60px; min-width: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ARSENAL GRID */
.arsenal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; margin-top: 40px; }
.arsenal-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px; padding: 25px; transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.arsenal-card:hover { border-color: var(--gold-primary); transform: translateY(-5px); background: linear-gradient(145deg, rgba(20,20,20,0.8), rgba(0,0,0,0.9)); }
.arsenal-icon { font-size: 2.2rem; margin-bottom: 15px; }
.arsenal-card h3 { margin-bottom: 10px; font-size: 1.1rem; color: #fff; }
.arsenal-card p { font-size: 0.9rem; color: var(--text-muted); }

/* TESTIMONIALS SLIDER */
.testimonials-grid {
    display: flex; overflow-x: auto; gap: 20px; padding: 30px 0 40px;
    scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--gold-dark) #111;
    -webkit-overflow-scrolling: touch;
}
.testimonial-item { flex: 0 0 320px; scroll-snap-align: center; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); background: #000; }

/* OFFER & BONUS */
.section-offer { background: radial-gradient(circle at center, #151100 0%, #000 80%); }
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 50px 0; }
.bonus-card { background: var(--card-bg); padding: 30px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }

/* PRICING */
.pricing-box {
    text-align: center; max-width: 700px; margin: 60px auto 0; padding: 50px;
    background: linear-gradient(180deg, rgba(20,20,20,0.95) 0%, rgba(5,5,5,1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 20px;
    position: relative; box-shadow: 0 0 50px rgba(179, 135, 40, 0.1);
}
.price-final {
    font-size: 4.5rem; font-weight: 900; margin: 10px 0; line-height: 1;
    background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.price-anchor { font-size: 1.1rem; color: #888; text-transform: uppercase; }
.strike { text-decoration: line-through; color: var(--accent-red); opacity: 0.8; }
.payment-info { color: #aaa; margin-bottom: 25px; font-size: 0.9rem; }
.secure-badge { margin-top: 30px; display: flex; justify-content: center; }
.cta-image { max-width: 80%; border-radius: 8px; opacity: 0.8; }

/* FAQ */
.faq-wrapper { max-width: 700px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question {
    padding: 25px 0; font-size: 1.1rem; color: var(--text-main);
    background: transparent; font-weight: 600; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; border: none; text-align: left;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { color: #aaa; padding-bottom: 25px; line-height: 1.6; }

/* FOOTER */
footer { padding: 40px 0; border-top: 1px solid #111; color: #444; font-size: 0.8rem; }

/* ANIMATIONS */
.fade-in { animation: fadeIn 1s ease-out forwards; opacity: 0; }
.fade-in-left { animation: fadeInLeft 1s ease-out forwards; opacity: 0; }
.fade-in-right { animation: fadeInRight 1s ease-out forwards; opacity: 0; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ========================================= */
/* 📱 RESPONSIVIDADE (MOBILE OPTIMIZED)      */
/* ========================================= */

@media (max-width: 900px) {
    .hero-headline { font-size: 2.8rem; }
    .grid-2-cols { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .section-solution .grid-2-cols.reverse-mobile { display: flex; flex-direction: column-reverse; }
    .impact-text { border-left: none; border-top: 3px solid var(--gold-primary); padding-top: 20px; padding-left: 0; }
    .twin-phones { height: 400px; }
}

@media (max-width: 600px) {
    /* Estrutura Geral */
    section { padding: 50px 0; }
    .container { width: 92%; }
    
    /* Fontes Ajustadas */
    .hero-headline { font-size: 2.1rem; margin-bottom: 15px; }
    .hero-subheadline { font-size: 1rem; }
    h2.section-title { font-size: 1.8rem; }
    
    /* Botões Full Width */
    .cta-button { width: 100%; padding: 18px; font-size: 1rem; }
    .final-cta { font-size: 1.2rem; }
    
    /* Grids em Coluna Única */
    .grid-2-cols { display: flex; flex-direction: column; gap: 40px; }
    .arsenal-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    
    /* Ajuste Animação Celulares (Para não cortar) */
    .twin-phones { height: 350px; margin-bottom: 20px; }
    .twin-phones .phone-mockup { width: 180px; }
    @keyframes swapPhones {
        0%, 45% { opacity: 1; z-index: 10; transform: translateX(20px) scale(1); }
        50%, 95% { opacity: 0.6; z-index: 1; transform: translateX(-20px) scale(0.9); }
        100% { opacity: 1; z-index: 10; transform: translateX(20px) scale(1); }
    }
    @keyframes swapPhonesReverse {
        0%, 45% { opacity: 0.6; z-index: 1; transform: translateX(-20px) scale(0.9); }
        50%, 95% { opacity: 1; z-index: 10; transform: translateX(20px) scale(1); }
        100% { opacity: 0.6; z-index: 1; transform: translateX(-20px) scale(0.9); }
    }

    /* Depoimentos Grandes (Estilo Stories) */
    .testimonial-item { flex: 0 0 85vw; }

    /* Preço Responsivo */
    .pricing-box { padding: 30px 15px; }
    .price-final { font-size: 3.5rem; }
    
    /* Lista de Features */
    .feature-list li { flex-direction: column; align-items: center; text-align: center; }
}