/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B00;
    --primary-dark: #E65100;
    --secondary: #FFD600;
    --background: #0A0A0A;
    --surface: #1A1A1A;
    --text: #FFFFFF;
    --text-muted: #B0B0B0;
    --border: rgba(255, 107, 0, 0.2);
    --shadow: rgba(255, 107, 0, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Botões Flutuantes */
.whatsapp-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--surface);
    color: var(--text);
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

.back-to-top-button {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    color: white;
}

.back-to-top-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--shadow);
}

.back-to-top-button svg {
    width: 28px;
    height: 28px;
}

.back-to-top-tooltip {
    position: absolute;
    left: 70px;
    background: var(--surface);
    color: var(--text);
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top-button:hover .back-to-top-tooltip {
    opacity: 1;
}

/* Header */
.header {
    background: var(--surface);
    border-bottom: 2px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.5px;
}

.badge-bf {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.header-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    flex-wrap: wrap;
}

.header-timer-label {
    display: none;
}

.header-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.header-countdown span {
    font-weight: 900;
    color: var(--secondary);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 32px;
}

/* Contador Regressivo */
.countdown-section {
    margin: 40px 0;
}

.countdown-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.time-unit {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 90px;
}

.time-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.time-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-separator {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

/* Vídeo */
.video-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: visible;
    border: 4px solid var(--border);
    box-shadow: 0 20px 60px var(--shadow);
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-sound-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.video-sound-button:hover {
    background: rgba(255, 107, 0, 0.95);
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(255, 107, 0, 0.6);
}

.video-sound-button svg {
    color: var(--primary);
    flex-shrink: 0;
}

.video-sound-button:hover svg {
    color: white;
}

.sound-label {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.video-sound-button:hover .sound-label {
    color: white;
}

.video-sound-button.sound-on {
    background: rgba(255, 107, 0, 0.9);
}

.video-sound-button.sound-on svg,
.video-sound-button.sound-on .sound-label {
    color: white;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
}

.trust-badge svg {
    color: var(--primary);
}

/* Botões */
.btn-primary, .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px var(--shadow);
    text-decoration: none;
}

.btn-primary:hover, .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--shadow);
}

.btn-cta {
    font-size: 20px;
    padding: 20px 48px;
}

/* Seção de Combos */
.combos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 214, 0, 0.05) 100%);
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--background);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.combo-card {
    background: var(--surface);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px 32px 32px 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.2);
}

.combo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 107, 0, 0.3);
    border-color: var(--secondary);
}

.combo-badge {
    position: absolute;
    top: -12px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--background);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.combo-title {
    font-size: 24px;
    font-weight: 900;
    margin: 16px 0 12px;
    color: var(--text);
    text-align: center;
}

.combo-description {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.combo-courses {
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
}

.combo-courses-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.combo-courses-list {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.combo-pricing {
    text-align: center;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.combo-benefits {
    display: flex;
    justify-content: space-around;
    gap: 8px;
    margin: 20px 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.combo-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--background);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.combo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.5);
}

.section-header-small {
    text-align: center;
    margin-bottom: 24px;
}

.section-header-small h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.section-header-small p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Filtros */
.filters-section {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Seção de Cursos */
.courses-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Card de Curso */
.course-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.2);
    border-color: var(--primary);
}

.course-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.course-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.course-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.course-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.course-category {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.course-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 12px 0;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.course-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.course-feature svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.course-pricing {
    margin: 16px 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
}

.discount-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--background);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}

.promo-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    margin: 8px 0;
}

