* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 16px !important;
}

/* Reset de fontes para sobrescrever o tema WordPress */
body, body * {
    font-family: 'Arial', sans-serif !important;
}

body h1, body h2, body h3, body h4, body h5, body h6 {
    font-family: 'Arial', sans-serif !important;
    font-weight: bold !important;
    margin: 0 0 20px 0 !important;
}

body p, body div, body span {
    font-family: 'Arial', sans-serif !important;
    line-height: 1.6 !important;
}

/* Main Content Section - Ocupa tela toda */
.main-content {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    margin: 0 !important;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 80px 0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Grid Layout: Card direita, conteúdo esquerda */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Left Content */
.left-content {
    color: white;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 60px;
}

.benefits-title {
    font-size: 2.2em !important;
    margin-bottom: 30px !important;
    text-align: center;
    font-weight: bold !important;
    line-height: 1.2 !important;
    color: white !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(39, 174, 96, 0.2);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 24px !important;
    color: #27ae60;
}

.benefit-text {
    font-size: 16px !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
    color: white !important;
}

/* Audience Section */
.audience-section h3 {
    font-size: 2em !important;
    margin-bottom: 30px !important;
    text-align: center;
    color: #27ae60 !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
}

.audience-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid #27ae60;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 0 15px 15px 0;
    transition: all 0.3s ease;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: white !important;
}

.audience-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

/* Right Content - Pricing Card (Sticky) */
.pricing-card {
    background: white;
    color: #333 !important;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: sticky;
    top: 20px;
    overflow: hidden;
}

/* Faixa de Desconto Verde com Animação */
.alert-banner {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white !important;
    text-align: center;
    padding: 15px 20px;
    font-weight: bold !important;
    font-size: 16px !important;
    position: relative;
    overflow: hidden;
    line-height: 1.3 !important;
}

.alert-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.icon {
    font-size: 20px !important;
    margin-right: 8px;
}

/* Timer de Urgência com Pulsação */
.urgency-timer {
    background: #e74c3c;
    color: white !important;
    text-align: center;
    padding: 8px;
    font-size: 14px !important;
    font-weight: bold !important;
    animation: pulse 2s infinite;
    line-height: 1.2 !important;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Card Content */
.card-content {
    padding: 60px 40px;
    text-align: center;
}

/* Logo/Imagem Quadrada do Produtor */
.producer-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #667eea;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.producer-logo:hover {
    transform: scale(1.05);
}

.producer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback: Círculo com texto se não tiver imagem */
.course-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* Elementos de Preço */
.original-price {
    text-decoration: line-through;
    color: #e74c3c !important;
    font-size: 1.2em !important;
    margin-bottom: 10px;
    font-weight: normal !important;
}

.current-price {
    font-size: 2.5em !important;
    color: #27ae60 !important;
    font-weight: bold !important;
    margin-bottom: 10px;
    line-height: 1.1 !important;
}

.installments {
    font-size: 1.8em !important;
    color: #2c3e50 !important;
    font-weight: bold !important;
    margin-bottom: 15px;
    line-height: 1.2 !important;
}

.cash-price {
    font-size: 1.3em !important;
    color: #7f8c8d !important;
    margin-bottom: 30px;
    font-weight: normal !important;
}

.bonus-info {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white !important;
    padding: 20px;
    border-radius: 15px;
    font-weight: bold !important;
    font-size: 1.2em !important;
    margin-bottom: 30px;
    line-height: 1.4 !important;
}

/* Botão CTA com Animações */
.cta-button {
    background: linear-gradient(45deg, #e74c3c, #c0392b) !important;
    color: white !important;
    padding: 20px 40px;
    border: none !important;
    border-radius: 50px;
    font-size: 1.3em !important;
    font-weight: bold !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    position: relative;
    overflow: hidden;
    width: 100%;
    line-height: 1.2 !important;
}

.cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.6) !important;
    color: white !important;
    text-decoration: none !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* FAQ Section - Ocupa tela toda */
.faq-section {
    background: white;
    padding: 80px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.faq-title {
    text-align: center;
    font-size: 2.5em !important;
    color: #2c3e50 !important;
    margin-bottom: 60px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold !important;
    line-height: 1.2 !important;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* FAQ em Sanfona */
.faq-question {
    background: #f8f9fa !important;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold !important;
    font-size: 16px !important;
    color: #2c3e50 !important;
    transition: all 0.3s ease;
    border: none !important;
    width: 100%;
    text-align: left;
    line-height: 1.4 !important;
    font-family: 'Arial', sans-serif !important;
}

.faq-question:hover {
    background: #e9ecef !important;
}

.faq-question.active {
    background: #667eea !important;
    color: white !important;
}

.faq-icon {
    font-size: 20px !important;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 30px;
    max-height: 300px;
}

.faq-answer p {
    color: #555 !important;
    line-height: 1.8 !important;
    font-size: 15px !important;
    font-family: 'Arial', sans-serif !important;
    margin: 0 !important;
}

/* Footer Minimalista */
.footer {
    background: #2c3e50;
    color: white !important;
    padding: 40px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 10px !important;
    color: white !important;
}

.footer-bottom a {
    color: #27ae60 !important;
    text-decoration: none !important;
}

.footer-bottom a:hover {
    text-decoration: underline !important;
}

/* Pop-up de Cookies */
.cookie-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.cookie-popup-container.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.cookie-popup-content {
    background: #fff !important;
    padding: 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
    text-align: center !important;
    max-width: 450px !important;
    width: 90% !important;
    position: relative !important;
    z-index: 10000 !important;
}

/* Força o popup a aparecer - CSS adicional */
body.popup-active {
    overflow: hidden;
}

.cookie-popup-container.active {
    animation: fadeIn 0.3s ease !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-popup-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-button {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.cookie-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

/* Cookie popup X button */
.cookie-close-x {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cookie-close-x:hover {
    color: #e74c3c;
}

/* Cookie buttons container */
.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie accept button */
.cookie-accept {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.cookie-accept:hover {
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.6);
}

/* Cookie cancel button */
.cookie-cancel {
    background: linear-gradient(45deg, #95a5a6, #7f8c8d);
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.4);
}

.cookie-cancel:hover {
    box-shadow: 0 6px 20px rgba(149, 165, 166, 0.6);
}

/* Responsive: Mobile First */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    
    /* Card primeiro no mobile */
    .pricing-card {
        position: relative !important;
        top: auto !important;
        max-width: 500px;
        margin: 0 auto;
        order: -1; /* Card no topo */
    }
    
    /* Conteúdo depois no mobile */
    .left-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 1.8em !important;
    }

    .audience-section h3 {
        font-size: 1.6em !important;
    }

    .faq-title {
        font-size: 2em !important;
    }

    .faq-question {
        padding: 20px !important;
        font-size: 15px !important;
    }

    .faq-answer.active {
        padding: 20px !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .card-content {
        padding: 40px 30px !important;
    }

    .current-price {
        font-size: 2em !important;
    }

    .installments {
        font-size: 1.5em !important;
    }

    .main-content {
        padding: 40px 0;
    }
}

/* Garante que funciona no Elementor */
.elementor-widget-html {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

/* Remove margens do Elementor */
.elementor-section, .elementor-container, .elementor-column, .elementor-widget-wrap {
    margin: 0 !important;
    padding: 0 !important;
}