/* --- CONFIGURAÇÕES GERAIS E FONTES --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap');

:root {
    --dark-bg: #000000;
    --primary-color: #FFD700; /* Dourado/Amarelo */
    --cta-color: #28a745; /* Verde Chamativo */
    --cta-hover-color: #218838;
    --text-color: #f4f4f4;
    --card-bg: #1e1e1e;
    --border-color: #333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.7;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1, h2, h3 {
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* --- SEÇÕES ESPECÍFICAS --- */
header {
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 2rem;
}

.subheadline {
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 1rem auto 0;
}

section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.tagline h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

.features ul {
    list-style: none;
    padding-left: 0;
}

.features li {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.testimonial blockquote {
    border-left: 5px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-top: 1rem;
    font-style: italic;
}

.testimonial footer {
    text-align: right;
    margin-top: 1rem;
    font-weight: bold;
    font-style: normal;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
}

/* --- CHAMADA PARA AÇÃO (CTA) --- */
.cta {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    text-align: center;
    border: 2px solid var(--primary-color);
}

.scarcity {
    color: #ffc107; /* Amarelo alerta */
    font-weight: bold;
    margin-top: 1.5rem;
    border: 1px dashed #ffc107;
    padding: 0.5rem;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    margin: 1.5rem 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.cta-button:hover {
    background-color: var(--cta-hover-color);
    transform: scale(1.05);
}

.final-call {
    font-weight: bold;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* --- RODAPÉ --- */
.site-footer {
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    margin-top: 2rem;
}

.site-footer p {
    text-align: center;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* --- LOGO --- */
.logo-wrap {
    /* keep a placeholder in the flow if needed; image itself will be fixed */
    height: 0;
    overflow: visible;
}

.site-logo {
    max-width: 80px;
    height: auto;
    display: inline-block;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 999;
}

.footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    max-width: 70px;
    height: auto;
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999;
}

/* --- RESPONSIVIDADE PARA CELULARES --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        width: 100%;
    }

    /* smaller fixed logos on mobile to avoid covering content */
    .site-logo {
        max-width: 56px;
        top: 10px;
        right: 10px;
    }

    .footer-logo {
        max-width: 48px;
        bottom: 10px;
        right: 10px;
    }
}