:root {
    --primary: #F26522; /* Laranja da folha do logo */
    --primary-dark: #D65519;
    --primary-light: #FDEEDF;
    --top-bar: #424546; /* Cinza Chumbo escuro (logo text) */
    --bg-color: #F3E8DB; /* Bege quente (fundo logo) */
    --text-main: #2D3748;
    --text-muted: #718096;
    --cta-green: #29D267;
    --cta-green-dark: #1EBE5D;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.top-bar {
    width: 100%;
    background: var(--top-bar);
    color: var(--white);
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.container {
    width: 100%;
    max-width: 500px; /* Mobile-first container limit */
    padding: 20px 15px;
}

.card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px 20px 40px;
    box-shadow: 0 10px 30px rgba(66, 69, 70, 0.08); /* slight dark shadow */
    text-align: center;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.top-hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.headline {
    font-size: 1.6rem;
    font-weight: 800;
    color: #424546; /* Charcoal logo text color */
    margin-bottom: 15px;
    line-height: 1.25;
}

.headline .highlight {
    color: var(--primary);
}

.subheadline {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    padding: 0 5px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--cta-green), var(--cta-green-dark));
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 20px;
    border-radius: 50px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(41, 210, 103, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 12px;
}

.cta-button:active {
    transform: scale(0.97);
}

.cta-button i {
    font-size: 1.3rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(41, 210, 103, 0.5); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 12px rgba(41, 210, 103, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(41, 210, 103, 0); }
}

.pulse {
    animation: pulse 2.5s infinite;
}

.micro-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Scarcity Box */
.scarcity-box {
    border: 1px solid var(--primary-light);
    border-radius: 12px;
    padding: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    background-color: var(--white);
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.scarcity-box strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.divider {
    border: none;
    height: 1px;
    background: #F1F5F9;
    margin: 30px 0;
}

/* Benefits Section */
.benefits {
    text-align: left;
}

.benefits h2, .how-it-works h2 {
    font-size: 1.15rem;
    color: #424546;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border: 1px solid #F1F5F9;
    border-left: 3px solid var(--primary);
    padding: 15px;
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.25rem;
    color: var(--primary);
    background: var(--primary-light);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 0.95rem;
    color: #1A202C;
    margin-bottom: 4px;
    font-weight: 700;
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* How It Works Section */
.how-it-works {
    margin-top: 40px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-color);
    padding: 12px 18px;
    border-radius: 50px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4A5568;
}

.step-number {
    background: var(--primary);
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Trust Proof */
.trust-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
    margin-bottom: 30px;
}

.trust-item {
    background: #F8FAFC;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4A5568;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #E2E8F0;
}

.trust-item i {
    color: var(--primary);
}

/* Final CTA */
.final-cta {
    margin-top: 20px;
}

/* Fake Notification */
.fake-notification {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-size: 0.85rem;
    color: var(--text-main);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    white-space: nowrap;
    border: 1px solid var(--primary-light);
}

.fake-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.fake-notification i {
    color: var(--primary);
    background: var(--primary-light);
    padding: 8px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.logo-img {
    max-width: 160px;
    height: auto;
}

.footer-logo {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.logo-img-footer {
    max-width: 100px;
    height: auto;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .container {
        padding: 40px 15px;
    }
    .card {
        padding: 40px;
    }
    .headline {
        font-size: 1.8rem;
    }
}