.payment-methods {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.course-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 107, 0, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

.badge svg {
    width: 14px;
    height: 14px;
}

.course-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px var(--shadow);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 214, 0, 0.05) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.cta-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--background);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 32px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--surface);
    padding: 60px 0 24px;
    border-top: 2px solid var(--border);
}

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

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 11px !important;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .countdown {
        gap: 6px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .time-unit {
        min-width: 65px;
        padding: 12px 10px;
        flex-shrink: 0;
    }
    
    .time-value {
        font-size: 28px;
        font-weight: 900;
    }
    
    .time-separator {
        display: none !important;
    }
    
    .time-label {
        font-size: 11px;
        margin-top: 6px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .combos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .combo-card {
        padding: 28px 20px;
    }
    
    .combo-title {
        font-size: 22px;
        margin: 20px 0 12px;
    }
    
    .combo-description {
        font-size: 15px;
    }
    
    .combo-courses-list {
        font-size: 14px;
        line-height: 1.8;
        word-wrap: break-word;
    }
    
    .combo-btn {
        padding: 16px;
        font-size: 15px;
    }
    
    .filters {
        gap: 8px;
    }
    
    .filter-btn {
        font-size: 13px;
        padding: 10px 16px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-primary, .btn-cta {
        width: 100%;
        justify-content: center;
        font-size: 17px;
        padding: 18px 32px;
        min-height: 56px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .whatsapp-button {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-button {
        width: 56px;
        height: 56px;
        bottom: 20px;
        left: 20px;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .header-info {
        font-size: 12px;
        gap: 6px;
        width: 100%;
        justify-content: space-between;
    }
    
    .header-info svg {
        width: 16px;
        height: 16px;
    }
    
    .header-timer-label {
        display: inline;
        font-size: 11px;
    }
    
    .header-countdown {
        font-size: 12px;
        padding: 4px 10px;
        gap: 4px;
        font-weight: 800;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .badge-bf {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .trust-badges {
        gap: 12px;
    }
    
    .trust-badge {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .whatsapp-tooltip,
    .back-to-top-tooltip {
        display: none;
    }
    
    .course-card {
        padding: 20px;
    }
    
    .course-btn {
        padding: 16px;
        font-size: 15px;
        min-height: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 12px;
        font-size: 15px;
    }
    
    .video-container {
        margin: 32px auto;
    }
    
    .video-sound-button {
        top: 8px;
        right: 8px;
        padding: 8px 12px;
        gap: 6px;
        border-radius: 30px;
    }
    
    .video-sound-button svg {
        width: 20px;
        height: 20px;
    }
    
    .sound-label {
        font-size: 11px;
    }
}

/* Telas muito pequenas (360px e menor) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 24px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 10px 6px;
    }
    
    .time-value {
        font-size: 24px;
    }
    
    .time-label {
        font-size: 10px;
    }
    
    .header-countdown {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .combo-card {
        padding: 24px 16px;
    }
    
    .combo-title {
        font-size: 20px;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .whatsapp-button,
    .back-to-top-button {
        width: 52px;
        height: 52px;
        bottom: 16px;
    }
    
    .whatsapp-button {
        right: 16px;
    }
    
    .back-to-top-button {
        left: 16px;
    }
    
    .video-sound-button {
        top: 6px;
        right: 6px;
        padding: 6px 10px;
        gap: 4px;
    }
    
    .video-sound-button svg {
        width: 18px;
        height: 18px;
    }
    
    .sound-label {
        font-size: 10px;
    }
}

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

.course-card {
    animation: fadeIn 0.5s ease-out;
}

/* Seção de Garantia */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.guarantee-icon {
    margin-bottom: 24px;
}

.guarantee-icon svg {
    width: 100px;
    height: 100px;
    stroke: white;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.guarantee-box h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.guarantee-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.guarantee-subtext {
    font-size: 18px;
    opacity: 0.95;
}

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

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

.faq-item {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: var(--foreground);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* CTA Final */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
}

.final-cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-box h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--foreground);
}

.final-cta-subtitle {
    font-size: 20px;
    color: var(--muted-foreground);
    margin-bottom: 40px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.benefit-item svg {
    flex-shrink: 0;
    stroke: var(--primary);
}

.btn-final-cta {
    font-size: 22px;
    padding: 24px 48px;
    min-height: 70px;
}

.urgency-text {
    margin-top: 24px;
    font-size: 16px;
    color: var(--primary);
    font-weight: 700;
}

/* Popup de Saída */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.exit-popup-content {
    position: relative;
    background: var(--card);
    border: 3px solid var(--primary);
    border-radius: 20px;
    padding: 48px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 36px;
    color: var(--muted-foreground);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.exit-popup-close:hover {
    color: var(--foreground);
}

.exit-popup-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--foreground);
}

.exit-popup-text {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--muted-foreground);
}

.exit-popup-offer {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.exit-popup-highlight {
    font-size: 24px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 8px;
}

.exit-highlight-number {
    color: var(--primary);
    font-size: 32px;
}

.exit-popup-limited {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
}

.exit-popup-btn {
    width: 100%;
    font-size: 20px;
    padding: 20px;
    margin-bottom: 16px;
}

.exit-popup-small {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Selos de Segurança */
.payment-security {
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid var(--border);
    margin-top: 40px;
}

.security-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.payment-badge {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    color: var(--foreground);
    transition: all 0.3s ease;
}

.payment-badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.security-text {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Card com badge mais vendido */
.course-card.has-badge {
    padding-top: 32px;
}

/* Badge na linha da borda do card de curso */
.course-badge-top {
    position: absolute;
    top: -12px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    z-index: 10;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

/* Badge Mais Vendido - Combos (substitui COMBO ESPECIAL) */
.combo-badge-bestseller {
    position: absolute;
    top: -12px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

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

/* Responsivo */
@media (max-width: 768px) {
    .guarantee-box h2 {
        font-size: 28px;
    }
    
    .guarantee-text {
        font-size: 18px;
    }
    
    .guarantee-subtext {
        font-size: 16px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .final-cta-box h2 {
        font-size: 28px;
    }
    
    .final-benefits {
        grid-template-columns: 1fr;
    }
    
    .btn-final-cta {
        font-size: 18px;
        padding: 18px 32px;
    }
    
    .exit-popup-content {
        padding: 32px 24px;
    }
    
    .exit-popup-content h2 {
        font-size: 28px;
    }
    
    .payment-methods {
        gap: 12px;
    }
    
    .payment-badge {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Badge de Escassez */
.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    border-radius: 30px;
    padding: 10px 20px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 700;
    color: #ef4444;
    animation: fadeIn 0.5s ease-out;
}

.scarcity-badge svg {
    stroke: #ef4444;
}

@media (max-width: 768px) {
    .scarcity-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .scarcity-badge svg {
        width: 14px;
        height: 14px;
    }
}
