/* --- CSS Variables & Resets --- */
:root {
    --primary: #D4AF37;
    /* Gold */
    --primary-dark: #B5952F;
    --secondary: #2C2C2C;
    /* Charcoal */
    --accent: #E8D3B8;
    /* Soft Champagne */
    --text-light: #FAFAFA;
    --text-dark: #1A1A1A;
    --bg-light: #FDFBF7;
    /* Warm off-white */
    --bg-dark: #1A1A1A;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 3rem;
}

/* --- Colors & Highlights --- */
.highlight {
    color: var(--primary);
    font-style: italic;
}

.highlight-dark {
    color: var(--primary-dark);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* --- Buttons --- */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.primary-btn {
    background-color: #27ae60;
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #219150;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.gold-btn {
    background-color: var(--primary);
    color: var(--bg-dark);
}

.gold-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.secondary-btn:hover {
    background-color: var(--text-dark);
    color: var(--bg-light);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* --- Typography --- */
.section-title,
.serif-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.big-text {
    font-size: 3rem;
    line-height: 1.1;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 4rem 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.price-offer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto 3rem auto;
    backdrop-filter: blur(10px);
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.new-price {
    display: block;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.new-price strong {
    font-size: 3rem;
    color: var(--primary);
    display: block;
}

.urgency-badge {
    display: inline-block;
    background-color: #E74C3C;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 10px;
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* --- Agitation Section --- */
.agitation {
    padding: 6rem 0;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.question-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.question-card:hover {
    transform: translateY(-5px);
}

.question-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 50px;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: bold;
}

.transition-text p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-heading);
}

/* --- Promise Section --- */
.promise {
    padding: 6rem 0;
}

.method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

.method-card p {
    font-size: 1.1rem;
}

/* --- Testimonials --- */
.single-testimonial {
    margin-top: 3rem;
}

.testimonial-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-img:hover {
    transform: scale(1.05);
}

.single-testimonial .testimonial-img {
    max-width: 350px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.gallery-grid .testimonial-img {
    max-height: 400px;
    object-fit: contain;
}

/* --- Features Section --- */
.features {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.benefits-list {
    list-style: none;
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.check {
    color: var(--primary-dark);
    font-weight: bold;
    margin-right: 10px;
}

.cross {
    color: #E74C3C;
    font-weight: bold;
    margin-right: 10px;
}

/* --- Bonuses Section --- */
.bonuses {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-dark), #2a2a2a);
}

.bonus-header p {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-card {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(5px);
}

.bonus-badge {
    width: 250px;
    flex-shrink: 0;
    background: var(--bg-dark);
    display: flex;
}

.bonus-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-content {
    padding: 2rem;
    flex: 1;
}

.bonus-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bonus-content p {
    margin-bottom: 0.5rem;
    color: #ddd;
}

.value-strike {
    margin-top: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Pricing Section --- */
.pricing {
    padding: 6rem 0;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.pricing-card .price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-card .currency {
    font-size: 1.5rem;
    vertical-align: top;
    position: relative;
    top: 10px;
}

.payment-term {
    color: #666;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.plan-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
    font-size: 0.95rem;
}

.plan-features li .check,
.plan-features li .cross {
    position: absolute;
    left: 0;
    top: 0;
}

.plan-features li.disabled {
    color: #999;
}

.badge-recommended {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.premium {
    border: 2px solid var(--primary);
}

.scarcity-text {
    font-size: 0.85rem;
    color: #E74C3C;
    font-weight: 600;
}

/* --- Summary Section --- */
.summary {
    padding: 6rem 0;
    position: relative;
}

.summary-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-content p {
    margin-bottom: 1rem;
}

/* --- Objection Handling --- */
.objection {
    padding: 6rem 0;
}

.reasons-wrap {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.reason {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
    border-bottom: 3px solid var(--primary);
}

/* --- FAQ Section --- */
.faq {
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    padding: 1.5rem;
    text-align: left;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-question.active::after {
    content: '-';
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 1.5rem;
    color: #ddd;
}

/* --- Author Section --- */
.author {
    padding: 6rem 0;
}

.author-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.author-img {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #ddd;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-image: url('amanda.png');
    background-size: cover;
    background-position: center;
}

.author-info {
    flex: 1.5;
    min-width: 300px;
}

.author-info h2 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.author-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.insta-link {
    color: var(--primary-dark);
    font-weight: bold;
    text-decoration: underline;
}

/* --- Footer --- */
footer {
    background-color: #111;
    color: #888;
    padding: 3rem 0;
}

.footer-links a {
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .big-text {
        font-size: 2.2rem;
    }

    .section-title,
    .serif-title {
        font-size: 2rem;
    }

    .bonus-card {
        flex-direction: column;
    }

    .bonus-badge {
        width: 100%;
        height: 200px;
    }

    .author-wrap {
        gap: 2rem;
        text-align: center;
        flex-direction: column-reverse;
    }

    .cta-button {
        width: 100%;
        padding: 15px 20px;
    }
}

/* --- Modal Upsell --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #fdfaf6;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

/* Mockup CSS for Book */
.book-container {
    position: relative;
    width: 100%;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0.5rem auto;
    transform: scale(0.85);
}

.mockup-book-3d {
    position: relative;
    width: 155px;
    height: 220px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(5deg);
    z-index: 5;
    transition: transform 0.5s ease;
}

.mockup-book-3d:hover {
    transform: rotateY(-5deg) rotateX(0deg);
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 3px 8px 8px 3px;
    box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.1), 5px 5px 15px rgba(0, 0, 0, 0.15);
    border-left: 6px solid #fdfaf6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    z-index: 3;
    transform: translateZ(10px);
}

.cover-border {
    border: 2px solid #ff758c;
    width: 100%;
    height: 100%;
    border-radius: 2px 5px 5px 2px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 4px;
}

.cover-top-icon {
    color: #ffd1a9;
    font-size: 0.9rem;
    line-height: 1;
}

.cover-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: #444;
    line-height: 1.2;
    margin: 0;
    max-width: 90%;
}

.cover-cursive {
    font-family: var(--font-heading);
    color: #ff758c;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.2;
    margin: -5px 0;
}

.cover-badge {
    font-size: 0.4rem;
    background: #fdfaf6;
    border: 1px solid #ccc;
    padding: 2px 4px;
    border-radius: 6px;
    margin: 2px 0;
    text-transform: uppercase;
    color: #333;
    font-weight: bold;
}

.cover-illustration {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: auto;
    margin-bottom: -2px;
}

.book-spine {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background: #eaeaea;
    transform: rotateY(-90deg) translateZ(10px);
    transform-origin: left;
    z-index: 2;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    background: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    border: 2px solid #fff;
}

.icon-calendar {
    top: -15px;
    right: 15px;
    animation-delay: 0s;
    background: #ffe3ed;
    border-color: #ffb6ce;
}

.icon-palette {
    bottom: 40px;
    right: 0px;
    animation-delay: 1s;
    background: #eef2ff;
    border-color: #c4d2ff;
}

.icon-checklist {
    top: 10px;
    left: 0px;
    animation-delay: 0.5s;
    background: #fffbd6;
    border-color: #faf093;
}

.icon-money {
    bottom: 20px;
    left: 30px;
    animation-delay: 1.5s;
    background: #e6ffed;
    border-color: #a4efb3;
}

.icon-heart {
    bottom: 100px;
    left: -10px;
    animation-delay: 0.2s;
    background: #ffecf2;
    border-color: #ffc4d6;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.modal-title {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.modal-price-area {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #27ae60;
    font-weight: 800;
    margin-bottom: -5px;
}

.modal-currency {
    font-size: 2rem;
    margin-right: 5px;
    margin-top: 5px;
}

.modal-price {
    font-size: 5.5rem;
    line-height: 0.9;
}

.modal-installments {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.modal-perks {
    color: #e84393;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.btn-modal {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 18px 20px;
    font-size: 1.1rem;
    border-radius: 8px;
    background-color: #38c172;
    box-shadow: none;
}

.btn-modal:hover {
    background-color: #2da15f;
    transform: none;
}

.modal-close-text {
    display: inline-block;
    color: #fff;
    background: #b5b5b5;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: background 0.3s ease;
}

.modal-close-text:hover {
    background: #999;
    color: #fff;
}

/* Responsividade do Modal Upsell para Mobile */
@media (max-width: 480px) {
    .modal-box {
        padding: 1.5rem 1rem;
        width: 95%;
    }

    .book-container {
        transform: scale(0.65);
        transform-origin: top center;
        height: 160px;
        margin-top: -5px;
        margin-bottom: 5px;
    }

    .modal-title {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .modal-price-area {
        align-items: center;
    }

    .modal-price {
        font-size: 4rem;
        line-height: 1;
    }

    .modal-currency {
        font-size: 1.5rem;
    }

    .modal-installments {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .modal-perks {
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .btn-modal {
        padding: 14px 15px;
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .modal-close-text {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}