/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #1A1A1A;
    --color-dark-gray: #252525;
    --color-white: #F1FAEE;
    --color-off-white: #F1F1F1;
    --color-red: #E63946;
    --color-blue: #457B9D;
    --color-orange: #F4A261;

    --font-heading: 'Montserrat', sans-serif;
    /* Fallback to Oswald if needed via class */
    --font-subhead: 'Raleway', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --container-width: 1000px;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-black);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.headline {
    font-size: 2.5rem;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.subheadline {
    font-family: var(--font-subhead);
    font-size: 1.1rem;
    color: #ccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-white);
}

.text-dark {
    color: var(--color-black);
}

.highlight-red {
    color: var(--color-red);
}

.highlight-orange {
    color: var(--color-orange);
}

.highlight-blue {
    color: var(--color-blue);
    font-weight: bold;
}

/* --- COMPONENTS --- */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-red);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    background-color: #c92b37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
    background-color: var(--color-orange);
    color: var(--color-black);
}

.btn-secondary:hover {
    background-color: #de8f4e;
}

.btn.pulse {
    animation: pulse 2s infinite;
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background-color: #000;
    margin: 0 auto 3rem;
    border: 2px solid var(--color-dark-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    color: #555;
    font-size: 1.5rem;
}

/* --- SECTIONS --- */
.section {
    padding: 5rem 0;
}

/* Hero */
.section-hero {
    background-color: var(--color-black);
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    /* Aumentado de 2rem para dar mais respiro */
}

.section-pain {
    padding-top: 4rem;
    /* Aumentado de 2rem para equilíbrio visual */
}

/* Pain */
.section-pain {
    background-color: var(--color-white);
    color: var(--color-black);
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.impact-text {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 2rem 0;
    text-align: center;
    border-left: 5px solid var(--color-red);
    padding-left: 1rem;
    background: #f9f9f9;
    padding: 1rem;
}

.pain-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.pain-list .icon {
    margin-right: 10px;
}

/* Mistake */
.section-mistake {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    border-top: 5px solid var(--color-red);
    text-align: center;
}

.content-box {
    max-width: 700px;
    margin: 0 auto;
}

.tension-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-orange);
    font-style: italic;
    margin-top: 2rem;
}

/* Method */
.section-method {
    background-color: var(--color-white);
    text-align: center;
}

.method-card {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.card-title {
    color: var(--color-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.check-list {
    text-align: left;
    margin: 2rem auto;
    max-width: 500px;
}

.check-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

/* Comparison */
.section-comparison {
    background-color: var(--color-off-white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.col {
    padding: 2rem;
    border-radius: 10px;
}

.col-before {
    background: #e8e8e8;
    color: #555;
}

.col-after {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 200, 0, 0.1);
    border: 2px solid #4caf50;
    position: relative;
    transform: scale(1.02);
}

.col h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.col li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.col span {
    margin-right: 10px;
    font-weight: bold;
}

/* Deliverables */
.section-deliverables {
    background-color: var(--color-white);
    text-align: center;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.dev-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.dev-item.bonus {
    border: 2px solid var(--color-orange);
    background: #fff8f0;
}

.dev-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.extra-info {
    margin-top: 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-blue);
}

.extra-info span {
    margin: 0 1rem;
    display: inline-block;
}

/* Offer */
.section-offer {
    background: var(--color-black);
    color: white;
    padding: 6rem 0;
}

.offer-card {
    background: #222;
    border: 2px solid var(--color-red);
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.offer-header {
    background: var(--color-red);
    padding: 2rem;
    text-align: center;
}

.offer-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-off-white);
}

.offer-header h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.offer-body {
    padding: 3rem 2rem;
}

.offer-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-proof {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    text-align: center;
    border-radius: 5px;
    margin-top: 2rem;
}

.offer-price {
    text-align: center;
    margin-bottom: 2rem;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    display: block;
    font-size: 1.2rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
    margin: 0.5rem 0;
}

.scarcity {
    color: var(--color-orange);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-offer .btn {
    display: block;
    width: 80%;
    margin: 0 auto;
}

.payment-icons {
    text-align: center;
    margin: 1.5rem 0 2rem;
    color: #888;
    font-size: 0.9rem;
}

/* Authority */
.section-authority {
    background-color: var(--color-blue);
    color: white;
    padding: 6rem 0;
}

.authority-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    /* Maior gap como na imagem */
}

.auth-image {
    flex: 0 0 auto;
}

.expert-photo {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    /* Sombra mais profunda */
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.auth-text {
    flex: 1;
    text-align: left;
}

.auth-text h2 {
    font-size: 3.2rem;
    /* Tamanho maior como na print */
    font-weight: 800;
    margin-bottom: 0.2rem;
    letter-spacing: -1px;
    line-height: 1.1;
    white-space: nowrap;
    /* Impede quebra de linha no desktop */
}

.auth-meta {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.auth-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ */
.section-faq {
    background: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-black);
}

.faq-answer {
    display: none;
    padding-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

/* Final */
.section-final {
    background: black;
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.alert-title {
    color: var(--color-red);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.impact-text-final {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: var(--color-off-white);
}

/* Footer */
footer {
    background: #111;
    color: #555;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* --- ANIMATIONS --- */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.nowrap {
    white-space: nowrap;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .headline {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-hero .btn {
        margin-bottom: 0;
    }

    .section-hero {
        padding-bottom: 3rem;
    }

    .comparison-grid,
    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .authority-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .auth-text {
        text-align: center;
    }

    .auth-text h2 {
        font-size: 2rem;
        white-space: normal;
        /* Permite quebra no celular para não transbordar */
    }

    .offer-card {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        /* Garante que não estoure no mobile */
    }

    .section-offer .btn {
        width: 90%;
        margin: 0 auto;
    }

    .video-wrapper {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}