/* --- Variables & Reset --- */
:root {
    --bg-color: #111111;
    --text-color: #FFFFFF;
    --highlight-color: #FFD700;
    /* Gold/Yellow */
    --accent-color: #FF8C00;
    /* Orange */
    --gray-light: #CCCCCC;
    --gray-dark: #333333;
    --bg-card: #1A1A1A;
    --success: #28a745;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --container-width: 100%;
    --container-max-width: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Typography Utilities --- */
.highlight {
    color: var(--highlight-color);
    font-weight: 800;
}

/* --- Buttons --- */
.cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    padding: 18px 20px;
    background: linear-gradient(180deg, var(--highlight-color) 0%, var(--accent-color) 100%);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 900;
    text-align: center;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    border-bottom: 4px solid #cc7000;
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.4);
    border-bottom: 2px solid #cc7000;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* --- SECTION 1: HERO --- */
.hero-section {
    padding: 40px 0 60px;
    text-align: center;
    background-color: var(--bg-color);
    /* Optional: Subtle texture or gradient overlay could go here */
}

.pre-headline {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.main-headline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    /* Mobile first */
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
}

.sub-headline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 30px;
    font-weight: 400;
}

.video-wrapper {
    width: 100%;
    margin-bottom: 30px;
    border: 2px solid var(--highlight-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    position: relative;
    /* Ensure overlay is positioned relative to this */
}

.sales-video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Subtle dim */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
}

.overlay-btn {
    background: linear-gradient(180deg, #28a745 0%, #1e7e34 100%);
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    /* Pill shape */
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: pulse 1.5s infinite;
    text-align: center;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.overlay-btn:hover {
    transform: scale(1.05);
}

.offer-detail {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-top: 10px;
}

/* --- Media Queries --- */
@media (min-width: 768px) {
    .main-headline {
        font-size: 2.5rem;
    }

    .sub-headline {
        font-size: 1.2rem;
    }
}

/* --- SECTION 2: PAIN --- */
.pain-section {
    padding: 60px 0;
    background-color: #0d0d0d;
    /* Slightly darker */
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bg-card);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #cc0000;
}

.icon-x {
    width: 30px;
    height: 30px;
    background-color: #cc0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.pain-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
}

/* --- SECTION 3: OPPORTUNITY --- */
.opportunity-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.opportunity-text {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--gray-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-box {
    border: 1px solid var(--highlight-color);
    padding: 15px;
    border-radius: 8px;
    color: var(--text-color);
    background-color: rgba(255, 215, 0, 0.05);
}

.comparison-image-wrapper {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.comparison-img {
    width: 100%;
}

/* --- SECTION 4: METHOD --- */
.method-section {
    padding: 60px 0;
    background-color: #000;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.product-mockup {
    margin: 0 auto 40px;
    max-width: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.2));
}

.objection-box {
    background-color: var(--gray-dark);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
    margin-bottom: 40px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.module-list {
    display: grid;
    gap: 20px;
}

.module-item {
    background-color: var(--bg-card);
    border: 1px solid #333;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s;
}

.module-item:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-color);
}

.module-icon {
    font-size: 2rem;
}

.module-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--highlight-color);
    margin-bottom: 5px;
}

.module-content p {
    font-size: 0.95rem;
    color: var(--gray-light);
}

/* --- SECTION 5: SOCIAL PROOF --- */
.social-proof-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-testimonial {
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.print-testimonial img {
    border-radius: 8px;
    border: 1px solid #333;
    width: 100%;
}

/* --- SECTION 6: BONUSES --- */
.bonus-section {
    padding: 60px 0;
    background-color: #0d0d0d;
}

.bonus-list {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.bonus-item {
    background-color: var(--bg-card);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--highlight-color);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
}

.bonus-img {
    max-width: 150px;
    margin: 0 auto 15px;
}

.bonus-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.bonus-value {
    color: var(--gray-light);
    font-size: 0.9rem;
    text-decoration: line-through;
    margin-bottom: 15px;
}

.bonus-desc {
    font-size: 0.95rem;
    color: var(--gray-light);
}

/* --- SECTION 7: CERTIFICATE --- */
.certificate-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--bg-color), #000);
    text-align: center;
}

.certificate-img-wrapper {
    margin: 30px auto;
    max-width: 600px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    border-radius: 5px;
    overflow: hidden;
}

.certificate-text {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-light);
}

/* --- SECTION 8: OFFER --- */
.offer-section {
    padding: 60px 0;
    background-image: linear-gradient(to bottom right, #000000, #1a1a1a);
}

.price-box {
    background-color: #111;
    border: 2px solid var(--highlight-color);
    padding: 30px 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: 40px auto 20px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
    text-align: center;
}

.price-box-title {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-old {
    text-decoration: line-through;
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 5px;
}

.price-headline {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.price-value-container {
    margin-bottom: 25px;
}

.price-installments {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--highlight-color);
    line-height: 1;
    font-family: var(--font-heading);
}

.price-installment-text {
    font-size: 1rem;
    font-weight: 400;
    vertical-align: middle;
}

.price-cash {
    font-size: 1rem;
    color: var(--gray-light);
    margin-top: 5px;
}

/* --- SECTION 9: GUARANTEE --- */
.guarantee-section {
    padding: 60px 0;
    background-color: #0d0d0d;
    text-align: center;
}

.guarantee-seal {
    max-width: 200px;
    margin: 0 auto 30px;
}

.guarantee-text {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-light);
}

/* --- SECTION 10: FAQ --- */
.faq-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--highlight-color);
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--gray-light);
    line-height: 1.6;
}

.faq-answer.open {
    padding-bottom: 20px;
}

/* --- SECTION 11: FINAL CALL (FOOTER) --- */
.final-section {
    padding: 80px 0 40px;
    background-color: #000;
    text-align: center;
    border-top: 1px solid #222;
}

.footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #555;
    border-top: 1px solid #1a1a1a;
    margin-top: 60px;
}

.footer p {
    margin-bottom: 10px;
}

.footer-links a {
    color: #555;
    margin: 0 10px;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .module-list {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .print-testimonial {
        grid-column: span 1;
    }

    .bonus-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .guarantee-container {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 40px;
        max-width: 800px;
        margin: 0 auto;
    }

    .guarantee-seal {
        margin: 0;
    }
}