:root {
    --bg-dark: #3b0f19;
    --bg-darker: #260810;
    --bg-card: #571725;
    --bg-beige: #f4ebe1;
    --text-primary: #faefdf;
    --text-secondary: #e3ccb3;
    --gold: #c49a6c;
    --gold-hover: #d6b289;
    --gold-light: #faefdf;
    --green-elegant: #822238;
    --green-hover: #a12b46;
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold-light);
}

a {
    text-decoration: none;
    color: var(--text-primary);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

.bg-darker {
    background-color: var(--bg-beige);
    color: var(--bg-darker);
}

.bg-darker h2, .bg-darker h3, .bg-darker h4 {
    color: var(--bg-darker);
}

.bg-darker section, .bg-darker p, .bg-darker .aprendizado-item p {
    color: var(--bg-dark);
}

.bg-darker .divider {
    background-color: var(--bg-dark);
}

.bg-darker .pq-card, .bg-darker .garantia-wrapper {
    color: var(--text-primary);
}

.bg-darker .garantia-text p, .bg-darker .pq-card p {
    color: var(--text-secondary);
}

.bg-darker .garantia-text h2 {
    color: var(--gold-light);
}

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

/* Typography elements */
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 20px auto 40px;
}

.align-left {
    margin: 20px 0 30px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 2.5rem;
    text-align: center;
}

.golden-border {
    border: 2px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-small, .btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--green-elegant);
    color: white;
    padding: 18px 36px;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 8px 25px rgba(43, 76, 63, 0.4);
}

.btn-primary:hover {
    background-color: var(--green-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(43, 76, 63, 0.6);
}

.btn-primary i {
    margin-left: 10px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-small {
    background-color: var(--gold);
    color: var(--bg-dark);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.btn-small:hover {
    background-color: var(--gold-hover);
}

.btn-large {
    background-color: var(--gold);
    color: var(--bg-darker);
    padding: 22px 48px;
    font-size: 1.3rem;
    font-weight: 700;
    width: 100%;
    max-width: 400px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-large:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(38, 8, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at center, #571725 0%, #3b0f19 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #faefdf, #c49a6c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

.secure-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secure-text i {
    color: #4cd137;
}

.hero-image {
    perspective: 1000px;
}

.mockup {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    transform: rotateY(-15deg) rotateX(5deg);
    box-shadow: -20px 30px 50px rgba(0,0,0,0.6);
    transition: var(--transition);
}

.mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg);
    box-shadow: -10px 20px 40px rgba(0,0,0,0.8);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-20px) translateX(-50%);}
    60% {transform: translateY(-10px) translateX(-50%);}
}

/* Dores / Problemas */
.dores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dor-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    border-bottom: 3px solid var(--bg-card);
    transition: var(--transition);
    text-align: center;
}

.dor-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.dor-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.dor-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.dor-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Benefícios */
.beneficios-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.beneficios-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.beneficios-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.beneficios-list {
    margin-bottom: 30px;
}

.beneficios-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.beneficios-list i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 4px;
}

.mt-3 {
    margin-top: 1.5rem;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--bg-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    overflow: hidden;
}

/* Aprendizados */
.aprendizados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.aprendizado-item {
    display: flex;
    gap: 20px;
}

.icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
}

.aprendizado-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.aprendizado-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Sobre a Autora */
.autora-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.author-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.autora-text h2 {
    font-size: 2.5rem;
}

.autora-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Para quem é */
.para-quem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.pq-card {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.pq-card i {
    color: var(--gold);
    margin-top: 5px;
}

/* Depoimentos */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-card {
    background-color: var(--bg-beige);
    padding: 40px 30px;
    border-radius: 8px;
    border: none;
    color: var(--bg-darker);
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
}

.depoimento-card p {
    font-style: italic;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.depoimento-author {
    font-weight: 600;
    color: var(--bg-darker);
}

/* Oferta */
.oferta-box {
    background: linear-gradient(135deg, rgba(87,23,37,1) 0%, rgba(38,8,16,1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.oferta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.oferta-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.price-box {
    margin-bottom: 40px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--gold);
}

.currency {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: 700;
}

.amount {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: 700;
}

.payment-info {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #4cd137;
    font-weight: 500;
}

.safe-checkout {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Garantia */
.garantia-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
}

.seal {
    font-size: 4rem;
    color: var(--gold);
}

.garantia-text p {
    color: var(--text-secondary);
    margin-top: 10px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-secondary);
}

/* CTA Final */
.bg-accent {
    background: linear-gradient(135deg, var(--green-elegant) 0%, rgba(38,8,16,1) 100%);
}

.cta-final h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-content p {
    color: var(--text-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--text-secondary);
    margin-left: 15px;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .beneficios-wrapper, .autora-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .subtitle {
        margin: 0 auto 30px;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .mockup {
        margin-top: 40px;
    }
    
    .divider.align-left {
        margin: 20px auto;
    }
    
    .beneficios-list li {
        justify-content: center;
        text-align: left;
    }
    
    .garantia-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .seal {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2, .beneficios-text h2, .autora-text h2, .oferta-content h2 {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 4rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   Seção de Bônus 3 - Custom Styling
   ========================================================================== */
.bonus-badge {
    background-color: var(--gold);
    color: var(--bg-darker);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(196, 154, 108, 0.2);
}

.bonus-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bg-darker .bonus-container {
    background: #ffffff;
    border: 1px solid rgba(130, 34, 56, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.bonus-info {
    text-align: left;
}

.bonus-info h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--gold);
}

.bg-darker .bonus-info h3 {
    color: #822238;
}

.bonus-subtitle {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
}

.bg-darker .bonus-subtitle {
    color: #555555;
}

.bonus-storytelling {
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.bg-darker .bonus-storytelling {
    color: #444444;
}

.bonus-pilars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

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

.bonus-pilar-icon {
    font-size: 1.25rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-darker .bonus-pilar-icon {
    color: #822238;
    background: rgba(130, 34, 56, 0.08);
}

.bonus-pilar-text h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.bg-darker .bonus-pilar-text h4 {
    color: #260810;
}

.bonus-pilar-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bg-darker .bonus-pilar-text p {
    color: #666666;
}

.bonus-value-box {
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
    padding-top: 25px;
}

.bg-darker .bonus-value-box {
    border-top: 1px dashed rgba(130, 34, 56, 0.2);
}

.bonus-value-text {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.bg-darker .bonus-value-text {
    color: #555555;
}

.bonus-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4cd137;
}

.bg-darker .bonus-price {
    color: #27ae60;
}

.bonus-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.bonus-mockup:hover {
    transform: translateY(-5px) scale(1.02);
}

@media (max-width: 992px) {
    .bonus-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 40px;
    }
}

