/* Variaveis e Reset */
:root {
    /* High-Ticket LIGHT Palette */
    --primary-authority: #2C1810;
    /* Deep Coffee Brown - Elegância Sofisticada */
    --text-main: #3E2F28;
    /* Soft Brown/Grey for body text */
    --accent-gold: #C6A664;
    /* Muted Gold - Premium */
    --bg-parchment: #F9F7F2;
    /* Light Cream - Base Clara */
    --white: #FFFFFF;

    --bg-dark-contrast: #1F1B1A;
    /* For Footer only */

    --cta-disruptive: #D35400;
    /* Strategic Orange - Conversão */
    --cta-hover: #A04000;
    /* Darker Orange */

    --text-main: #2C2C2C;
    /* Soft Black for body */
    --text-muted: #555555;
    /* Gray for secondary text */
    --white: #FFFFFF;

    /* Premium Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & UX */
    --section-padding: 100px;
    --container-width: 1100px;
    --border-radius-lg: 12px;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-authority);
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.announcement-bar p {
    margin: 0;
}

.announcement-bar strong {
    font-weight: 700;
}


body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-parchment);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-authority);
    font-weight: 800;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    transition: 0.3s;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--azul-petroleo);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--terracota);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

/* CTA Buttons - Strategic Design */
.cta-button {
    display: inline-block;
    background-color: var(--cta-disruptive);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.4);
}

.cta-button.large {
    font-size: 1.4rem;
    padding: 1.5rem 4rem;
}

/* Animation Pulse - Refined */
.pulse {
    animation: pulse-animation 2.5s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(211, 84, 0, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 15px 40px rgba(211, 84, 0, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(211, 84, 0, 0.3);
    }
}

/* Hero Section - Light & Airy */
.hero {
    background-color: var(--white);
    /* Light Background */
    color: var(--primary-authority);
    /* Dark Text */
    padding: 6rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(216, 188, 126, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tagline {
    display: inline-block;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-authority);
    /* Dark Heading */
}

.hero .highlight {
    color: var(--accent-gold);
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-main);
    /* Darker Subtitle */
    opacity: 0.9;
    margin-bottom: 3.5rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 4rem;
    border: 2px solid var(--accent-gold);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Intro Course & Benefits - Clean Layout */
.intro-course {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: var(--bg-parchment);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(216, 188, 126, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--accent-gold);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-authority);
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-muted);
}

.benefit-card p strong {
    color: var(--cta-disruptive);
}


/* Curriculum - Structured Value */
.curriculum {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.module {
    border: 1px solid rgba(26, 26, 26, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-parchment);
    box-shadow: var(--shadow-premium);
}

.module-header {
    background-color: var(--primary-authority);
    color: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 2px solid var(--accent-gold);
}

.module-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 800;
    line-height: 1;
}

.module-header h3 {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.2;
}

.module-content {
    list-style: none;
    padding: 2rem;
}

.module-content li {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-main);
}

.module-content li i {
    color: var(--cta-disruptive);
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Gallery - Clean & Elegant */
.gallery {
    padding: var(--section-padding) 0;
    background-color: var(--bg-parchment);
    /* Light Background */
    color: var(--primary-authority);
}

.gallery .section-title {
    color: var(--primary-authority);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media(min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1 / 1;
    background-color: #333;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(216, 188, 126, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-note {
    text-align: center;
    font-style: italic;
    color: var(--accent-gold);
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* Bonus - Added Value (Light) */
.bonus {
    padding: var(--section-padding) 0;
    background-color: var(--white);
    /* Light Background */
    color: var(--primary-authority);
}

.bonus .section-title {
    color: var(--primary-authority);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--bg-parchment);
    /* Distinct from white bg */
    padding: 3rem 2rem;
    border: 1px solid var(--accent-gold);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.bonus-tag {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-authority);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.bonus-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-authority);
    font-size: 1.4rem;
}

.bonus-card p {
    color: var(--text-main);
    opacity: 0.9;
}

/* Testimonials - Authenticity & Social Proof */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    background: var(--bg-parchment);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    border: 1px solid rgba(216, 188, 126, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium);
}

.testimonial-card::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent-gold);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
    opacity: 0.2;
}

.stars {
    color: #F1C40F;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary-authority);
    text-align: right;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-feedback-section {
    text-align: center;
    margin-top: 3rem;
}

.feedback-placeholder-area {
    border: 2px dashed var(--verde-agua);
    padding: 3rem;
    border-radius: 10px;
    background: #f9f9f9;
    color: var(--text-light);
}

/* Offer Section - IRRESISTIBLE */
.offer {
    padding: var(--section-padding) 0;
    background: linear-gradient(rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.95)), url('https://images.unsplash.com/photo-1544025162-d7669d62d40c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.offer-box {
    background: var(--white);
    color: var(--primary-authority);
    max-width: 650px;
    margin: 0 auto;
    padding: 4rem 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--accent-gold);
    position: relative;
}

