/* Estilos do Novo Layout */

/* ... (todo o seu CSS, desde :root até o final) ... */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f39c12;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    /* etc... */
}

/* ... todo o resto do seu CSS vai aqui ... */

.btn-unlock {
    display: inline-block;
    background: linear-gradient(45deg, #27ae60, #2ecc71); /* var(--success-color) */
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.btn-unlock:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.4);
}

.btn-unlock i {
    margin-right: 10px;
}

        html {
            scroll-behavior: smooth;
        }

        :root {
            --primary-color: #667eea;
            --secondary-color: #764ba2;
            --accent-color: #f39c12;
            --success-color: #27ae60;
            --danger-color: #e74c3c;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
            --light-text: #7f8c8d;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; background: #f8f9fa; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        h1, h2, h3 { color: var(--dark-text); }

        /* Barra de Urgência */
        .urgency-bar { background: linear-gradient(45deg, #e74c3c, #c0392b); color: white; text-align: center; padding: 10px; font-weight: bold; animation: pulse 2s infinite; }
        @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.8; } 100% { opacity: 1; } }

        /* Hero Section */
        .hero { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: white; padding-top: 60px; text-align: center; position: relative; overflow: hidden; z-index: 1;}
        .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom; background-size: cover; }
        .hero h1 { font-size: 2.8rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        .hero .subtitle { font-size: 1.3rem; margin-bottom: 30px; font-weight: 300; max-width: 800px; margin: 0 auto 40px; }
        .highlight { background: linear-gradient(45deg, #f39c12, #e67e22); padding: 2px 8px; border-radius: 4px; font-weight: bold; }

        #sessao_cursos {
            position: relative;
            z-index: 0;
        }

        
        /* Benefícios Hero */
        .hero-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; max-width: 900px; margin: 40px auto 0; }
        .hero-benefit { text-align: center; padding: 20px; background: #e8e8e8; border-radius: 15px; backdrop-filter: blur(10px); }
        .hero-benefit i { font-size: 2.5rem; margin-bottom: 15px; color: var(--accent-color); }
        .hero-benefit h3 { color: rgb(62, 62, 62); font-size: 1.1rem; }
        .hero-benefit p { font-size: 0.9rem; opacity: 0.9; }

        /* Seções Genéricas */
        .section { padding: 80px 0; }
        .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 20px; color: var(--dark-text); }
        .section-subtitle { text-align: center; font-size: 1.2rem; color: var(--light-text); margin-bottom: 50px; max-width: 700px; margin: 0 auto 50px; }

        /* Seção Problemas */
        .problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
        .problem-card { background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); text-align: center; border-left: 5px solid var(--danger-color); transition: transform 0.3s ease; }
        .problem-card:hover { transform: translateY(-5px); }
        .problem-icon { font-size: 3rem; margin-bottom: 20px; color: var(--danger-color); }

        /* Seção Cursos */
        .courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 50px; }
        .course-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.1); transition: all 0.3s ease; display: flex; flex-direction: column; }
        .course-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
        .course-image-wrapper { height: 220px; width: 100%; overflow: hidden; position: relative; }
        .course-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .course-popular-tag { position: absolute; top: 15px; right: -50px; background: var(--danger-color); color: white; padding: 5px 60px; font-size: 0.8rem; font-weight: bold; transform: rotate(45deg); text-align: center; }
        .course-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
        .course-title { font-size: 1.4rem; font-weight: bold; margin-bottom: 10px; color: var(--dark-text); }
        .course-description { color: var(--light-text); margin-bottom: 20px; line-height: 1.5; font-size: 0.95rem; }
        .course-features { list-style: none; margin-bottom: 25px; }
        .course-features li { padding: 4px 0; color: var(--dark-text); font-weight: 500; font-size: 0.9rem;}
        .course-features li i { margin-right: 10px; color: var(--success-color); }
        .course-card .btn { margin-top: auto; } /* Empurra o botão para baixo */

        /* Botão Principal */
        .btn { display: inline-block; padding: 15px 30px; font-size: 1rem; font-weight: bold; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; border: none; box-shadow: 0 8px 25px rgba(0,0,0,0.15); width: 100%; text-align: center; }
        .btn-primary { background: linear-gradient(45deg, var(--success-color), #2ecc71); color: white; }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(39, 174, 96, 0.4); }

        /* Depoimentos */
        .testimonials { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: white; }
        .testimonials .section-title, .testimonials .section-subtitle { color: white; }
        .video-facade { position: relative; cursor: pointer; overflow: hidden; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .video-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
        .video-facade:hover img { transform: scale(1.05); }
        .play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: rgba(0, 0, 0, 0.6); border-radius: 50%; width: 60px; height: 60px; display: flex; justify-content: center; align-items: center; transition: background-color 0.3s; }
        .play-button i { font-size: 30px; color: white; }
        .video-facade:hover .play-button { background-color: var(--danger-color); }
        #video-depoimentos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        
        /* Certificado */
        #certificado img { border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
        #certificado .list-group-item { display: flex; align-items: flex-start; gap: 15px; border: none; padding-left: 0;}
        #certificado .list-group-item i { font-size: 1.2rem; color: var(--success-color); margin-top: 5px; }

        /* FAQ - Accordion */
        #perguntas_e_respotas .accordion-item { border-radius: 10px !important; margin-bottom: 10px; border: 1px solid #e0e0e0; overflow: hidden; }
        #perguntas_e_respotas .accordion-button { font-weight: bold; color: var(--dark-text); }
        #perguntas_e_respotas .accordion-button:not(.collapsed) { background-color: #f0f2ff; color: var(--primary-color); }

        /* Footer */
        .footer { background: #2c3e50; color: white; padding: 60px 0 20px; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; text-align: left; }
        .footer-section h3 { margin-bottom: 20px; color: var(--accent-color); }
        .footer-section p, .footer-section a { color: #bdc3c7; text-decoration: none; font-size: 0.95rem; }
        .footer-section a:hover { color: white; }
        .footer-socials a { font-size: 1.5rem; margin-right: 15px; }
        .footer-bottom { border-top: 1px solid #34495e; padding-top: 20px; text-align: center; font-size: 0.9rem; color: #bdc3c7; }
        
        /* Botão WhatsApp Flutuante */
        .whatsapp-float { position: fixed; bottom: 20px; right: 20px; background: #25d366; color: white; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 2.2rem; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); z-index: 1000; animation: bounce 2s infinite; text-decoration: none; }
        @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }

        /* Animações e Utilitários */
        .lazy-load { opacity: 0; transform: translateY(30px); transition: all 0.7s ease-out; }
        .lazy-load.visible { opacity: 1; transform: translateY(0); }
        .color4 { color: #fdfd88; }
        .fw-bold { font-weight: bold; }

        /* Responsividade */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .hero .subtitle { font-size: 1.1rem; }
            .section-title { font-size: 2rem; }
            .footer-content { text-align: center; }
        }

        