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

/* Banner de Urgência */
.urgency-banner {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    position: relative;
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.3);
    z-index: 1000;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.urgency-icon {
    font-size: 20px;
    animation: pulse 1.5s infinite;
}

.urgency-text {
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.countdown {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
    to { box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
}

/* Responsividade do banner */
@media (max-width: 768px) {
    .urgency-banner {
        padding: 10px 0;
    }
    
    .urgency-content {
        gap: 10px;
        padding: 0 15px;
    }
    
    .urgency-text {
        font-size: 14px;
    }
    
    .countdown {
        font-size: 12px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .urgency-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .urgency-text {
        font-size: 13px;
        text-align: center;
    }
    
    .countdown {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* Sistema de Notificações de Compra */
.purchase-notifications {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.purchase-notification {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border: 2px solid #FF8C00;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    max-width: 280px;
    animation: slideInRight 0.5s ease-out;
    opacity: 0;
    transform: translateX(100%);
    position: relative;
    overflow: hidden;
}

.purchase-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF4500, #FF8C00, #FFD700);
    animation: shimmer 2s infinite;
}

.purchase-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.purchase-notification.hide {
    animation: slideOutRight 0.5s ease-in forwards;
}

.purchase-notification .buyer-name {
    font-weight: 900;
    color: #000000;
    font-size: 16px;
    margin-bottom: 6px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.purchase-notification .location {
    font-size: 14px;
    color: #333333;
    margin-top: 6px;
    font-weight: 600;
}

.purchase-notification .time {
    font-size: 12px;
    color: #555555;
    margin-top: 4px;
    font-weight: 500;
}

.purchase-notification.local-notification {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-left-color: #FF8C00;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}



.local-badge {
    background: linear-gradient(135deg, #FF4500 0%, #FF6347 100%);
    color: white;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 20px;
    margin-top: 12px;
    font-weight: 800;
    text-align: center;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    border: 2px solid #FF8C00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Responsividade para notificações */
@media (max-width: 768px) {
    .purchase-notifications {
        bottom: 15px;
        right: 15px;
        left: auto;
        max-width: 260px;
    }
    
    .purchase-notification {
        max-width: 260px;
        font-size: 13px;
        padding: 12px 15px;
        border-radius: 10px;
    }
    
    .purchase-notification .buyer-name {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .purchase-notification .location {
        font-size: 12px;
        margin-top: 4px;
    }
    
    .purchase-notification .time {
        font-size: 10px;
        margin-top: 2px;
    }
    
    .local-badge {
        font-size: 10px;
        padding: 4px 8px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .purchase-notifications {
        bottom: 10px;
        right: 10px;
        max-width: 220px;
    }
    
    .purchase-notification {
        max-width: 220px;
        font-size: 12px;
        padding: 10px 12px;
        border-radius: 8px;
    }
    
    .purchase-notification .buyer-name {
        font-size: 13px;
        margin-bottom: 3px;
    }
    
    .purchase-notification .location {
        font-size: 11px;
        margin-top: 3px;
    }
    
    .purchase-notification .time {
        font-size: 9px;
        margin-top: 2px;
    }
    
    .local-badge {
        font-size: 9px;
        padding: 3px 6px;
        margin-top: 6px;
    }
}

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Merriweather', serif;
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container principal */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

/* Seção 1: Hero */
.hero-section {
    padding: 60px 0 80px 0;
    text-align: center;
}



.main-headline {
    color: #FFD700;
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #111111;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid #333333;
}

.stat-item i {
    color: #FFD700;
    font-size: 20px;
}

.stat-item span {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.opening-paragraph {
    font-size: 20px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #FFFFFF;
}

/* Seção 2: Product Intro */
.product-intro {
    padding: 60px 0;
    text-align: center;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FFD700;
    color: #000000;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge i {
    font-size: 18px;
}

.sub-headline {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.product-name {
    color: #FFD700;
    font-size: 3.2rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #111111;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #333333;
}

.feature-item i {
    color: #FFD700;
    font-size: 20px;
}

.feature-item span {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.product-description {
    font-size: 19px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* Seção 3: Testimonials */
.testimonials {
    padding: 80px 0;
}

.section-title {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.testimonials-subtitle {
    color: #FFD700;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-style: italic;
}

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

.testimonial-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background-color: #111111;
    border: 2px solid #333333;
}

.testimonial-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.testimonial-image-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    max-height: none;
}

.testimonial-image-card:hover img {
    transform: scale(1.05);
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border-radius: 15px;
    font-size: 18px;
}

/* Seção 4: Mechanism */
.mechanism {
    padding: 80px 0;
}

.pillars-grid {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.pillar {
    text-align: center;
    padding: 30px;
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 10px;
}

.pillar-icon {
    font-size: 60px;
    color: #FFD700;
    margin-bottom: 20px;
}

.pillar-title {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.pillar-description {
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
}

/* Seção 4.5: Featured Books - Os 4 Pilares */
.featured-books {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
    position: relative;
}

.featured-books::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.books-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

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

.book-card {
    background: linear-gradient(135deg, #222222 0%, #1a1a1a 100%);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.book-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.book-card:hover::before {
    opacity: 1;
}

.book-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.book-cover {
    width: 200px;
    height: 300px;
    background: linear-gradient(145deg, #FFD700, #FFA500);
    border-radius: 8px;
    margin: 0 auto 20px auto;
    position: relative;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Forçar visibilidade das imagens */
.book-cover img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Imagem da capa do livro */
.book-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
    background: #1a1a1a;
    min-height: 300px;
}

/* Fallback caso a imagem não carregue */
.book-cover-img:not([src]), 
.book-cover-img[src=""] {
    display: none;
}

/* Overlay que aparece sobre a imagem */
.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    z-index: 2;
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.book-overlay .book-icon {
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.book-overlay .book-spine {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.book-cover.mindset {
    background: linear-gradient(145deg, #4CAF50, #45a049);
}

.book-cover.habits {
    background: linear-gradient(145deg, #2196F3, #1976D2);
}

.book-cover.thinking {
    background: linear-gradient(145deg, #9C27B0, #7B1FA2);
}

.book-card:hover .book-cover {
    transform: scale(1.05) rotateY(5deg);
}

.book-icon {
    font-size: 24px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.book-spine {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 10px;
    font-weight: 800;
    color: #000;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

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

.book-title {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-author {
    color: #FFA500;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    font-style: italic;
}

.book-description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.books-highlight {
    text-align: center;
    margin-top: 40px;
}

.highlight-box {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    padding: 25px 30px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    animation: pulse 3s infinite;
}

.highlight-box i {
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    font-family: 'Montserrat', sans-serif;
}

.highlight-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

/* Responsividade para Books Section */
@media (max-width: 768px) {
    .books-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .book-card {
        padding: 20px;
    }
    
    .book-cover {
        width: 160px;
        height: 240px;
    }
    
    .book-icon {
        font-size: 20px;
    }
    
    .book-spine {
        font-size: 9px;
    }
    
    .book-title {
        font-size: 1.1rem;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .highlight-box i {
        font-size: 28px;
    }
    
    .highlight-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .featured-books {
        padding: 60px 0;
    }
    
    .books-grid {
        gap: 20px;
    }
    
    .book-card {
        padding: 15px;
    }
    
    .book-cover {
        width: 140px;
        height: 210px;
    }
    
    .book-icon {
        font-size: 18px;
    }
    
    .book-title {
        font-size: 1rem;
    }
    
    .book-description {
        font-size: 13px;
    }
    
    .highlight-box {
        padding: 15px;
    }
    
    .highlight-content h4 {
        font-size: 1.1rem;
    }
    
    .highlight-content p {
        font-size: 14px;
    }
}

/* Seção 5: Value Stack */
.value-stack {
    padding: 80px 0;
}

.stack-box {
    background-color: #111111;
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 40px 30px;
    margin-top: 40px;
}

.stack-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #333333;
}

.stack-item:last-of-type:not(.bonus) {
    border-bottom: none;
}

.stack-item.bonus {
    background-color: #1a1a1a;
    margin: 20px -30px 0 -30px;
    padding: 25px 30px;
    border-left: 4px solid #FFD700;
    border-bottom: none;
}

.item-icon {
    font-size: 40px;
    color: #FFD700;
    min-width: 50px;
}

.item-content {
    flex: 1;
}

.item-title {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.item-description {
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
}

.item-value {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.total-value {
    text-align: center;
    font-size: 1.8rem;
    color: #FFD700;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #FFD700;
    font-family: 'Montserrat', sans-serif;
}

/* Seção 6: Pricing */
.pricing {
    padding: 80px 0;
    text-align: center;
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.pricing-header i {
    font-size: 40px;
    color: #FFD700;
}

.pricing-header h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin: 0;
}

.price-comparison-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.price-old, .price-new {
    background-color: #111111;
    border: 2px solid;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    min-width: 200px;
}

.price-old {
    border-color: #8B0000;
}

.price-new {
    border-color: #FFD700;
}

.price-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 16px;
}

.price-old .price-label i {
    color: #ff6b6b;
}

.price-new .price-label i {
    color: #4CAF50;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.price-old .price-value {
    color: #ff6b6b;
}

.price-new .price-value {
    color: #FFD700;
}

.price-note {
    font-size: 14px;
    color: #888888;
}

.price-arrow {
    font-size: 30px;
    color: #FFD700;
    animation: bounce 2s infinite;
}

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

.price-logic {
    margin-top: 50px;
}

.logic-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #111111;
    border-radius: 10px;
    border: 1px solid #333333;
}

.logic-item i {
    font-size: 24px;
    color: #FFD700;
    min-width: 30px;
}

.logic-item p {
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
}

.price-reveal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    margin: 40px 0 30px 0;
    padding: 20px;
    background-color: #111111;
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.price-reveal i {
    font-size: 30px;
}

.final-price {
    background-color: #111111;
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
}

.price-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #1a1a1a;
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid #333333;
    min-width: 200px;
}

.option-card i {
    font-size: 24px;
    color: #FFD700;
}

.option-text {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.price-highlight {
    color: #FFD700;
    font-weight: 800;
    font-size: 1.2em;
}

.comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
    color: #FFD700;
    font-style: italic;
    margin-top: 30px;
    padding: 20px;
    background-color: #111111;
    border-radius: 10px;
    border: 1px solid #333333;
}

.comparison i {
    font-size: 24px;
}

/* Seção 7: Guarantee */
.guarantee {
    padding: 80px 0;
}

.guarantee-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.guarantee-header i {
    font-size: 40px;
    color: #FFD700;
}

.guarantee-header h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin: 0;
}

.guarantee-box {
    background-color: #111111;
    border: 3px dashed #FFD700;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FFD700;
    color: #000000;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.guarantee-badge i {
    font-size: 24px;
}

.guarantee-content {
    position: relative;
}

.guarantee-icon {
    font-size: 60px;
    color: #FFD700;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

.guarantee-title {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 25px;
}

.guarantee-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #1a1a1a;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #333333;
}

.guarantee-feature i {
    color: #FFD700;
    font-size: 20px;
}

.guarantee-feature span {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.risk-free {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
    color: #FFD700;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333333;
}

.risk-free i {
    font-size: 24px;
}

/* Seção 8: Main CTA */
.main-cta {
    padding: 80px 0;
    text-align: center;
}

.cta-button {
    background-color: #FFD700;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 25px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    max-width: 600px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    animation: ctaPulse 1.5s ease-in-out infinite;
}

.cta-button:hover {
    background-color: #ffed4e;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
    animation-play-state: paused;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888888;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.security-item i {
    color: #FFD700;
    font-size: 16px;
}

/* Seção 9: FAQ */
.faq {
    padding: 80px 0;
}

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FFD700;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #1a1a1a;
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-answer.active {
    padding: 20px 30px 30px 30px;
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
}

/* Seção 10: Calculadora de Economia */
.calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    position: relative;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.calculator-subtitle {
    text-align: center;
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 50px;
    font-style: italic;
}

.calculator-container {
    background-color: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.calculator-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

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

.input-group label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 20px;
}

.slider-container {
    position: relative;
}

/* Styling dos sliders */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #FFD700 0%, #FFA500 100%);
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFD700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFD700;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.slider-value {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #333333;
    padding: 8px 16px;
    border-radius: 10px;
    display: inline-block;
    min-width: 120px;
    transition: all 0.3s ease;
}

.calculator-results {
    border-top: 2px solid #333333;
    padding-top: 40px;
}

.result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-header i {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 10px;
}

.result-header h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.result-card {
    background-color: #222222;
    border: 2px solid #444444;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.result-card:hover::before {
    left: 100%;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.result-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.result-card.week .result-icon {
    color: #4CAF50;
}

.result-card.month .result-icon {
    color: #2196F3;
}

.result-card.year .result-icon {
    color: #F44336;
}

.result-content h4 {
    font-size: 16px;
    color: #cccccc;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.result-value {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.economy-highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    animation: pulse 2s infinite;
}

.highlight-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.highlight-content p {
    margin: 5px 0;
    font-size: 16px;
}

.highlight-amount {
    font-size: 22px;
    text-decoration: underline;
}

.highlight-note {
    font-style: italic;
    opacity: 0.8;
    font-size: 14px !important;
}

.calculator-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-text {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-text i {
    color: #F44336;
    font-size: 20px;
}

.cta-button.calculator {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: ctaPulse 1.5s ease-in-out infinite;
}

.cta-button.calculator:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700);
    animation-play-state: paused;
}

.cta-button.calculator i {
    font-size: 20px;
}

/* Seção 11: A Escolha Visual e CTA Final */
.choice-visual {
    padding: 80px 0 60px 0;
    text-align: center;
}

.choice-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin: 50px 0;
    align-items: center;
}

.choice-box {
    background-color: #111111;
    border: 2px solid;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-box:hover {
    transform: translateY(-5px);
}

.choice-box.old-path {
    border-color: #8B0000;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1b1b 100%);
}

.choice-box.new-path {
    border-color: #FFD700;
    background: linear-gradient(135deg, #0a1a0a 0%, #1b2d1b 100%);
}

.choice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-align: center;
    justify-content: center;
}

.choice-header i {
    font-size: 30px;
}

.choice-header.old-path i {
    color: #ff6b6b;
}

.choice-header.new-path i {
    color: #FFD700;
}

.choice-header h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.choice-list {
    list-style: none;
    margin-bottom: 25px;
}

.choice-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
}

.choice-list li i {
    font-size: 18px;
    min-width: 20px;
}

.choice-list.old-path li i {
    color: #ff6b6b;
}

.choice-list.new-path li i {
    color: #4CAF50;
}

.choice-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    justify-content: center;
}

.choice-result.old-path {
    background-color: #8B0000;
    color: #FFFFFF;
}

.choice-result.new-path {
    background-color: #FFD700;
    color: #000000;
}

.choice-result i {
    font-size: 24px;
}

.choice-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.choice-cta {
    margin-top: 60px;
}

.cta-highlight {
    background-color: #111111;
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.cta-highlight i {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 20px;
}

.cta-highlight h3 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-highlight p {
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
}

.cta-button.final {
    margin: 40px auto;
}

.cta-button.final i {
    margin-right: 10px;
}

/* CTAs Específicos */
.cta-button.testimonial {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    margin-top: 30px;
    animation: ctaPulse 1.5s ease-in-out infinite;
}

.cta-button.testimonial:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px) scale(1.02);
    animation-play-state: paused;
}

.cta-button.value {
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    margin-top: 30px;
    animation: ctaPulse 1.5s ease-in-out infinite;
}

.cta-button.value:hover {
    background: linear-gradient(135deg, #FF8E53, #FF6B35);
    transform: translateY(-2px) scale(1.02);
    animation-play-state: paused;
}

.cta-button.faq {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    margin-top: 40px;
    animation: ctaPulse 1.5s ease-in-out infinite;
}

.cta-button.faq:hover {
    background: linear-gradient(135deg, #BA68C8, #9C27B0);
    transform: translateY(-2px) scale(1.02);
    animation-play-state: paused;
}

.testimonials-cta,
.value-cta,
.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.final-note {
    margin-top: 30px;
    font-size: 16px;
    color: #888888;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.final-note i {
    color: #FFD700;
    font-size: 18px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .main-headline {
        font-size: 2.2rem;
    }
    
    .product-name {
        font-size: 2.5rem;
    }
    
    body {
        font-size: 16px;
    }
    
    .opening-paragraph,
    .price-logic p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-icon {
        font-size: 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .product-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 12px 15px;
    }
    
    .testimonials-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-image-card img {
        height: auto;
    }
    
    .pillars-grid {
        gap: 25px;
    }
    
    .pillar {
        padding: 20px;
    }
    
    .pillar-icon {
        font-size: 50px;
    }
    
    .stack-box {
        padding: 25px 20px;
    }
    
    .stack-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .stack-item.bonus {
        margin: 20px -20px 0 -20px;
        padding: 25px 20px;
    }
    
    .item-icon {
        font-size: 35px;
    }
    
    .price-comparison-visual {
        flex-direction: column;
        gap: 20px;
    }
    
    .price-old, .price-new {
        min-width: auto;
        width: 100%;
    }
    
    .price-arrow {
        transform: rotate(90deg);
    }
    
    .price-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .option-card {
        min-width: auto;
        width: 100%;
    }
    
    .logic-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .final-price {
        padding: 25px;
    }
    
    .guarantee-box {
        padding: 25px;
    }
    
    .guarantee-title {
        font-size: 1.6rem;
    }
    
    .guarantee-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .choice-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .choice-divider {
        order: -1;
    }
    
    .vs-circle {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 20px 25px;
    }
    
    .security-badges {
        gap: 20px;
    }
    
    .security-item {
        font-size: 13px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer.active {
        padding: 15px 20px 25px 20px;
    }
    
    /* Calculadora responsiva */
    .calculator-container {
        padding: 25px;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .input-group label {
        font-size: 16px;
    }
    
    .slider-value {
        font-size: 18px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-card {
        padding: 20px;
    }
    
    .result-value {
        font-size: 20px;
    }
    
    .economy-highlight {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .highlight-content h4 {
        font-size: 18px;
    }
    
    .highlight-amount {
        font-size: 20px;
    }
    
    .cta-button.calculator {
        font-size: 16px;
        padding: 15px 30px;
    }
    
    .cta-button.testimonial,
    .cta-button.value,
    .cta-button.faq {
        font-size: 1.1rem;
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 1.8rem;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-comparison-visual {
        gap: 15px;
    }
    
    .price-old, .price-new {
        padding: 20px;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .logic-item {
        padding: 12px;
    }
    
    .logic-item p {
        font-size: 16px;
    }
    
    .guarantee-features {
        gap: 15px;
    }
    
    .choice-box {
        padding: 20px;
    }
    
    .choice-list li {
        font-size: 14px;
    }
    
    .testimonial-image-card img {
        height: auto;
    }
    
    .testimonials-cta {
        font-size: 16px;
        padding: 20px;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .final-price {
        padding: 20px;
    }
    
    .option-card {
        padding: 15px 20px;
    }
    
    .option-text {
        font-size: 1rem;
    }
}

/* Animações sutis */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
    }
}

.testimonial-box,
.pillar,
.stack-item,
.guarantee-box {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
.cta-button:focus,
.faq-question:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Media query para tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .pillars-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        gap: 30px;
    }
}

/* Media query para desktop largo */
@media (min-width: 1200px) {
    .container {
        max-width: 900px;
    }
    
    body {
        font-size: 20px;
    }
    
    .main-headline {
        font-size: 3.2rem;
    }
    
    .product-name {
        font-size: 3.5rem;
    }
    
    /* Calculadora mobile 480px */
    .calculator-container {
        padding: 15px;
        margin: 15px 0;
    }
    
    .calculator-subtitle {
        font-size: 15px;
    }
    
    .input-group label {
        font-size: 14px;
    }
    
    .slider-value {
        font-size: 16px;
        min-width: 90px;
        padding: 6px 12px;
    }
    
    .result-header h3 {
        font-size: 18px;
    }
    
    .result-card {
        padding: 12px;
    }
    
    .result-content h4 {
        font-size: 13px;
    }
    
    .result-value {
        font-size: 16px;
    }
    
    .economy-highlight {
        padding: 15px;
    }
    
    .highlight-icon {
        font-size: 25px;
    }
    
    .highlight-content h4 {
        font-size: 15px;
    }
    
    .highlight-amount {
        font-size: 16px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .cta-button.calculator {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .cta-button.testimonial,
    .cta-button.value,
    .cta-button.faq {
        font-size: 1rem;
        padding: 18px 20px;
    }
}

/* =================
   FACEBOOK COMMENTS SECTION - META ADS STYLE
   ================= */

.facebook-comments-section {
    background: #f0f2f5;
    padding: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif;
    font-size: 14px;
    line-height: 1.34;
}

/* Ensure emoji consistency across platforms */
.fb-post-content,
.fb-comment-text {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

.fb-reaction-icons-main span {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

/* Facebook Verified Badge Official - Meta Ads Style */
.fb-verified-badge {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    vertical-align: middle;
    background-image: url('imagens/Screenshot_74-Photoroom.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.facebook-comments {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 500px;
    overflow: hidden;
}

/* Facebook Post Header - Exact Meta Styling */
.fb-main-post {
    padding: 12px 16px 0 16px;
}

.fb-post-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.fb-post-avatar {
    margin-right: 8px;
}

.fb-post-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.fb-post-author {
    flex: 1;
    min-width: 0;
}

.fb-page-name {
    font-size: 15px;
    font-weight: 600;
    color: #1c1e21;
    line-height: 20px;
    margin: 0;
    cursor: pointer;
}

.fb-page-name:hover {
    text-decoration: underline;
}

.fb-post-time {
    font-size: 13px;
    color: #65676b;
    line-height: 16px;
    cursor: pointer;
}

.fb-post-time:hover {
    text-decoration: underline;
}

.fb-post-content {
    font-size: 14px;
    line-height: 20px;
    color: #1c1e21;
    margin-bottom: 12px;
    white-space: normal;
}

/* Reactions Bar - Exact Facebook Style */
.fb-post-engagement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px 12px 16px;
    margin: 0 -16px;
    border-bottom: 1px solid #e4e6ea;
    font-size: 15px;
    color: #65676b;
}

.fb-likes-count {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.fb-likes-count:hover {
    text-decoration: underline;
}

.fb-reaction-icons-main {
    display: flex;
    margin-right: 6px;
}

.fb-reaction-icons-main span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-left: -3px;
    border: 2px solid #ffffff;
    box-sizing: border-box;
}

.fb-reaction-icons-main span:first-child {
    margin-left: 0;
}

.fb-like-icon {
    background-image: url('imagens/download.svg');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.fb-love-icon {
    background-image: url('imagens/download (1).svg');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.fb-comments-count {
    color: #65676b;
    cursor: pointer;
}

.fb-comments-count:hover {
    text-decoration: underline;
}

/* Comments Section - Exact Facebook Style */
.fb-comments-list {
    padding: 8px 0 0 0;
}

.fb-comment {
    padding: 2px 16px 8px 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.fb-user-avatar {
    flex-shrink: 0;
    margin-top: 0;
}

.fb-user-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.fb-comment-content {
    flex: 1;
    min-width: 0;
}

.fb-comment-bubble {
    background: #f0f2f5;
    border-radius: 18px;
    padding: 8px 12px;
    display: inline-block;
    max-width: calc(100% - 80px);
    word-wrap: break-word;
    margin-bottom: 4px;
}

.fb-username {
    font-weight: 600;
    color: #050505;
    font-size: 13px;
    line-height: 16px;
    margin: 0 0 1px 0;
    display: block;
}

.fb-comment-text {
    color: #050505;
    font-size: 14px;
    line-height: 18px;
    margin: 0;
    word-wrap: break-word;
}

.fb-comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    margin-left: 12px;
}

.fb-like-btn,
.fb-reply-btn {
    background: none;
    border: none;
    color: #65676b;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    line-height: 16px;
}

.fb-like-btn:hover,
.fb-reply-btn:hover {
    text-decoration: underline;
}

.fb-time {
    color: #65676b;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
}

.fb-time:hover {
    text-decoration: underline;
}

.fb-reactions {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 4px;
}

.fb-reaction-icons {
    display: flex;
    align-items: center;
    margin-right: 4px;
}

.fb-reaction-icons .fb-like-icon,
.fb-reaction-icons .fb-love-icon {
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fb-reaction-icons .fb-like-icon {
    background-image: url('imagens/download.svg');
    z-index: 2;
}

.fb-reaction-icons .fb-love-icon {
    background-image: url('imagens/download (1).svg');
    margin-left: -4px;
    z-index: 1;
}

.fb-reaction-count {
    color: #65676b;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    margin-left: 2px;
}

.fb-reaction-count:hover {
    text-decoration: underline;
}

.fb-said {
    display: none;
}

/* Facebook CTA Button at end of comments */
.fb-cta-container {
    padding: 20px 16px 16px 16px;
    border-top: 1px solid #e4e6ea;
    background: #f8f9fa;
}

.fb-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    animation: ctaPulseGlow 3s ease-in-out infinite;
}

.fb-cta-button:hover {
    background: linear-gradient(135deg, #166fe5 0%, #1864d9 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.fb-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fb-cta-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.fb-cta-subtitle {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 16px;
}

/* CTA Button Animation Keyframes */
@keyframes ctaPulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(24, 119, 242, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 0 20px 5px rgba(24, 119, 242, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(24, 119, 242, 0.4);
    }
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .facebook-comments-section {
        padding: 12px;
    }
    
    .facebook-comments {
        max-width: 100%;
        margin: 0;
    }
    
    .fb-main-post {
        padding: 12px 12px 0 12px;
    }
    
    .fb-post-engagement {
        padding: 8px 12px 12px 12px;
        margin: 0 -12px;
    }
    
    .fb-comment {
        padding: 2px 12px 8px 12px;
    }
    
    .fb-comment-bubble {
        max-width: calc(100% - 60px);
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .facebook-comments-section {
        padding: 8px;
    }
    
    .facebook-comments {
        max-width: 100%;
        margin: 0;
    }
    
    .fb-main-post {
        padding: 12px 8px 0 8px;
    }
    
    .fb-post-engagement {
        padding: 8px 8px 12px 8px;
        margin: 0 -8px;
    }
    
    .fb-comment {
        padding: 2px 8px 8px 8px;
    }
    
    .fb-user-avatar img {
        width: 28px;
        height: 28px;
    }
    
    .fb-comment-bubble {
        max-width: calc(100% - 50px);
        padding: 7px 10px;
        border-radius: 16px;
    }
    
    .fb-username {
        font-size: 12px;
    }
    
    .fb-comment-text {
        font-size: 13px;
        line-height: 17px;
    }
    
    .fb-comment-actions {
        margin-left: 10px;
        gap: 14px;
    }
    
    .fb-like-btn,
    .fb-reply-btn,
    .fb-time,
    .fb-reaction-count {
        font-size: 12px;
    }
    
    .fb-reaction-icons-main span {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
}

/* Hover effects and animations */
.fb-comment-bubble {
    transition: background-color 0.2s ease;
}

.fb-comment:hover .fb-comment-bubble {
    background-color: #e4e6ea;
}

.fb-like-btn:hover,
.fb-reply-btn:hover {
    color: #1877f2;
}

.fb-comments-count:hover {
    color: #1877f2;
}

/* Loading animation */
@keyframes fadeInFacebook {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fb-comment {
    animation: fadeInFacebook 0.3s ease-out forwards;
}

.fb-comment:nth-child(1) { animation-delay: 0.1s; }
.fb-comment:nth-child(2) { animation-delay: 0.2s; }
.fb-comment:nth-child(3) { animation-delay: 0.3s; }
.fb-comment:nth-child(4) { animation-delay: 0.4s; }
.fb-comment:nth-child(5) { animation-delay: 0.5s; }
.fb-comment:nth-child(6) { animation-delay: 0.6s; }

/* =================
   BOFU - BOTTOM OF FUNNEL STYLES
   ================= */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.hero-badge i {
    font-size: 16px;
}

/* Price Hero */
.price-hero {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #1a1a1a, #222222);
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.old-price {
    color: #888;
    font-size: 1.1rem;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.current-price {
    color: #FFD700;
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.savings {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Product Mockup Hero */
.product-mockup-hero {
    position: relative;
    margin: 40px 0;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.product-mockup-hero img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-mockup-hero img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(255, 215, 0, 0.4);
}

.mockup-badge {
    position: absolute;
    top: -10px;
    right: 10%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.mockup-badge i {
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo para Mockup */
@media (max-width: 768px) {
    .product-mockup-hero {
        margin: 30px 0;
    }
    
    .product-mockup-hero img {
        max-height: 300px;
    }
    
    .mockup-badge {
        position: static;
        display: inline-flex;
        margin-top: 15px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Hero CTA */
.hero-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-button.hero-btn {
    font-size: 1.4rem;
    padding: 20px 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    animation: ctaPulse 2s ease-in-out infinite;
}

.guarantee-text {
    margin-top: 15px;
    color: #888;
    font-size: 14px;
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a, #111111);
}

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

.testimonial-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.user-avatar {
    font-size: 2rem;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    color: #FFD700;
    font-size: 1rem;
}

.user-location {
    color: #888;
    font-size: 0.9rem;
}

.verified-badge {
    font-size: 1.2rem;
}

.testimonial-text {
    color: #fff;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* What You Get */
.what-you-get {
    padding: 60px 0;
    background: #111;
}

.offer-highlight {
    max-width: 600px;
    margin: 0 auto;
}

.offer-main {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700;
}

.offer-icon {
    font-size: 3rem;
    flex-shrink: 0;
    color: #FFD700;
}

.offer-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.offer-content p {
    margin: 0;
    font-size: 1rem;
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #FFD700;
}

/* Mid CTA */
.mid-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #000, #1a1a1a);
}

.scarcity-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.scarcity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
    color: #FFD700;
}

.scarcity-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.scarcity-content p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-button.scarcity {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 1.2rem;
    font-weight: 800;
}

/* Final Offer */
.final-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #111);
}

.offer-box {
    max-width: 700px;
    margin: 0 auto;
    background: #222;
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #FFD700;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.offer-title {
    color: #FFD700;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.price-comparison-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.comparison-label {
    color: #888;
    font-size: 1rem;
    margin-bottom: 10px;
}

.comparison-price.old {
    color: #888;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: line-through;
}

.comparison-price.new {
    color: #FFD700;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.vs-arrow {
    font-size: 2rem;
    color: #FFD700;
}

.guarantee-simple {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFD700;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 800;
    margin-bottom: 15px;
}

.guarantee-simple p {
    color: #fff;
    margin: 0;
    font-size: 1rem;
}

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

.cta-button.final-big {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 1.5rem;
    padding: 25px 50px;
    animation: ctaPulse 2s ease-in-out infinite;
}

.final-note {
    margin-top: 20px;
    color: #888;
    font-size: 14px;
}

/* CTA Styles */
.cta-button.social {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    margin-top: 30px;
}

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

/* =================
   SEÇÃO DE OFERTA PREMIUM - BOX ELEGANTE
   ================= */

.offer-section-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #000, #1a1a1a);
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.offer-section-premium.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Badge Superior */
.offer-badge-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    margin: 0 auto 40px auto;
    width: fit-content;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.badge-icon {
    font-size: 1.2rem;
    animation: bounce 1s infinite;
}

/* Card Principal */
.offer-card {
    max-width: 480px;
    margin: 0 auto;
    background: linear-gradient(135deg, #111, #222);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Header */
.offer-header {
    margin-bottom: 30px;
}

.offer-plan-title {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.offer-plan-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 400;
}

/* Preços */
.offer-pricing {
    margin-bottom: 35px;
}

.price-striked {
    font-size: 1.1rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.8rem;
    color: #FFD700;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.amount {
    font-size: 3.2rem;
    color: #FFD700;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.period {
    font-size: 1rem;
    color: #ccc;
    font-weight: 400;
    margin-left: 8px;
}

.savings-highlight {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-block;
    animation: pulse 1.5s infinite;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

/* Benefícios */
.offer-benefits {
    margin: 35px 0;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.benefit-item:last-child {
    border-bottom: none;
}

.check-mark {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.benefit-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

/* CTA Principal */
.offer-cta-main {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    width: 100%;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: ctaPulse 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.offer-cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    animation: ctaPulseHover 1s ease-in-out infinite;
}

.offer-cta-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.offer-cta-main:active::before {
    width: 300px;
    height: 300px;
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }
}

@keyframes ctaPulseHover {
    0% {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    }
    50% {
        transform: translateY(-3px) scale(1.08);
        box-shadow: 0 15px 45px rgba(255, 215, 0, 0.8);
    }
    100% {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    }
}

.cta-rocket {
    font-size: 1.3rem;
}

.cta-text-main {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Garantia */
.offer-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
    color: #ccc;
    font-size: 0.9rem;
}

.guarantee-shield {
    color: #4CAF50;
    font-size: 1.1rem;
}

/* Urgência */
.offer-urgency {
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid #FF4500;
    border-radius: 10px;
    padding: 15px;
    margin-top: 25px;
}

.urgency-main {
    color: #FF4500;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.urgency-sub {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsivo */
    @media (max-width: 768px) {
        .offer-card {
            margin: 0 20px;
            padding: 30px 25px;
        }
        
        .offer-plan-title {
            font-size: 1.6rem;
        }
        
        .amount {
            font-size: 2.5rem;
        }
        
        .currency {
            font-size: 1.4rem;
        }
        
        .offer-cta-main {
            padding: 16px 30px;
            font-size: 1rem;
        }
        
        .benefit-text {
            font-size: 0.95rem;
        }
    }

/* =================
   SEÇÃO DE GARANTIA TOTAL
   ================= */

.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #111, #000);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.guarantee-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #111);
    border: 2px solid #FFD700;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
    position: relative;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.guarantee-header {
    margin-bottom: 40px;
}

.guarantee-shield-big {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.guarantee-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 400;
    line-height: 1.5;
}

.guarantee-content {
    margin-bottom: 40px;
}

.guarantee-benefits {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border-left: 3px solid #FFD700;
}

.guarantee-item:last-child {
    margin-bottom: 0;
}

.guarantee-check {
    font-size: 1.5rem;
    margin-top: 2px;
    color: #FFD700;
    font-weight: 900;
}

.guarantee-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
}

.guarantee-text strong {
    color: #FFD700;
}


.guarantee-cta {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 30px auto;
    max-width: 400px;
    animation: pulse 2s ease-in-out infinite;
}

.guarantee-cta .cta-text,
.guarantee-cta .cta-shield {
    color: #000 !important;
}

.guarantee-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.cta-shield {
    font-size: 1.4rem;
}

.cta-text {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.guarantee-note {
    color: #ccc;
    font-size: 0.95rem;
    margin-top: 20px;
}

.guarantee-note strong {
    color: #4CAF50;
}

/* Responsivo - Garantia */
@media (max-width: 768px) {
    .guarantee-card {
        margin: 0 20px;
        padding: 35px 25px;
    }
    
    .guarantee-title {
        font-size: 2rem;
    }
    
    .guarantee-shield-big {
        font-size: 3rem;
    }
    
    
    .guarantee-cta {
        padding: 18px 30px;
        font-size: 1rem;
    }
}

/* Mobile pequeno - Corrigir overflow */
@media (max-width: 480px) {
    .guarantee-section {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .guarantee-section .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .guarantee-card {
        margin: 0 10px;
        padding: 30px 15px;
        max-width: calc(100vw - 20px);
        box-sizing: border-box;
        width: 100%;
    }
    
    .guarantee-title {
        font-size: 1.7rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .guarantee-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .guarantee-shield-big {
        font-size: 2.5rem;
    }
    
    .guarantee-benefits {
        max-width: 100%;
    }
    
    .guarantee-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .guarantee-text {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .guarantee-cta {
        padding: 16px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: calc(100% - 20px);
        box-sizing: border-box;
    }
}

/* =================
   SEÇÃO FAQ - DÚVIDAS FREQUENTES
   ================= */

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000, #1a1a1a);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 400;
}

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

.faq-item {
    margin-bottom: 15px;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.faq-item.active {
    border-color: #FFD700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.question-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    margin-right: 20px;
}

.faq-icon {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 400;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #FFD700;
    color: #000;
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Final do FAQ */
.faq-cta-container {
    background: linear-gradient(135deg, #1a1a1a, #111);
    border: 2px solid #FFD700;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.faq-cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.faq-cta-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.4;
}

.faq-cta-button {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 20px auto;
    max-width: 100%;
    animation: pulse 2s ease-in-out infinite;
}

.faq-cta-button .cta-text,
.faq-cta-button .cta-rocket {
    color: #000 !important;
}

.faq-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.faq-guarantee-note {
    color: #4CAF50;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

/* Responsivo - FAQ */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 25px 20px 25px;
        font-size: 0.95rem;
    }
    
    .faq-cta-container {
        margin: 0 20px;
        padding: 35px 25px;
    }
    
    .faq-cta-title {
        font-size: 1.5rem;
    }
    
    .faq-cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* Responsive BOFU */
@media (max-width: 768px) {
    .current-price {
        font-size: 2.5rem;
    }
    
    .testimonials-quick {
        grid-template-columns: 1fr;
    }
    
    .offer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .price-comparison-simple {
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-price.new {
        font-size: 2.5rem;
    }
    
    .offer-box {
        padding: 25px;
    }
    
    .cta-button.final-big {
        font-size: 1.2rem;
        padding: 20px 30px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .offer-title {
        font-size: 1.8rem;
    }
    
    .comparison-price.new {
        font-size: 2rem;
    }
    
    .scarcity-box {
        padding: 20px;
    }
}

/* =================
   CSS CALCULADORA EXPANDIDA - ELEMENTOS FALTANTES
   ================= */

/* Cards da calculadora específicos */
.result-card.books .result-icon {
    color: #4CAF50;
}

.result-card.courses .result-icon {
    color: #2196F3;
}

.result-card.nossa-oferta {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, #1a1a1a, #222);
}

.result-card.nossa-oferta .result-icon {
    color: #FFD700;
}

.result-value.highlight {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Breakdown de valor */
.value-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.breakdown-item i {
    color: #FFD700;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.breakdown-content h5 {
    color: #fff;
    font-size: 0.9rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.breakdown-value {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
}

/* Projeção de ROI */
.roi-projection {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.roi-header {
    text-align: center;
    margin-bottom: 30px;
}

.roi-header i {
    color: #FFD700;
    font-size: 2rem;
    margin-right: 10px;
}

.roi-header h4 {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.roi-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.roi-scenario {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid;
}

.roi-scenario.conservative {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
}

.roi-scenario.moderate {
    background: rgba(33, 150, 243, 0.1);
    border-color: #2196F3;
}

.roi-scenario.optimistic {
    background: rgba(255, 152, 0, 0.1);
    border-color: #FF9800;
}

.roi-scenario h5 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.roi-scenario p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 5px 0;
}

.roi-value {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 10px 0 0 0 !important;
}

/* Responsivo para novos elementos */
@media (max-width: 768px) {
    .value-breakdown {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }
    
    .breakdown-item {
        gap: 10px;
    }
    
    .breakdown-item i {
        font-size: 1.2rem;
        width: 25px;
    }
    
    .roi-scenarios {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .roi-scenario {
        padding: 15px;
    }
    
    .roi-header h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .value-breakdown {
        margin: 20px 0;
        padding: 15px;
    }
    
    .breakdown-content h5 {
        font-size: 0.8rem;
    }
    
    .breakdown-value {
        font-size: 1rem;
    }
    
    .roi-projection {
        margin: 20px 0;
        padding: 20px;
    }
    
    .roi-header i {
        font-size: 1.5rem;
    }
    
    .result-value.highlight {
        font-size: 1.4rem;
    }
}
