:root {
    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #128C7E;
    --text-black: #000000;
    --bg-white: #FFFFFF;
    --bg-gray: #F9F9F9;
    --bg-dark: #1A1A1A;
    --danger-red: #D32F2F;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-black);
    line-height: 1.5;
    font-size: 18px; 
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; border-radius: 8px; }

.container {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: 50px 0;
}

h1 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

p {
    margin-bottom: 20px;
    color: #333;
}

.badge-danger {
    display: inline-block;
    background-color: #FFEBEE;
    color: var(--danger-red);
    font-weight: 800;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.sub-headline {
    font-size: 20px;
    color: #444;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--whatsapp-green);
    color: #FFFFFF;
    font-weight: 900;
    font-size: 18px;
    padding: 16px 20px;
    border-radius: 8px; 
    margin: 32px 0 12px;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    text-align: center;
    transition: transform 0.2s;
}

.btn-whatsapp.btn-huge {
    font-size: 20px;
    padding: 20px 24px;
    flex-direction: column;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse {
    animation: pulse 2.5s infinite;
}

.trust-note {
    font-size: 15px;
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.bg-gray { background-color: var(--bg-gray); }
.bg-dark { background-color: var(--bg-dark); }
.text-white h2, .text-white p { color: #FFF; }

.roi { padding: 60px 0; text-align: center; }
.roi h2 { font-size: 32px; }

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #FFF;
    border: 2px solid #EEE;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.step p { margin-bottom: 0; font-size: 17px; }
.step-icon { font-size: 24px; }
.step-connector {
    width: 2px;
    height: 15px;
    background: #DDD;
    margin-left: 32px;
}

.price-box {
    background: #FFF8E1;
    border: 2px dashed #F5B041;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin: 20px 0;
}

.price-box p {
    font-weight: 900;
    color: #D35400;
    margin-bottom: 0;
    font-size: 24px;
}

.bonus-box {
    background: #FFF;
    border: 2px solid var(--danger-red);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.bonus-box strong { color: var(--danger-red); display: block; margin-bottom: 8px; font-size: 18px; }
.bonus-box p { margin-bottom: 0; font-size: 16px; }

.footnote { font-size: 15px; color: #666; font-style: italic; margin-top: 20px; }

.realistic-image { margin-top: 24px; text-align: center; border-radius: 12px; overflow: hidden; }

.shadow-img img {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.footer {
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    color: #888;
}
.footer a { color: #888; text-decoration: underline; margin: 0 10px; }

@media (min-width: 768px) {
    .container { max-width: 800px; padding: 0 40px; }
    h1 { font-size: 44px; }
    .sub-headline { font-size: 24px; }
    h2 { font-size: 36px; }
    .btn-whatsapp { display: inline-flex; width: auto; min-width: 400px; padding: 20px 30px; font-size: 22px; }
    .hero { text-align: center; }
    .badge-danger { margin: 0 auto 30px; }
    .trust-note { margin-bottom: 50px; }
}