.offer-label {
    display: inline-block;
    background: var(--cta-disruptive);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.3);
}

.offer-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-authority);
}

.price-container {
    margin-bottom: 3rem;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.new-price {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-authority);
    line-height: 1;
}

.installments {
    display: block;
    font-size: 1.3rem;
    color: var(--cta-disruptive);
    font-weight: 700;
    margin-top: 1rem;
}

.offer-features {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 3rem;
}

.offer-features li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.offer-features i {
    color: #27ae60;
}

.guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* FAQ - Clean Accordion */
.faq {
    padding: var(--section-padding) 0;
    background-color: var(--bg-parchment);
}

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

details {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    border: 1px solid rgba(216, 188, 126, 0.1);
    transition: all 0.3s ease;
}

details:hover {
    border-color: var(--accent-gold);
}

summary {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-authority);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '\f0fe';
    font-family: 'Font Awesome 6 Free';
    font-size: 1.2rem;
    color: var(--accent-gold);
}

details[open] summary::after {
    content: '\f146';
}

details p {
    margin-top: 1.5rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: var(--bg-dark-contrast);
    /* Keep footer dark for grounding */
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 0.5rem;
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .announcement-bar {
        font-size: 0.8rem;
        padding: 8px 10px;
    }


    /* Header Mobile Refinements */
    .hero {
        padding: 3rem 0 4rem;
        background-position: center bottom;
    }

    .hero h1 {
        font-size: 1.8rem;
        /* Reduzido drasticamente para caber melhor */
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .tagline {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .video-wrapper {
        margin-bottom: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: -1rem;
    }

    /* Buttons Mobile */
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        white-space: normal;
        /* Permite quebra de linha se o texto for longo */
        line-height: 1.3;
    }

    /* Spacing Refinements */
    .intro-course,
    .curriculum,
    .bonus,
    .testimonials,
    .offer,
    .faq,
    .gallery {
        padding: 3rem 0;
    }

    .benefits-grid,
    .modules-container,
    .testimonials-grid {
        gap: 1.5rem;
    }

    .module-header h3 {
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }

    /* Feedback Carousel Mobile Optimization */
    .feedback-grid img {
        height: 300px;
        /* Altura menor para não ocupar toda tela */
        width: auto;
    }

    .offer-box h2 {
        font-size: 1.8rem;
    }

    .new-price {
        font-size: 3rem;
    }
}

/* Hero Price Info */
.hero-price-info {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.4;
}

.old-price-small {
    text-decoration: line-through;
    opacity: 0.8;
}

.hero-price-info strong {
    color: var(--terracota);
    font-size: 1.1rem;
}

.urgency-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gold-badge {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.urgency-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #e67e22;
    font-style: italic;
}


/* Gallery CTA */
.gallery-cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* Feedback Section */
.feedback-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.feedback-grid img {
    height: 400px;
    /* Fixed height for consistency */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    scroll-snap-align: center;
    border: 1px solid #eee;
}

/* Custom Scrollbar for feedback */
.feedback-grid::-webkit-scrollbar {
    height: 8px;
}

.feedback-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.feedback-grid::-webkit-scrollbar-thumb {
    background: var(--terracota);
    border-radius: 10px;
}

/* Profit Proof Section */
/* Profit Proof Section */
.profit-proof {
    padding: 6rem 0;
    background-color: #fff;
    text-align: center;
}

.profit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.profit-grid img {
    width: 100%;
    /* height: auto;  removed to respect original ratio */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profit-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.profit-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.profit-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
    background: var(--bege-off);
    padding: 2rem;
    border-radius: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .profit-formula {
        flex-direction: column;
        gap: 1rem;
    }

    .formula-plus,
    .formula-equal {
        transform: rotate(90deg);
        line-height: 0.5;
    }
}


.formula-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.formula-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.formula-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-authority);
}

.formula-item.highlight .formula-value {
    color: var(--cta-disruptive);
    font-size: 2.2rem;
}

.formula-plus,
.formula-equal {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-gold);
}

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


.profit-content p {
    margin-bottom: 2rem;
}

.profit-content .highlight-text {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--azul-petroleo);
    background: var(--branco-gelo);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 1px solid rgba(71, 97, 115, 0.1);
    position: relative;
    /* Removing side border for a cleaner box look, or keep it? user wants clean. Box is cleaner. */
}

/* Quote stylized */
.profit-content .highlight-text::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--terracota);
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
    opacity: 0.5;
}

.profit-content strong {
    color: var(--terracota);
    font-weight: 700;
}

/* Final CTA Section - Light & Strong */
.final-cta {
    padding: 5rem 0;
    background-color: var(--bg-parchment);
    color: var(--primary-authority);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.final-cta h2 {
    color: var(--primary-authority);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}