/* Reset e Variáveis */
:root {
    --primary-color: #4A7C59;
    --secondary-color: #8B9D83;
    --accent-color: #D4A574;
    --text-dark: #2C3E2C;
    --text-light: #F5F1E8;
    --background-cream: #F5F1E8;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4A7C59 0%, #6B9175 100%);
    color: var(--white);
    padding: 50px 0 50px;
    position: relative;
    overflow: hidden;
}

/* Reset completo para hero-content */
.hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Remover qualquer div hero-text que possa existir */
.hero-content > .hero-text,
.hero-text {
    display: contents !important;
}

/* Garantir ordem correta dos elementos */
.hero-content .subheader {
    order: 1 !important;
}

.hero-content .hero-title {
    order: 2 !important;
}

.hero-content .hero-subtitle {
    order: 3 !important;
}

.hero-content .hero-image {
    order: 4 !important;
}

.hero-content .cta-buttons {
    order: 5 !important;
}

.hero-content .trust-badges {
    order: 6 !important;
}

.subheader {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 20px;
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-image {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
    position: relative !important;
    /* Remover qualquer posicionamento absoluto que possa existir */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
}

.ebook-icon {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
    position: relative !important;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
    width: 100%;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #C89563;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    font-size: 0.9rem;
    opacity: 0.95;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Empathy Section */
.empathy-section {
    background: var(--background-cream);
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.empathy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.empathy-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.highlight-text {
    background: rgba(74, 124, 89, 0.1);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    font-style: italic;
}

.empathy-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

/* Benefits Section */
.benefits-section {
    background: var(--white);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: var(--background-cream);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

/* Author Section */
.author-section {
    background: var(--background-cream);
    padding: 80px 0;
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.author-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.author-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.author-quote {
    background: var(--white);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-style: italic;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.author-credentials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.credential {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Content Preview Section */
.content-preview {
    background: var(--white);
    padding: 80px 0;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.preview-card {
    background: var(--background-cream);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
}

.preview-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.preview-card ul {
    list-style-position: inside;
    padding-left: 0;
}

.preview-card li {
    margin-bottom: 10px;
}

.mini-faq {
    background: rgba(74, 124, 89, 0.05);
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
}

.mini-faq h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faq-quick {
    display: grid;
    gap: 25px;
}

.faq-item-quick {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
}

.faq-item-quick strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d6448 100%);
    padding: 80px 0;
    color: var(--white);
}

.section-title-white {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.offer-badge {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin: 0 auto 30px;
    display: block;
    width: fit-content;
}

.pricing-box {
    background: var(--white);
    color: var(--text-dark);
    padding: 50px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.price-old {
    text-align: center;
    margin-bottom: 20px;
}

.price-old .label {
    font-size: 1rem;
    color: #666;
}

.price-old .value {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
    display: block;
}

.price-current {
    text-align: center;
    margin-bottom: 30px;
}

.price-current .label {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.price-current .value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.installment {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

.bonus-section {
    background: var(--background-cream);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.bonus-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.bonus-check {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.urgency-box {
    background: #FFF3CD;
    border: 2px solid #FFC107;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
}

.countdown {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
}

.btn-cta {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 20px 40px;
    font-size: 1.2rem;
    width: 100%;
    display: block;
    text-align: center;
    margin: 30px 0;
}

.btn-cta:hover {
    background: #C89563;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.5);
}

.delivery-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.info-item {
    font-size: 0.95rem;
    color: #666;
}

.guarantee-box {
    background: var(--background-cream);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.guarantee-badge {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--background-cream);
    padding: 80px 0;
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Science Section */
.science-section {
    background: var(--white);
    padding: 80px 0;
}

.science-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.science-item {
    background: var(--background-cream);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.science-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.science-disclaimer {
    text-align: center;
    background: #FFF3CD;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
}

/* FAQ Section */
.faq-section {
    background: var(--background-cream);
    padding: 80px 0;
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--background-cream);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    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, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

/* Final Urgency Section */
.final-urgency {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.urgency-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.final-cta {
    margin-bottom: 40px;
}

.btn-cta-large {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 20px 50px;
    font-size: 1.3rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: #C89563;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.5);
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.btn-floating {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-floating:hover {
    background: #C89563;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: transparent;
    padding: 0 !important;
    margin: 0 !important;
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    display: block !important;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    line-height: 0;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp img {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    display: block !important;
    object-fit: cover;
    border-radius: 50%;
}

/* Responsivo */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-floating {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .btn-whatsapp {
        width: 55px !important;
        height: 55px !important;
        max-width: 55px !important;
        max-height: 55px !important;
        min-width: 55px !important;
        min-height: 55px !important;
    }
    
    .btn-whatsapp img {
        width: 55px !important;
        height: 55px !important;
        max-width: 55px !important;
        max-height: 55px !important;
        min-width: 55px !important;
        min-height: 55px !important;
    }
}

    /* Garantir ordem correta em mobile */
    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-content .subheader {
        order: 1;
    }

    .hero-content .hero-title {
        order: 2;
    }

    .hero-content .hero-subtitle {
        order: 3;
    }

    .hero-content .hero-image {
        order: 4;
    }

    .hero-content .cta-buttons {
        order: 5;
    }

    .hero-content .trust-badges {
        order: 6;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .ebook-icon {
        max-width: 280px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .empathy-content {
        grid-template-columns: 1fr;
    }

    .author-content {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .preview-grid,
    .science-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-box {
        padding: 30px 20px;
    }

    .price-current .value {
        font-size: 3rem;
    }

    .delivery-info {
        flex-direction: column;
        align-items: center;
    }

    .final-trust {
        flex-direction: column;
        gap: 20px;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: auto;   /* Garantir que não fique à esquerda */
    }

    .btn-floating {
        padding: 12px 24px;
        font-size: 0.9rem;
    }


@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .price-current .value {
        font-size: 2.5rem;
    }

    .ebook-icon {
        max-width: 250px;
    }
}
/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.btn-floating {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-floating:hover {
    background: #C89563;
    transform: translateY(-2px);
}

.btn-whatsapp,
.btn-whatsapp img {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    object-fit: cover !important;
}