/* --- DESIGN SYSTEM KIT DO BEABÁ --- */
:root {
    --primary-blue: #0066FF;
    --primary-blue-dark: #0052cc;
    --secondary-yellow: #FFD600;
    --secondary-yellow-dark: #eab308;
    --accent-orange: #FF6B00;
    --accent-green: #4CAF50;
    --white: #FFFFFF;
    --bg-light: #F0F4FF;
    --text-dark: #1E293B;
    --text-gray: #64748B;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html,
body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
.brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

/* --- REUSABLE UTILITIES --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-gray);
    max-width: 700px;
    margin: -1.5rem auto 3rem;
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--secondary-yellow);
    color: var(--text-dark);
    box-shadow: 0 8px 0 var(--secondary-yellow-dark);
    transform: translateY(-4px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 0 var(--secondary-yellow-dark);
    background-color: #ffe033;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 0 0 var(--secondary-yellow-dark);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 8px 0 var(--primary-blue-dark);
    transform: translateY(-4px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 0 var(--primary-blue-dark);
    background-color: #1a7bff;
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 0 0 var(--primary-blue-dark);
}

/* --- HERO SECTION --- */
.hero {
    background: radial-gradient(circle at top right, #E0EBFF, var(--white));
    padding: 15px 0 60px;
    /* Reduzi ainda mais o topo */
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: block;
    text-align: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
    max-width: 850px;
    margin: 0 auto;
}

.hero-tag {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 1.4rem;
    /* Texto preto ainda menor */
    line-height: 1.2;
    margin-bottom: 15px;
    /* Reduzi de 24px para 15px */
    font-weight: 600;
}

.hero h1 span {
    color: var(--primary-blue);
    display: block;
    font-size: 4.5rem;
    /* Texto azul maior */
    margin-bottom: 8px;
    font-weight: 800;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.hero-bullets {
    margin-bottom: 32px;
}

.bullet-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.bullet-icon {
    width: 20px;
    height: 20px;
    background-color: var(--accent-green);
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

/* --- VIEWING COUNTER --- */
.viewing-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0px 0 12px;
    /* Reduzi margem superior para colar na VSL */
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.viewing-counter .eye-icon {
    width: 20px;
    height: 20px;
    color: #10B981;
    /* Verde esmeralda para o ícone */
}

.viewing-counter .count-number {
    color: #10B981;
    font-weight: 700;
}

/* --- VSL HERO --- */
.vsl-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Largura ideal para vídeo vertical */
    margin: 15px auto 10px;
    /* Reduzi as margens externas */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background: #000;
    aspect-ratio: 9/16;
    /* Proporção Vertical */
    border: 3px solid var(--white);
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    z-index: 2;
}

.vsl-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.play-btn-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    /* Troquei amarelo por branco */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.play-btn-circle::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid var(--primary-blue);
    /* Ícone em azul para contraste */
    margin-left: 5px;
}

.vsl-overlay p {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.vsl-playing .vsl-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
    overflow: hidden;
}

.hero-mockup img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    /* Reduzi de 40px para 15px */
}

.badge {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid #E2E8F0;
}

/* --- PRESENTATION / ABOUT --- */
.presentation {
    background-color: var(--white);
    text-align: center;
}

.presentation-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: -120px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    position: relative;
}

/* --- PAIN POINTS --- */
.pains {
    background-color: #F8FAFC;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pain-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #edf2f7;
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pain-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* --- SOLUTION --- */
.solution {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
}

.solution h2 {
    color: white;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-item h3 {
    color: var(--secondary-yellow);
    margin: 15px 0;
}

/* --- MODULES --- */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.module-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid #F1F5F9;
    transition: var(--transition);
}

.module-card:hover {
    border-color: var(--primary-blue);
    transform: scale(1.02);
}

.module-title {
    font-size: 1.1rem;
    margin: 15px 0 10px;
    color: var(--primary-blue);
}

/* --- VISUAL PROOF --- */
.proof {
    background-color: var(--bg-light);
}

.proof-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* --- PRICING --- */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
    width: 100%;
}

.plan {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-md);
    border: 2px solid #F1F5F9;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    z-index: 5;
    box-shadow: var(--shadow-lg);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
    font-family: 'Outfit';
}

.plan-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.plan-features li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--accent-green);
    font-weight: bold;
}

.plan-features li.unavailable {
    color: var(--text-gray);
    opacity: 0.5;
    text-decoration: line-through;
}

.plan-features li.unavailable::before {
    content: "✕";
    color: #ef4444;
}

/* --- BONUSES --- */
.bonus-section {
    background-color: #FFFBEB;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.bonus-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bonus-info {
    padding: 20px;
}

.bonus-tag {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* --- FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #F8FAFC;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question::after {
    content: "-";
}

/* --- ANIMATIONS --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 10px 0 40px;
        /* Topo mínimo no mobile */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero h1 {
        font-size: 1.15rem;
        /* Texto preto mobile menor */
    }

    .hero h1 span {
        font-size: 2.8rem;
        /* Texto azul mobile */
    }

    .hero-bullets {
        display: inline-block;
        text-align: left;
        width: 100%;
        max-width: 300px;
    }

    .bullet-item {
        font-size: 0.95rem;
    }

    .hero-badges {
        justify-content: center;
        gap: 10px;
    }

    .badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .presentation-card {
        margin-top: 0;
        padding: 25px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .plan.featured {
        transform: scale(1);
        margin: 20px 0;
    }

    .plan {
        padding: 25px;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .proof-img {
        width: 100%;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }
}