/* Configurações Globais */
:root {
    --primary: #c1ff72;
    --dark-bg: #0a0a0a;
    --card-bg: #161616;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --container-width: 1100px;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 60px;
    text-align: center;
    background: radial-gradient(circle at top, #1a1a1a 0%, #0a0a0a 100%);
}

.badge {
    background: rgba(193, 255, 114, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin: 25px 0;
    letter-spacing: -2px;
    font-weight: 900;
}

.hero-sub {
    color: var(--text-dim);
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* CTA */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-button {
    background: var(--primary);
    color: #000;
    padding: 22px 48px;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(193, 255, 114, 0.4);
}

.price-tag {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Proof Section */
.proof-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.stat-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #222;
    transition: border-color 0.3s;
}

.stat-card:hover { border-color: var(--primary); }

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Evidence Grid */
.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.media-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #222;
}

.media-placeholder {
    background: #252525;
    width: 100%;
    /* Define a proporção 16 por 9 */
    aspect-ratio: 16 / 9; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #555;
    overflow: hidden; /* Garante que a imagem não saia da borda arredondada */
    position: relative;
}

.media-placeholder img {
    width: 100%;
    height: 100%;
    /* O SEGREDO: Faz a imagem cobrir o espaço sem esticar */
    object-fit: cover; 
    /* Centraliza a foto caso ela precise ser cortada */
    object-position: center; 
}

.card-content { padding: 25px; }

.user-name { font-weight: 700; font-size: 1.1rem; display: block; }
.user-result { color: var(--primary); font-size: 0.9rem; font-weight: 600; }
.user-quote { color: var(--text-dim); margin-top: 15px; font-style: italic; }

/* Responsividade Mobile */
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    .hero-sub { font-size: 1.1rem; }
}
/* Footer Styles */
footer {
    background-color: #050505; /* Um tom levemente mais escuro que o bg principal */
    padding: 80px 0 30px;
    border-top: 1px solid #1a1a1a;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-dim);
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* Responsividade do Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}
.how-header {
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .step-container {
        display: flex;
        flex-direction: column;
        gap: 100px;
        padding: 60px 0;
    }

    .step-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .step-item:nth-child(even) {
        direction: rtl; /* Inverte a ordem para o padrão Z */
    }

    .step-item:nth-child(even) .step-text {
        direction: ltr; /* Retorna o texto para a direção normal */
    }

    .step-number {
        color: var(--primary);
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 10px;
        display: block;
    }

    .step-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .step-text p {
        color: var(--text-dim);
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .step-image {
        background: var(--card-bg);
        border-radius: 30px;
        aspect-ratio: 4/3;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #222;
        overflow: hidden;
    }

    .step-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media (max-width: 768px) {
        .step-item {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 30px;
        }
        .step-item:nth-child(even) {
            direction: ltr;
        }
    }

    .terms-content {
        padding: 60px 0;
        color: var(--text-dim);
        line-height: 1.8;
    }
    .terms-content h2 {
        color: var(--primary);
        margin-top: 45px;
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: -0.5px;
    }
    .terms-content p {
        margin-bottom: 20px;
    }
    .terms-content ul {
        margin-bottom: 25px;
        list-style-type: none;
        padding: 0;
    }
    .terms-content li {
        margin-bottom: 15px;
        padding-left: 20px;
        border-left: 2px solid var(--primary);
    }
    .disclaimer-box {
        background: var(--card-bg);
        padding: 30px;
        border-radius: 16px;
        border: 1px solid #222;
        margin: 40px 0;
    }
    strong {
        color: var(--text-main);
    }
    .help-container {
        max-width: 1000px;
        margin: 50px auto;
        padding: 20px;
        color: #fff;
        font-family: 'Segoe UI', sans-serif;
    }
    .help-header {
        text-align: center;
        margin-bottom: 60px;
    }
    .help-header h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        color: #fff;
    }
    .search-bar {
        width: 100%;
        max-width: 600px;
        padding: 15px;
        background: #111;
        border: 1px solid #333;
        border-radius: 30px;
        color: #fff;
        margin-top: 20px;
    }
    .help-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    .help-card {
        background: #111;
        border: 1px solid #222;
        padding: 30px;
        border-radius: 8px;
        transition: transform 0.3s, border-color 0.3s;
        cursor: pointer;
    }
    .help-card:hover {
        transform: translateY(-5px);
        border-color: #c5a47e; /* Cor destaque Steel Core */
    }
    .help-card i {
        font-size: 2rem;
        color: #c5a47e;
        margin-bottom: 20px;
    }
    .help-card h3 {
        margin-bottom: 15px;
        font-weight: 600;
    }
    .help-card p {
        color: #888;
        line-height: 1.6;
    }