:root {
    --color-bg-primary: #000000; /* Preto Sólido */
    --color-bg-secondary: #111111; /* Cinza Escuro para seções */
    --color-red-fire: #FF3333; /* Vermelho Fogo (Destaque principal) */
    --color-red-dark: #CC0000; /* Vermelho escuro para hover */
    --color-text-light: #FFFFFF; /* Branco Puro */
    --color-text-dim: #BBBBBB; /* Cinza claro para subtextos */
    --font-montserrat: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.dark-theme {
    font-family: var(--font-montserrat);
    color: var(--color-text-light);
    line-height: 1.6;
    background-color: var(--color-bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- HEADLINE E TEXTO --- */
h1, h2, h3 {
    font-weight: 900;
    margin-bottom: 25px;
}

h2 {
    font-size: 2.5em;
}

.highlight-fire {
    color: var(--color-red-fire);
}

.section-p {
    font-size: 1.15em;
    color: var(--color-text-dim);
}

/* --- LOGO SSC --- */
.logo-ssc {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.smart-arrow {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}
/* Efeito de pulsação na seta (opcional) */
.smart-arrow path {
    stroke-dasharray: 200;
    stroke-dashoffset: 0;
    animation: draw 3s infinite alternate;
}
@keyframes draw {
    from { stroke-dashoffset: 200; }
    to { stroke-dashoffset: 0; }
}

.logo-text {
    font-size: 2em;
    line-height: 1;
}
.smart-thin {
    font-weight: 300;
    color: var(--color-text-light);
    display: block;
}
.sales-bold {
    font-weight: 900;
    color: var(--color-red-fire);
    display: block;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 80px 0;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.text-area {
    flex: 2;
}

.main-headline {
    font-size: 3.8em;
    line-height: 1.1;
    text-transform: uppercase;
}

.sub-headline {
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--color-text-dim);
}

.formato-cta h3 {
    color: var(--color-red-fire);
    font-size: 1.3em;
    font-weight: 600;
}
.formato-cta p {
    color: var(--color-text-dim);
}

/* --- CONTADOR --- */
.countdown-timer {
    margin-top: 40px;
    padding: 25px;
    background-color: var(--color-bg-secondary);
    border-radius: 10px;
    border-left: 5px solid var(--color-red-fire);
}
.countdown-timer p {
    font-weight: 600;
    margin-bottom: 10px;
}

.timer {
    font-size: 3em;
    font-weight: 900;
    color: var(--color-red-fire);
}

/* --- FORMULÁRIO --- */
.form-container {
    flex: 1;
    background-color: var(--color-bg-secondary);
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(255, 51, 51, 0.2); /* Sombra vermelha tecnológica */
    overflow: hidden;
}

.form-header {
    background-color: var(--color-red-fire);
    color: var(--color-text-light);
    padding: 18px;
    text-align: center;
    font-weight: 700;
}

#pre-registration-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#pre-registration-form input {
    padding: 18px;
    border: 1px solid var(--color-bg-primary);
    background-color: #222222;
    color: var(--color-text-light);
    border-radius: 5px;
    font-size: 1em;
}

/* --- BOTÕES CTA --- */
.cta-button {
    background-color: var(--color-red-fire);
    color: var(--color-text-light);
    border: none;
    padding: 18px 35px;
    border-radius: 5px;
    font-size: 1.3em;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    text-align: center;
    display: block;
    width: 100%;
}

.cta-button:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.4);
}

.pulse-effect {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 51, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}

/* --- FAIXA DE DESTAQUE COM MOVIMENTO --- */
.highlight-bar-track {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-red-fire);
    border-bottom: 1px solid var(--color-red-fire);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.highlight-text-move {
    display: inline-block;
    padding-left: 100%; /* Inicia fora da tela */
    animation: scroll-text 40s linear infinite;
    font-weight: 600;
    color: var(--color-text-dim);
    letter-spacing: 2px;
}

.highlight-text-move span {
    color: var(--color-red-fire);
    margin: 0 20px;
}

@keyframes scroll-text {
    to { transform: translateX(-100%); }
}

/* --- SEÇÕES GENÉRICAS --- */
.section {
    padding: 80px 0;
    background-color: var(--color-bg-primary);
}
.section:nth-child(even) { /* Seções intercaladas para profundidade */
    background-color: var(--color-bg-secondary);
}

/* --- CLARITY SECTION --- */
.clarity-section .container {
    display: flex;
    gap: 40px;
}

.clarity-box {
    flex: 1;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}
.clarity-box:hover {
    transform: translateY(-5px);
}

.clarity-box h3 {
    font-size: 1.8em;
    text-transform: uppercase;
}

.not-is {
    background-color: #0d0d0d;
    border: 1px solid #444;
}

.is-is {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-red-fire);
}

.clarity-box ul {
    list-style: none;
    padding-top: 15px;
}

.clarity-box li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--color-text-dim);
}

.clarity-box li span {
    font-size: 1.2em;
    font-weight: 700;
    margin-right: 10px;
}
.clarity-box li .fa-check { color: var(--color-red-fire); }
.clarity-box li .fa-times { color: #888; }

/* --- INVESTMENT SECTION --- */
.investment-section {
    padding: 100px 0;
}

.investment-h2 {
    color: var(--color-red-fire);
    text-transform: uppercase;
    font-size: 3em;
}

.offer-box {
    background-color: var(--color-bg-secondary);
    padding: 50px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 650px;
    border: 3px solid var(--color-red-fire);
    box-shadow: 0 0 60px rgba(255, 51, 51, 0.5);
}

.price-original span {
    text-decoration: line-through;
    color: #888;
}

.price-final {
    margin: 30px 0;
}

.price-final .label {
    font-size: 1.8em;
    font-weight: 600;
    display: block;
    color: var(--color-text-light);
}

.big-price {
    font-size: 4.5em;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.8);
}

.cash-price {
    font-size: 2em;
    font-weight: 700;
    margin-top: 15px;
}

.final-cta {
    margin-top: 30px;
    font-size: 1.7em;
}

/* --- FOOTER --- */
footer {
    background-color: #000;
    color: #555;
    padding: 30px 0;
    font-size: 0.9em;
    text-align: center;
    border-top: 1px solid #333;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    .main-headline {
        font-size: 3em;
        text-align: center;
    }
    .text-area {
        order: 2;
    }
    .form-container {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
    }
    .clarity-section .container {
        flex-direction: column;
    }
    .logo-ssc {
        font-size: 1.5em;
    }
    .investment-h2 {
        font-size: 2em;
    }
    .big-price {
        font-size: 3.5em;
    }
}