@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    --brand-dark: #0a0f1c;
    --brand-blue: #1c2642;
    --brand-gold: #d4af37;
    --brand-gold-hover: #b8962c;
    --text-light: #f4f6f8;
    --text-muted: #94a3b8;
    --card-bg: rgba(28, 38, 66, 0.6);
    --border-color: rgba(212, 175, 55, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--brand-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--brand-gold);
}

.center {
    text-align: center;
}

/* Tipografia */
h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Topbar */
.topbar {
    background-color: var(--brand-gold);
    color: var(--brand-dark);
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Botões */
.btn-primary {
    display: inline-block;
    background-color: var(--brand-gold);
    color: var(--brand-dark);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: var(--brand-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Hero Section */
.hero-section {
    padding: 60px 0 100px;
    background: radial-gradient(circle at top right, var(--brand-blue), var(--brand-dark));
}

.hero-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 60px;
}

.hero-content,
.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 901px) {
    .hero-content {
        padding-right: 30px;
    }

    .hero-image {
        align-items: flex-end;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0 60px;
    background: linear-gradient(120deg, #101626 60%, var(--brand-blue) 100%);
}

.faq-header {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    padding: 32px 28px;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--brand-gold);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    padding: 0;
    transition: color 0.2s;
    line-height: 1.4;
}

.faq-question:focus,
.faq-question[aria-expanded="true"] {
    color: var(--brand-gold-hover);
}

.faq-question i {
    color: var(--brand-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.faq-toggle-icon {
    margin-left: auto;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-left: 10px;
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    color: var(--text-light);
    font-size: 1.08rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .faq-section {
        padding: 60px 0 30px;
    }

    .faq-list {
        gap: 18px;
    }

    .faq-item {
        padding: 22px 12px;
    }
}

.hero-content {
    flex: 1;
}

.hero-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.hero-logo {
    width: 140px;
    display: block;
}



.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-trust {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #64748b;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background-color: #0f172a;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 8px;
    border-top: 3px solid #ef4444;
}

.icon-box {
    font-size: 2.5rem;
    color: #ef4444;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.4rem;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background-image: linear-gradient(to right, rgba(10, 15, 28, 0.9), rgba(10, 15, 28, 0.9)), url('img/doce_de_leite.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Yellow container for modules section */
.modules-yellow-container {
    background: var(--brand-gold);
    border-radius: 14px;
    padding: 20px 30px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    display: block;
    width: fit-content;
}

.modules-yellow-container h2 {
    color: var(--brand-dark);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    text-align: center;
}

.modules-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.solution-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solution-text {
    flex: 1;
}

.solution-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.solution-image img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.benefit-list {
    list-style: none;
    margin-top: 30px;
}

.benefit-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.benefit-list i {
    color: var(--brand-gold);
    margin-right: 10px;
}

/* Modules Section */
.modules-section {
    padding: 100px 0;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.module-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-gold);
}

.module-number {
    color: var(--brand-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Expert Section */
.expert-section {
    padding: 100px 0;
    background-color: #0f172a;
}

.expert-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.expert-image {
    flex: 1;
}

.expert-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    border-bottom: 5px solid var(--brand-gold);
    display: block;
}

.expert-content {
    flex: 1;
}

.expert-content h3 {
    font-size: 2.5rem;
    color: var(--brand-gold);
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--brand-blue), #101626);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-desc {
    margin-bottom: 40px;
}

.price-box {
    color: var(--brand-gold);
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    margin-right: 5px;
}

.value {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.cents {
    font-size: 2rem;
    font-weight: 600;
}

.price-sub {
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.bonus-box {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 40px;
}

.bonus-box h4 {
    color: var(--brand-gold);
    margin-bottom: 10px;
}

.security-text {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #64748b;
}

/* Responsivo */
@media (max-width: 900px) {

    .hero-wrapper,
    .expert-wrapper,
    .solution-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .problem-grid,
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 40px 20px;
    }

    .solution-image {
        justify-content: center;
    }

    .hero-image img,
    .solution-image img,
    .expert-image img {
        max-width: min(100%, 360px);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .topbar {
        padding: 12px 0;
        font-size: 0.82rem;
        line-height: 1.4;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    .hero-section,
    .problem-section,
    .solution-section,
    .modules-section,
    .expert-section,
    .offer-section,
    .faq-section {
        padding: 64px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 22px;
    }

    .hero-logo-box {
        margin-bottom: 22px;
    }

    .hero-logo {
        width: 112px;
    }

    .btn-primary {
        width: 100%;
        padding: 16px 18px;
        font-size: 0.98rem;
        line-height: 1.3;
        text-align: center;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .problem-card,
    .module-card {
        padding: 28px 20px;
    }

    .modules-yellow-container {
        width: 100%;
        padding: 16px 18px;
    }

    .modules-yellow-container h2 {
        font-size: 1.65rem;
    }

    .modules-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .expert-content h3 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 32px 18px;
    }

    .pricing-card h2 {
        font-size: 1.9rem;
    }

    .pricing-desc,
    .bonus-box,
    .price-sub {
        margin-bottom: 28px;
    }

    .currency,
    .cents {
        font-size: 1.5rem;
    }

    .value {
        font-size: 3.5rem;
    }

    .faq-header {
        padding: 0 16px;
        margin-bottom: 32px;
    }

    .faq-list {
        gap: 14px;
        padding: 0 16px;
    }

    .faq-item {
        padding: 18px 16px;
        border-radius: 8px;
    }

    .faq-question {
        font-size: 1rem;
        gap: 10px;
        margin-bottom: 10px;
    }

    .faq-question i {
        font-size: 1rem;
    }

    .faq-toggle-icon {
        padding-left: 8px;
    }

    .faq-answer {
        font-size: 0.96rem;
        line-height: 1.65;
    }
}

@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .btn-primary {
        font-size: 0.92rem;
    }

    .value {
        font-size: 3rem;
    }

    .faq-header,
    .faq-list {
        padding: 0 12px;
    }

    .faq-item {
        padding: 16px 14px;
    }
}

/* Ajustes Mobile (Mobile First ou Media Query) */
@media (max-width: 768px) {

    /* 1. Centralizar todos os títulos e textos de apoio */
    h1,
    h2,
    h3,
    .section-header p,
    .hero-subtitle {
        text-align: center !important;
    }

    /* 2. Hero: Centralizar conteúdo, botão e aviso HeroSpark */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .btn-primary {
        display: block;
        width: 100%;
        max-width: 320px;
        /* Garante que não fique gigante em telas maiores */
        text-align: center;
        margin: 20px auto 10px auto;
        /* Centraliza o botão no container */
    }

    .hero-trust {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    /* 3. Cards de Problemas: Centralizar Ícones e textos */
    .problem-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-box {
        margin: 0 auto 15px auto;
        /* Centraliza a div do ícone */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* 4. Ajustes extras para seções de texto e especialista */
    .solution-text,
    .expert-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .benefit-list {
        text-align: left;
        /* Mantém o texto da lista à esquerda para legibilidade... */
        display: inline-block;
        margin: 20px auto;
        /* ...mas centraliza o bloco da lista na tela */
    }

    /* 5. FAQ e Módulos */
    .module-card {
        text-align: center;
    }
}