* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #BFD8C1;
    --off-white: #FAF9F6;
    --golden-accent: #E9C46A;
    --text-dark: #2D3748;
    --text-light: #4A5568;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-green) 0%, #A8CBA8 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.header-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--off-white) 0%, #F0F7F0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.ebook-mockup {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.mockup-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.mockup-img:hover {
    transform: scale(1.05);
}

.mockup-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mockup-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Social Proof */
.social-proof {
    padding: 4rem 0;
    background: var(--off-white);
}

.social-proof .before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-light);
}

.testimonial-content h4 {
    font-weight: 600;
    color: var(--text-dark);
}

/* Benefits */
.benefits {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #A8CBA8 100%);
}

.benefits .section-title {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Content Section */
.content {
    padding: 4rem 0;
    background: var(--off-white);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-list {
    margin-bottom: 2rem;
}

.content-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkmark {
    color: var(--golden-accent);
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
}

.content-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.ebook-preview {
    text-align: center;
}

.preview-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Bonus */
.bonus {
    padding: 4rem 0;
    background: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--off-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bonus-content {
    padding: 2rem;
}

.bonus-content h3 {
    color: var(--golden-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bonus-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.bonus-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bonus-value {
    color: var(--golden-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Before After */
.before-after {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--off-white) 0%, #F0F7F0 100%);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.before-after-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.before-after-item:hover {
    transform: scale(1.05);
}

.ba-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.ba-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
}

.ba-label {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.ba-label.before {
    color: #E53E3E;
}

.ba-label.after {
    color: #38A169;
}

.after-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-large {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-large p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-large h4 {
    font-weight: 600;
    color: var(--text-dark);
}

/* Quiz */
.quiz-section.main-quiz {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #A8CBA8 100%);
}

.quiz-section.main-quiz .section-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quiz-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
}

.quiz {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.quiz-question {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-option {
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quiz-option:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.quiz-option.selected {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.quiz-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s ease;
}

.progress-dot.active {
    background: var(--primary-green);
}

.progress-dot.completed {
    background: var(--golden-accent);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-btn {
    padding: 1rem 2rem;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-btn:hover {
    background: #A8CBA8;
    transform: translateY(-2px);
}

.quiz-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.quiz-result {
    text-align: center;
}

.quiz-result h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quiz-result p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: var(--off-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Final Offer */
.final-offer {
    padding: 4rem 0;
    background: var(--white);
    color: var(--text-dark);
}

.final-offer .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.price-section {
    margin-bottom: 3rem;
}

.original-price {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #E53E3E;
    font-weight: 600;
}

.current-price {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-highlight {
    display: inline-flex;
    align-items: baseline;
    background: var(--golden-accent);
    padding: 1rem 2rem;
    border-radius: 20px;
    margin: 1rem 0;
}

.price-currency {
    font-size: 2rem;
    font-weight: 600;
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.offer-includes {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.offer-includes h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.offer-includes ul {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.offer-includes li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.total-value {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.3rem !important;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-green);
}

.cta-section {
    text-align: center;
}

.final-cta-button {
    display: inline-block;
    padding: 2rem 3rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-text {
    display: block;
    margin-bottom: 0.5rem;
}

.cta-secure {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.guarantee {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .testimonials,
    .benefits-grid,
    .bonus-grid,
    .before-after-grid,
    .after-testimonials {
        grid-template-columns: 1fr;
    }
    
    .quiz,
    .offer-content {
        padding: 2rem;
    }
    
    .final-cta-button {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .quiz-options {
        gap: 0.5rem;
    }
    
    .quiz-option {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}
/* ========================= */
/*   Responsividade Mobile   */
/* ========================= */

/* Tablets (até 768px) */
@media (max-width: 768px) {
    .hero-content,
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .testimonials,
    .benefits-grid,
    .bonus-grid,
    .before-after-grid,
    .after-testimonials {
        grid-template-columns: 1fr;
    }

    .quiz,
    .offer-content {
        padding: 2rem;
    }

    .final-cta-button {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
    }
}

/* Celulares (até 480px) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .header-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .quiz-options {
        gap: 0.5rem;
    }

    .quiz-option {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .cta-button,
    .final-cta-button {
        width: 100%;
        display: block;
        text-align: center;
    }

    .hero,
    .benefits,
    .content,
    .bonus,
    .before-after,
    .quiz-section,
    .faq,
    .final-offer {
        padding: 2rem 1rem;
    }
}

/* Garantir que imagens e vídeos não estourem a tela */
img, video {
    max-width: 100%;
    height: auto;
}
body {
    padding-top: 80px; /* ajuste para a altura do header */
}

/* No mobile o header costuma ficar mais alto */
@media (max-width: 480px) {
    body {
        padding-top: 100px; /* aumenta o espaço embaixo do header */
    }
}
/* Corrige sobreposição do header fixo */
body {
    padding-top: 80px; /* altura do cabeçalho no desktop */
}

@media (max-width: 480px) {
    body {
        padding-top: 100px; /* altura maior no mobile */
    }
}

/* Tablets (até 768px) */
@media (max-width: 768px) {
    .hero-content,
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .testimonials,
    .benefits-grid,
    .bonus-grid,
    .before-after-grid,
    .after-testimonials {
        grid-template-columns: 1fr;
    }

    .quiz,
    .offer-content {
        padding: 2rem;
    }

    .final-cta-button {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
    }
}

/* Celulares (até 480px) */
@media (max-width: 480px) {
    body {
        font-size: 14px; /* corpo menor para caber bem */
    }

    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .header-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 2rem 0;
    }

    /* 🔥 Destaque maior no título principal */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        font-weight: 700;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        text-align: center;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .quiz-options {
        gap: 0.5rem;
    }

    .quiz-option {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .cta-button,
    .final-cta-button {
        width: 100%;
        display: block;
        text-align: center;
    }

    .hero,
    .benefits,
    .content,
    .bonus,
    .before-after,
    .quiz-section,
    .faq,
    .final-offer {
        padding: 2rem 1rem;
    }
}

/* Garantir que imagens e vídeos nunca estourem */
img, video {
    max-width: 100%;
    height: auto;
}