:root {
            --primary: #9C4DFF;
            --primary-dark: #681b98;
            --secondary: #63FFDA;
            --dark: #121212;
            --darker: #0a0a0a;
            --light: #f4f4f4;
            --gray: #b3b3b3;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navbar Moderna - Z-INDEX CORRIGIDO */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 5%;
            background-color: rgba(18, 18, 18, 0.9);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100; /* REDUZIDO de 1000 para 100 */
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(156, 77, 255, 0.1);
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            padding: 15px 5%;
            background-color: rgba(10, 10, 10, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            height: 50px;
        }

        .logo img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            transition: all 0.4s ease;
            border-radius: 10px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 3;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .user-profile {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            position: relative;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            background-size: cover;
            background-position: center;
        }

        .user-name {
            font-size: 0.9rem;
            color: var(--light);
        }

        .user-dropdown {
            position: absolute;
            top: 50px;
            right: 0;
            background-color: var(--darker);
            border: 1px solid rgba(156, 77, 255, 0.2);
            border-radius: 8px;
            padding: 10px 0;
            width: 200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100; /* REDUZIDO de 1000 para 100 */
        }

        .user-profile:hover .user-dropdown {
            opacity: 1;
            visibility: visible;
            top: 45px;
        }

        .user-dropdown a {
            display: block;
            padding: 10px 20px;
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .user-dropdown a:hover {
            color: var(--primary);
            background-color: rgba(156, 77, 255, 0.1);
        }

        .user-dropdown a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        /* Hero Section Aprimorada */
        .hero {
            margin-bottom: -1px;
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
            margin-top: 80px;
            background: linear-gradient(to bottom, transparent 0%, var(--dark) 90%); 
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -3; 
            overflow: hidden;
            background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
        }

        .hero-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.5);
        }

        .tech-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(99, 255, 218, 0.05) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(156, 77, 255, 0.07) 0%, transparent 25%);
            opacity: 0.4;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(10, 10, 10, 0.2) 0%,
                rgba(10, 10, 10, 0.7) 70%,
                var(--darker) 100%
            );
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(156, 77, 255, 0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.8;
            max-width: 800px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 10px 20px rgba(156, 77, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(156, 77, 255, 0.4);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: none;
        }

        .btn-secondary:hover {
            background: rgba(156, 77, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Estatísticas */
        .hero-stats {
            display: flex;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px 30px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(156, 77, 255, 0.1);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Scroll down indicator */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            cursor: pointer;
        }

        .scroll-arrow {
            width: 30px;
            height: 50px;
            border: 2px solid var(--primary);
            border-radius: 15px;
            position: relative;
        }

        .scroll-arrow::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            width: 8px;
            height: 8px;
            background: var(--secondary);
            border-radius: 50%;
            transform: translateX(-50%);
            animation: scrollDown 2s infinite;
        }

        @keyframes scrollDown {
            0% { transform: translate(-50%, 0); opacity: 0; }
            50% { transform: translate(-50%, 10px); opacity: 1; }
            100% { transform: translate(-50%, 20px); opacity: 0; }
        }

        /* Efeito de digitação */
        .typing-effect::after {
            content: '|';
            animation: blink 1s infinite;
            color: var(--secondary);
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Estilos Compactos para Planos - Atualizado */
        .pricing-section {
            padding: 80px 5%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            position: relative;
            overflow: hidden;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(156, 77, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(99, 255, 218, 0.06) 0%, transparent 50%);
            z-index: 1;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--light);
            position: relative;
            z-index: 2;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .pricing-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* SOLUÇÃO SIMPLES - BORDA COLORIDA NO HOVER */
        .plan {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            border-radius: 20px;
            padding: 0;
            border: 2px solid transparent; /* Borda transparente por padrão */
            backdrop-filter: blur(15px);
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 
                0 15px 30px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .plan:hover {
            border: 2px solid #9C4DFF; /* Borda roxa no hover */
            transform: translateY(-5px);
            box-shadow: 
                0 20px 40px rgba(156, 77, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }
        .plan:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 40px rgba(156, 77, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            border-color: rgba(156, 77, 255, 0.5);
        }

        .plan.featured {
            border: 2px solid var(--primary);
            transform: scale(1.02);
            box-shadow: 
                0 18px 35px rgba(156, 77, 255, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        .plan.featured:hover {
            transform: scale(1.02) translateY(-8px);
            box-shadow: 
                0 25px 45px rgba(156, 77, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .plan-header {
            padding: 30px 30px 20px;
            text-align: center;
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            z-index: 2;
        }

        .plan-header h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: 700;
        }

        .plan-header h3 i {
            font-size: 1.4rem;
            color: var(--primary);
        }

        .price-badge {
            margin-top: 10px;
            position: relative;
            z-index: 2;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--light);
            display: block;
            line-height: 1;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(156, 77, 255, 0.4);
        }

        .period {
            color: var(--gray);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .plan-features {
            padding: 25px 30px;
            list-style: none;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .plan-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            color: var(--light);
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: all 0.2s ease;
            position: relative;
        }

        .plan-features li::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background: var(--primary);
            border-radius: 2px;
            transition: height 0.2s ease;
        }

        .plan-features li:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .plan-features li:hover::before {
            height: 16px;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features .check {
            color: #10B981;
            font-size: 1.1rem;
            min-width: 18px;
            text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
        }

        .plan-features .cross {
            color: #EF4444;
            font-size: 1.1rem;
            min-width: 18px;
            opacity: 0.7;
        }

        .plan-footer {
            padding: 25px 30px;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            text-align: center;
            position: relative;
            z-index: 2;
        }

       /* ===== CORREÇÃO DO BOTÃO DE ASSINATURA ===== */
.btn-payment {
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(156, 77, 255, 0.3);
}

.btn-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 77, 255, 0.5);
    color: white;
}

.btn-payment.featured {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 6px 20px rgba(156, 77, 255, 0.4);
}

.btn-payment.featured:hover {
    box-shadow: 0 10px 30px rgba(156, 77, 255, 0.6);
}

/* Garantir que o plano não bloqueie o botão */
.plan {
    position: relative;
    z-index: 1;
}

.plan-footer {
    position: relative;
    z-index: 10;
}

/* Remover qualquer overlay que possa estar bloqueando */
.pricing-section::before,
.pricing-section::after {
    pointer-events: none !important;
}

        .security-badges {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 18px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            transition: all 0.2s ease;
        }

        .badge:hover {
            transform: translateY(-3px);
            border-color: rgba(99, 255, 218, 0.25);
            background: rgba(99, 255, 218, 0.04);
        }

        .badge i {
            color: var(--secondary);
            font-size: 1.1rem;
        }

        .badge span {
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .popular-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 20px rgba(156, 77, 255, 0.4);
            z-index: 10;
            animation: pulse 2s infinite;
            white-space: nowrap;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.03); }
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .pricing-section {
                padding: 60px 5%;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .pricing-plans {
                grid-template-columns: 1fr;
                gap: 25px;
                max-width: 400px;
            }
            
            .plan.featured {
                transform: none;
            }
            
            .plan.featured:hover {
                transform: translateY(-8px);
            }
            
            .plan-header {
                padding: 25px 20px 15px;
            }
            
            .plan-features {
                padding: 20px 25px;
            }
            
            .plan-footer {
                padding: 20px 25px;
            }
            
            .price {
                font-size: 2.5rem;
            }
            
            .security-badges {
                gap: 15px;
            }
            
            .badge {
                padding: 10px 14px;
            }
            
            .popular-badge {
                font-size: 0.7rem;
                padding: 6px 12px;
            }
        }
        /* Processo de Consultoria */
        .process-section {
            padding: 100px 5%;
            background-color: var(--darker);
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 75% 25%, rgba(156, 77, 255, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .process-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-card {
            background-color: rgba(30, 30, 30, 0.7);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(156, 77, 255, 0.1);
            backdrop-filter: blur(5px);
            position: relative;
            overflow: hidden;
        }

        .process-image {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            background: rgba(156, 77, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--primary);
        }

        .process-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at var(--x) var(--y), rgba(99, 255, 218, 0.1), transparent 70%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .process-card:hover::after {
            opacity: 1;
        }

        .process-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(156, 77, 255, 0.3);
        }

        .process-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(156, 77, 255, 0.1), rgba(99, 255, 218, 0.1));
            border-radius: 50%;
            font-size: 2rem;
            color: var(--primary);
        }

        .process-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        .process-description {
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Benefícios */
        .benefits-section {
            padding: 100px 5%;
            background: linear-gradient(to bottom, #020617, #111111);
            position: relative;
            overflow: hidden;
        }

        .benefits-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 75% 25%, rgba(156, 77, 255, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background-color: rgba(26, 26, 26, 0.7);
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at var(--x) var(--y), rgba(99, 255, 218, 0.1), transparent 70%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .benefit-card:hover::after {
            opacity: 1;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            background-color: rgba(30, 30, 30, 0.9);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .benefit-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .benefit-title i {
            color: var(--primary);
        }

        .benefit-description {
            color: var(--gray);
            line-height: 1.8;
        }

        /* Seção de Clientes */
        .clients-section {
            padding: 80px 5%;
            background-color: var(--darker);
            text-align: center;
        }

        .clients-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .client-logo {
            width: 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%) brightness(0.8);
            transition: all 0.3s ease;
        }

        .client-logo:hover {
            filter: grayscale(0) brightness(1);
            transform: scale(1.1);
        }

        .client-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .testimonials-section {
            padding: 4rem 5%;
            background: var(--section-bg);
            position: relative;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(200px at 10% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 100%),
                radial-gradient(150px at 90% 80%, rgba(6, 214, 160, 0.03) 0%, transparent 100%);
            z-index: 1;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .testimonials-swiper {
            width: 100%;
            padding: 2rem 0 4rem;
        }

        .testimonial-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(124, 58, 237, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            border-color: rgba(124, 58, 237, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .quote-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 2rem;
            color: rgba(124, 58, 237, 0.2);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 1rem;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            background-size: cover;
            background-position: center;
        }

        .author-info h4 {
            color: var(--light);
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .testimonials-section {
                padding: 3rem 5%;
            }
            
            .testimonial-card {
                height: 250px;
                padding: 1.5rem;
            }
            
            .testimonial-text {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .testimonials-section {
                padding: 2rem 5%;
            }
            
            .testimonial-card {
                height: 220px;
                padding: 1rem;
            }
            
            .testimonial-text {
                -webkit-line-clamp: 3;
                font-size: 0.85rem;
            }
            
            .author-avatar {
                width: 40px;
                height: 40px;
            }
            
            .author-info h4 {
                font-size: 0.9rem;
            }
            
            .author-info p {
                font-size: 0.8rem;
            }
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            color: rgba(156, 77, 255, 0.1);
        }

        .swiper-pagination-bullet {
            background-color: var(--gray);
            opacity: 0.5;
            width: 12px;
            height: 12px;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 1;
            transform: scale(1.2);
        }

        .swiper-button-prev,
        .swiper-button-next {
            color: var(--primary);
            background: rgba(156, 77, 255, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background: rgba(156, 77, 255, 0.2);
            transform: scale(1.1);
        }

        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* Seção de Perguntas Frequentes */
        .faq-section {
            padding: 100px 5%;
            background-color: var(--darker);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            background-color: rgba(30, 30, 30, 0.7);
            border: 1px solid rgba(156, 77, 255, 0.1);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(156, 77, 255, 0.3);
        }

        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--light);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--gray);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 5%;
            background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        .cta-text {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .cta-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            z-index: 1;
            background-image: radial-gradient(var(--primary) 1px, transparent 1px);
            background-size: 20px 20px;
        }

        /* Footer */
        footer {
            background-color: var(--darker);
            padding: 60px 5% 30px;
            border-top: 1px solid rgba(156, 77, 255, 0.1);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-logo img {
            width: 40px;
            height: 40px;
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-about {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(156, 77, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            color: var(--light);
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-links i {
            font-size: 0.8rem;
            color: var(--primary);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .footer-contact i {
            color: var(--primary);
            width: 20px;
            text-align: center;
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Seção Sobre */
        .section {
            padding: 6rem 5%;
            position: relative;
        }

        .about-section {
            background: linear-gradient(to bottom, #111111, #020617);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: #8B5CF6;
        }

        .about-content p {
            color: #64748B;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #10B981;
            font-weight: 500;
        }

        .about-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Seção de Riscos */
        .risks-section {
            background: linear-gradient(to bottom, #111111, #020617);
            padding: 100px 5%;
            position: relative;
            overflow: hidden;
        }

        .risks-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(156, 77, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(99, 255, 218, 0.06) 0%, transparent 50%);
            z-index: 1;
        }

        .risks-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C4DFF' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.4;
            z-index: 1;
        }

        .risks-section .container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .risks-section .section-title {
            color: #ffffff;
            text-align: center;
            margin-bottom: 20px;
            font-size: 2.8rem;
            font-weight: 700;
            position: relative;
            text-shadow: 0 2px 20px rgba(156, 77, 255, 0.3);
        }

        .risks-section .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(156, 77, 255, 0.5);
        }

        .risks-section .section-subtitle {
            color: var(--gray);
            text-align: center;
            margin-bottom: 60px;
            font-size: 1.2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            line-height: 1.6;
        }

        .risks-carousel-container {
            position: relative;
            margin-bottom: 60px;
            padding: 0 40px;
        }

        .risks-swiper {
            padding: 20px 0 60px;
            overflow: hidden;
        }

        .risk-card {
            background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(18, 18, 18, 0.98));
            border: 1px solid rgba(156, 77, 255, 0.15);
            border-radius: 20px;
            padding: 35px 30px;
            height: auto;
            min-height: 480px;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.02);
        }

        .risk-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(156, 77, 255, 0.05), transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .risk-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .risk-card:hover::before {
            opacity: 1;
        }

        .risk-card:hover::after {
            transform: scaleX(1);
        }

        .risk-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(156, 77, 255, 0.4);
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(156, 77, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .risk-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
            color: white;
            box-shadow: 
                0 10px 30px rgba(156, 77, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 20px rgba(156, 77, 255, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .risk-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .risk-card:hover .risk-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 
                0 15px 40px rgba(156, 77, 255, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 30px rgba(156, 77, 255, 0.5);
        }

        .risk-card:hover .risk-icon::before {
            opacity: 1;
        }

        .risk-card h3 {
            color: #ffffff;
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.3;
            position: relative;
        }

        .risk-card p {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.7;
            flex-grow: 1;
            font-weight: 300;
            font-size: 1rem;
            min-height: 80px;
        }

        .risk-impact {
            background: linear-gradient(135deg, rgba(255, 56, 96, 0.1), rgba(255, 56, 96, 0.05));
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid #FF3860;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            position: relative;
            overflow: hidden;
            min-height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .risk-impact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 56, 96, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .risk-card:hover .risk-impact {
            transform: translateX(5px);
            border-left-color: #FF3860;
        }

        .risk-card:hover .risk-impact::before {
            opacity: 1;
        }

        .impact-label {
            font-weight: 600;
            color: #FF3860;
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .impact-text {
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 400;
            line-height: 1.5;
        }

        .risk-prevention {
            background: linear-gradient(135deg, rgba(99, 255, 218, 0.1), rgba(99, 255, 218, 0.05));
            padding: 16px 20px;
            border-radius: 12px;
            border-left: 4px solid var(--secondary);
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 400;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            line-height: 1.5;
            position: relative;
            overflow: hidden;
            min-height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .risk-prevention::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(99, 255, 218, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .risk-card:hover .risk-prevention {
            transform: translateX(5px);
            border-left-color: var(--secondary);
        }

        .risk-card:hover .risk-prevention::before {
            opacity: 1;
        }

        .risk-prevention strong {
            color: var(--secondary);
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Navegação do Swiper */
        .risks-swiper .swiper-button-prev,
        .risks-swiper .swiper-button-next {
            color: var(--primary);
            background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(18, 18, 18, 0.98));
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid rgba(156, 77, 255, 0.2);
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            top: 50%;
            transform: translateY(-50%);
            margin-top: 0;
        }

        .risks-swiper .swiper-button-prev {
            left: 0;
        }

        .risks-swiper .swiper-button-next {
            right: 0;
        }

        .risks-swiper .swiper-button-prev:hover,
        .risks-swiper .swiper-button-next:hover {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            transform: translateY(-50%) scale(1.1);
            border-color: rgba(156, 77, 255, 0.4);
            box-shadow: 
                0 12px 35px rgba(156, 77, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .risks-swiper .swiper-button-prev::after,
        .risks-swiper .swiper-button-next::after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .risks-swiper .swiper-pagination {
            bottom: 0;
        }

        .risks-swiper .swiper-pagination-bullet {
            background: var(--gray);
            opacity: 0.4;
            width: 12px;
            height: 12px;
            transition: all 0.3s ease;
            margin: 0 8px;
        }

        .risks-swiper .swiper-pagination-bullet:hover {
            opacity: 0.7;
            transform: scale(1.2);
        }

        .risks-swiper .swiper-pagination-bullet-active {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 1;
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(156, 77, 255, 0.5);
        }

        /* Estatísticas */
        .risks-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .risks-stats .stat-item {
            text-align: center;
            background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(18, 18, 18, 0.95));
            padding: 30px 35px;
            border-radius: 16px;
            min-width: 180px;
            border: 1px solid rgba(156, 77, 255, 0.15);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .risks-stats .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .risks-stats .stat-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(156, 77, 255, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .risks-stats .stat-item:hover::after {
            opacity: 1;
        }

        .risks-stats .stat-item:hover {
            transform: translateY(-8px);
            border-color: rgba(156, 77, 255, 0.3);
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(156, 77, 255, 0.1);
        }

        .risks-stats .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
            margin-bottom: 10px;
            text-shadow: 0 0 30px rgba(156, 77, 255, 0.5);
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .risks-stats .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

/* CHATBOT PREMIUM - POSICIONADO MAIS ABAIXO */
.chatbot-launcher {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #9C4DFF 0%, #7C3AED 50%, #6A1B9A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(156, 77, 255, 0.4), 0 0 0 0 rgba(156, 77, 255, 0.4);
    z-index: 1000; /* BOTÃO FICA ACIMA DO CONTEÚDO NORMAL */
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 10px 30px rgba(156, 77, 255, 0.4), 0 0 0 0 rgba(156, 77, 255, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(156, 77, 255, 0.4), 0 0 0 15px rgba(156, 77, 255, 0);
    }
    100% {
        box-shadow: 0 10px 30px rgba(156, 77, 255, 0.4), 0 0 0 0 rgba(156, 77, 255, 0);
    }
}

.chatbot-launcher:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(156, 77, 255, 0.6), 0 0 0 0 rgba(156, 77, 255, 0);
}

.chatbot-launcher:active {
    transform: scale(0.95);
}

/* MODAL DO CHATBOT - AJUSTADO PARA FICAR MAIS ABAIXO */
.chatbot-modal {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 420px;
    height: 600px;
    background: linear-gradient(145deg, #1e1e2e 0%, #16213e 100%);
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 
                0 0 0 1px rgba(156, 77, 255, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1001; /* MODAL FICA ACIMA DO BOTÃO */
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-modal.active {
    display: flex;
    transform: translateY(0) scale(1);
    opacity: 1;
}

.chatbot-header {
    background: linear-gradient(135deg, #9C4DFF 0%, #7C3AED 50%, #6A1B9A 100%);
    padding: 20px 22px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1002;
}

.chatbot-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.chatbot-header-info {
    position: relative;
    z-index: 1;
}

.chatbot-header-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-header-info h3::before {
    content: '';
    width: 9px;
    height: 9px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.chatbot-header-info p {
    font-size: 0.8rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.1);
}

.chatbot-messages {
    flex: 1;
    padding: 22px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(to bottom, rgba(18, 18, 28, 0.95), rgba(18, 18, 28, 0.98)),
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C4DFF' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.message {
    display: flex;
    gap: 12px;
    max-width: 100%;
    animation: messageSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #9C4DFF, #7C3AED);
    color: white;
}

.bot-message .message-avatar::after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    background: #10B981;
    border: 2px solid #1e1e2e;
    border-radius: 50%;
    bottom: -2px;
    right: -2px;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #63FFDA, #00D4AA);
    color: #1a1a1a;
    font-weight: 700;
}

.message-content {
    flex: 1;
    max-width: calc(100% - 65px);
    position: relative;
}

.bot-message .message-content {
    background: linear-gradient(135deg, rgba(156, 77, 255, 0.12), rgba(124, 58, 237, 0.08));
    backdrop-filter: blur(10px);
    color: #f4f4f4;
    border-radius: 16px;
    border-bottom-left-radius: 5px;
    padding: 14px 16px;
    border: 1px solid rgba(156, 77, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.user-message .message-content {
    background: linear-gradient(135deg, #9C4DFF, #7C3AED);
    color: white;
    border-radius: 16px;
    border-bottom-right-radius: 5px;
    padding: 14px 16px;
    box-shadow: 0 4px 15px rgba(156, 77, 255, 0.4);
}

.message-content p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.92rem;
    font-weight: 400;
}

.message-content p:not(:last-child) {
    margin-bottom: 8px;
}

.message-time {
    font-size: 0.68rem;
    opacity: 0.6;
    margin-top: 5px;
    display: block;
}

.chatbot-input-container {
    padding: 18px 20px;
    border-top: 1px solid rgba(156, 77, 255, 0.15);
    background: linear-gradient(to top, rgba(18, 18, 28, 0.98), rgba(30, 30, 46, 0.95));
    backdrop-filter: blur(10px);
}

.chatbot-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    position: relative;
    z-index: 1002;
}

.chatbot-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(156, 77, 255, 0.25);
    border-radius: 22px;
    color: white;
    font-size: 0.92rem;
    outline: none;
    transition: all 0.3s ease;
    resize: none;
    max-height: 110px;
    min-height: 22px;
    line-height: 1.4;
    font-family: inherit;
    z-index: 1002; /* INPUT TAMBÉM FICA ACIMA */
    position: relative;
}

.chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chatbot-input:focus {
    border-color: #9C4DFF;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(156, 77, 255, 0.15), 0 4px 12px rgba(156, 77, 255, 0.2);
}

.chatbot-send-btn {
    background: linear-gradient(135deg, #9C4DFF, #7C3AED);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(156, 77, 255, 0.4);
    z-index: 1002; /* BOTÃO DE ENVIAR FICA ACIMA DE TUDO DENTRO DO MODAL */
    position: relative;
}

.chatbot-send-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(156, 77, 255, 0.6);
}

.chatbot-send-btn:active {
    transform: scale(0.95);
}

.chatbot-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.typing-indicator .message-content {
    background: rgba(156, 77, 255, 0.1) !important;
    border: 1px solid rgba(156, 77, 255, 0.2) !important;
    padding: 12px 16px !important;
}

.typing-dots {
    display: flex;
    gap: 5px;
    align-items: center;
}

.typing-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9C4DFF, #7C3AED);
    animation: typingPulse 1.4s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(156, 77, 255, 0.5);
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.chatbot-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999; /* OVERLAY FICA ABAIXO DO MODAL E ACIMA DO BOTÃO */
    display: none;
    animation: fadeIn 0.3s ease;
}

.chatbot-overlay.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typingPulse {
    0%, 60%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    30% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.chatbot-messages::-webkit-scrollbar {
    width: 7px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(156, 77, 255, 0.4), rgba(124, 58, 237, 0.4));
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(156, 77, 255, 0.6), rgba(124, 58, 237, 0.6));
    background-clip: padding-box;
}

/* Responsividade do Chatbot */
@media (max-width: 480px) {
    .chatbot-modal {
        width: calc(100vw - 20px);
        height: calc(100vh - 120px); /* AJUSTADO */
        right: 10px;
        bottom: 10px;
        border-radius: 20px;
    }

    .chatbot-launcher {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }

    .chatbot-messages {
        padding: 18px 14px;
    }

    .message-content {
        max-width: calc(100% - 60px);
    }
}

@media (max-height: 700px) {
    .chatbot-modal {
        height: 500px; /* REDUZIDO para telas menores */
    }
}

/* Responsividade do Chatbot */
@media (max-width: 480px) {
    .chatbot-modal {
        width: calc(100vw - 20px);
        height: 75vh;
        right: 10px;
        bottom: 90px;
        border-radius: 20px;
    }
    
    .chatbot-launcher {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-messages {
        padding: 20px 15px;
    }
    
    .message-content {
        max-width: calc(100% - 60px);
    }
}

@media (max-height: 700px) {
    .chatbot-modal {
        height: 550px;
    }
}
       /* Responsividade */
        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .pricing-plans {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
            
            .risks-section {
                padding: 80px 5%;
            }
            
            .risks-section .section-title {
                font-size: 2.4rem;
            }
            
            .risk-card {
                min-height: 500px;
            }
            
            .risks-stats {
                gap: 30px;
            }
            
            .risks-stats .stat-item {
                min-width: 160px;
                padding: 25px 30px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 20px 5%;
            }
            
            .nav-links {
                gap: 20px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .process-container {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            .risks-section {
                padding: 60px 5%;
            }
            
            .risks-section .section-title {
                font-size: 2rem;
            }
            
            .risks-section .section-subtitle {
                font-size: 1rem;
                padding: 0 20px;
                margin-bottom: 40px;
            }
            
            .risks-carousel-container {
                margin-bottom: 40px;
                padding: 0 20px;
            }
            
            .risk-card {
                padding: 25px;
                min-height: 480px;
            }
            
            .risk-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
                margin-bottom: 20px;
            }
            
            .risks-swiper .swiper-button-prev,
            .risks-swiper .swiper-button-next {
                display: none;
            }
            
            .risks-stats {
                gap: 20px;
                margin-top: 40px;
            }
            
            .risks-stats .stat-item {
                min-width: calc(50% - 20px);
                padding: 20px 25px;
            }
            
            .risks-stats .stat-number {
                font-size: 2rem;
            }
            
            .swiper-button-prev,
            .swiper-button-next {
                display: none;
            }
            
            .testimonials-swiper {
                padding: 30px 0 40px;
            }
        }

        @media (max-width: 576px) {
            .navbar {
                flex-direction: column;
                padding: 15px;
                gap: 15px;
            }
            
            .nav-links {
                width: 100%;
                justify-content: space-between;
                gap: 10px;
            }
            
            .hero {
                margin-top: 120px;
                text-align: center;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 15px;
            }
            
            .stat-item {
                width: 100%;
            }
            
            .client-logo {
                width: 120px;
                height: 60px;
            }
            
            .risks-section {
                padding: 40px 5%;
            }
            
            .risks-section .section-title {
                font-size: 1.8rem;
            }
            
            .risk-card {
                padding: 20px;
                min-height: 450px;
            }
            
            .risk-card h3 {
                font-size: 1.3rem;
            }
            
            .risks-stats {
                flex-direction: column;
                align-items: center;
            }
            
            .risks-stats .stat-item {
                width: 100%;
                max-width: 280px;
                min-width: auto;
            }
            
            .risks-swiper {
                padding: 10px 0 50px;
            }
            
            .risk-card p,
            .risk-impact,
            .risk-prevention {
                min-height: auto;
            }
        }

        /* Botão de login na navbar */
        .login-btn {
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        /* Estilos do Dashboard Integrado */
        .admin-panel {
            display: none;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
            border-radius: 15px;
            margin: 40px 5%;
            padding: 30px;
            border: 1px solid rgba(156, 77, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .admin-panel.active {
            display: block;
            animation: fadeInUp 0.5s ease;
        }

        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(156, 77, 255, 0.2);
        }

        .admin-title {
            font-size: 2rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .admin-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .admin-card {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid rgba(156, 77, 255, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .admin-card:hover {
            transform: translateY(-5px);
            border-color: rgba(156, 77, 255, 0.5);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .card-header {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 15px;
        }

        .card-title {
            font-size: 1.1rem;
            color: var(--light);
            font-weight: 600;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: rgba(156, 77, 255, 0.1);
            color: var(--primary);
        }

        .card-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 10px;
        }

        .card-change {
            font-size: 0.9rem;
            font-weight: 600;
        }

        .card-change.positive {
            color: #10B981;
        }

        .card-change.negative {
            color: #EF4444;
        }

        .admin-charts {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 25px;
            margin-bottom: 40px;
        }

        .chart-container {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid rgba(156, 77, 255, 0.2);
        }

        .chart-title {
            font-size: 1.3rem;
            color: var(--light);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .quick-actions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .action-btn {
            background: rgba(30, 30, 46, 0.8);
            border: 1px solid rgba(156, 77, 255, 0.2);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .action-btn:hover {
            background: rgba(156, 77, 255, 0.1);
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .action-icon {
            font-size: 2rem;
            color: var(--primary);
        }

        .action-text {
            font-weight: 600;
        }

        /* Dashboard Link no Dropdown */
        .dashboard-link {
            display: none;
        }

        .user-profile:hover .dashboard-link {
            display: block;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Notificações */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #10B981;
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 10000;
            animation: slideInRight 0.3s ease;
            max-width: 400px;
            font-size: 14px;
            font-weight: 500;
        }

        .notification-error {
            background: #EF4444;
        }

        .notification-warning {
            background: #F59E0B;
        }

        .notification-info {
            background: #3B82F6;
        }

        .notification-content {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .notification-content i {
            font-size: 1.2rem;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes slideOutRight {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }
       /* Seção de Estatísticas */
        .stats-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .stat-card {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(156, 77, 255, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: rgba(156, 77, 255, 0.5);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .stat-info h3 {
            color: var(--light);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .stat-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .charts-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .chart-card {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid rgba(156, 77, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .chart-card h3 {
            color: var(--light);
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.3rem;
        }

        /* Nova seção de acesso ao dashboard - substituindo a seção de estatísticas */
        .dashboard-access-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            position: relative;
            overflow: hidden;
        }

        .dashboard-access-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(156, 77, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(99, 255, 218, 0.06) 0%, transparent 50%);
            z-index: 1;
        }

        .dashboard-access-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .dashboard-icon-wrapper {
            width: 120px;
            height: 120px;
            margin: 0 auto 40px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            box-shadow: 
                0 15px 35px rgba(156, 77, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 30px rgba(156, 77, 255, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .dashboard-icon-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .dashboard-access-section:hover .dashboard-icon-wrapper {
            transform: scale(1.05) rotate(5deg);
            box-shadow: 
                0 20px 45px rgba(156, 77, 255, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 40px rgba(156, 77, 255, 0.5);
        }

        .dashboard-access-section:hover .dashboard-icon-wrapper::before {
            opacity: 1;
        }

        .dashboard-access-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(156, 77, 255, 0.3);
            position: relative;
        }

        .dashboard-access-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(156, 77, 255, 0.5);
        }

        .dashboard-access-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            font-weight: 300;
        }

        .dashboard-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .dashboard-feature-item {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            border: 1px solid rgba(156, 77, 255, 0.2);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .dashboard-feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(156, 77, 255, 0.05), transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .dashboard-feature-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .dashboard-feature-item:hover::before {
            opacity: 1;
        }

        .dashboard-feature-item:hover::after {
            transform: scaleX(1);
        }

        .dashboard-feature-item:hover {
            transform: translateY(-10px);
            border-color: rgba(156, 77, 255, 0.4);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(156, 77, 255, 0.2);
        }

        .dashboard-feature-item i {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            display: block;
            transition: all 0.3s ease;
        }

        .dashboard-feature-item:hover i {
            transform: scale(1.2);
            color: var(--secondary);
        }

        .dashboard-feature-item h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--light);
            font-weight: 600;
        }

        .dashboard-feature-item p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .btn-dashboard {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 18px 45px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 10px 25px rgba(156, 77, 255, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-dashboard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .btn-dashboard:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(156, 77, 255, 0.4);
        }

        .btn-dashboard:hover::before {
            opacity: 1;
        }

        .btn-dashboard i {
            transition: transform 0.3s ease;
        }

        .btn-dashboard:hover i {
            transform: translateX(5px);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .dashboard-access-title {
                font-size: 2.4rem;
            }
            
            .dashboard-access-subtitle {
                font-size: 1.1rem;
                margin-bottom: 50px;
            }
            
            .dashboard-features {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .dashboard-access-section {
                padding: 80px 5%;
            }
            
            .dashboard-access-title {
                font-size: 2rem;
            }
            
            .dashboard-icon-wrapper {
                width: 100px;
                height: 100px;
                font-size: 2.5rem;
                margin-bottom: 30px;
            }
            
            .dashboard-features {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .dashboard-feature-item {
                padding: 25px 20px;
            }
            
            .btn-dashboard {
                padding: 16px 35px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .dashboard-access-section {
                padding: 60px 5%;
            }
            
            .dashboard-access-title {
                font-size: 1.8rem;
            }
            
            .dashboard-access-subtitle {
                font-size: 1rem;
                margin-bottom: 40px;
            }
            
            .dashboard-icon-wrapper {
                width: 80px;
                height: 80px;
                font-size: 2rem;
                margin-bottom: 25px;
            }
            
            .dashboard-feature-item {
                padding: 20px 15px;
            }
            
            .btn-dashboard {
                width: 100%;
                justify-content: center;
                padding: 15px 30px;
            }
        }

        /* Garantir que os ícones dos cursos tenham cores específicas */
        .dashboard-feature-item:nth-child(1) i { color: #9C4DFF; }
        .dashboard-feature-item:nth-child(2) i { color: #63FFDA; }
        .dashboard-feature-item:nth-child(3) i { color: #FF6B6B; }
        .dashboard-feature-item:nth-child(4) i { color: #4ECDC4; }
        .dashboard-feature-item:nth-child(5) i { color: #45B7D1; }
        .dashboard-feature-item:nth-child(6) i { color: #FFA07A; }
        .dashboard-feature-item:nth-child(7) i { color: #98D8C8; }
        .dashboard-feature-item:nth-child(8) i { color: #F7DC6F; }

        /* Efeitos hover específicos para cursos */
        .dashboard-feature-item:hover i {
            transform: scale(1.3) rotate(10deg);
            transition: all 0.4s ease;
        }

        /* Estilos para o Modal de Login - CORRIGIDOS */
        .login-modal-compact {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 380px;
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
            z-index: 1001; /* Z-INDEX ALTO para ficar sobre a navbar */
            overflow: hidden;
            border: 1px solid rgba(156, 77, 255, 0.3);
            animation: modalSlideIn 0.3s ease;
        }

        .login-header-compact {
            background: linear-gradient(90deg, #9C4DFF, #6A1B9A);
            padding: 20px;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .login-logo-compact {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .login-logo-compact img {
            width: 32px;
            height: 32px;
            border-radius: 6px;
        }

        .login-logo-text-compact {
            font-size: 1.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff, #e0e0e0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .login-content-compact {
            padding: 25px;
            background: rgba(18, 18, 18, 0.95);
        }

        .login-title-compact {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: var(--light);
            text-align: center;
            font-weight: 700;
        }

        .login-subtitle-compact {
            color: var(--gray);
            text-align: center;
            margin-bottom: 20px;
            font-size: 0.85rem;
        }

        .login-form-compact {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group-compact {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group-compact label {
            color: var(--light);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .input-wrapper-compact {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-wrapper-compact i {
            position: absolute;
            left: 12px;
            color: var(--primary);
            font-size: 0.9rem;
            z-index: 1;
        }

        .input-wrapper-compact input {
            width: 100%;
            padding: 12px 12px 12px 35px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(156, 77, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .input-wrapper-compact input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(156, 77, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .toggle-password-compact {
            position: absolute;
            right: 12px;
            background: none;
            border: none;
            color: var(--gray);
            cursor: pointer;
            transition: color 0.3s ease;
            font-size: 0.8rem;
        }

        .toggle-password-compact:hover {
            color: var(--primary);
        }

        .form-options-compact {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 8px 0;
            font-size: 0.75rem;
        }

        .checkbox-container-compact {
            display: flex;
            align-items: center;
            cursor: pointer;
            color: var(--gray);
            position: relative;
            padding-left: 24px;
        }

        .checkbox-container-compact input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .checkmark-compact {
            position: absolute;
            left: 0;
            height: 16px;
            width: 16px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(156, 77, 255, 0.3);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .checkbox-container-compact:hover input ~ .checkmark-compact {
            border-color: var(--primary);
        }

        .checkbox-container-compact input:checked ~ .checkmark-compact {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .checkmark-compact:after {
            content: "";
            position: absolute;
            display: none;
        }

        .checkbox-container-compact input:checked ~ .checkmark-compact:after {
            display: block;
        }

        .checkbox-container-compact .checkmark-compact:after {
            left: 4px;
            top: 1px;
            width: 4px;
            height: 7px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .forgot-password-compact {
            color: var(--primary);
            font-size: 0.75rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .forgot-password-compact:hover {
            color: var(--secondary);
        }

        .btn-login-compact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(156, 77, 255, 0.3);
            margin-top: 8px;
        }

        .btn-login-compact:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(156, 77, 255, 0.4);
            background: linear-gradient(135deg, var(--primary-dark), #6A1B9A);
        }

        .login-divider-compact {
            display: flex;
            align-items: center;
            margin: 20px 0;
            color: var(--gray);
            font-size: 0.75rem;
        }

        .login-divider-compact::before,
        .login-divider-compact::after {
            content: "";
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        .login-divider-compact span {
            padding: 0 12px;
        }

        .social-login-compact {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 15px;
        }

        .social-btn-compact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            color: var(--light);
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .social-btn-compact:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(156, 77, 255, 0.3);
            transform: translateY(-2px);
        }

        .login-footer-compact {
            text-align: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .login-footer-compact p {
            color: var(--gray);
            font-size: 0.8rem;
        }

        .login-footer-compact a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .login-footer-compact a:hover {
            color: var(--secondary);
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translate(-50%, -60%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        @media (max-width: 400px) {
            .login-modal-compact {
                width: 95%;
                max-width: none;
            }
            
            .login-content-compact {
                padding: 20px 15px;
            }
            
            .form-options-compact {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
        
        /* Modal de Cadastro - MESMO TAMANHO DO LOGIN */
        .register-modal-compact {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 380px; /* MESMO TAMANHO DO LOGIN */
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
            z-index: 1001;
            overflow: hidden;
            border: 1px solid rgba(156, 77, 255, 0.3);
            animation: modalSlideIn 0.3s ease;
        }

        .register-content-compact {
            padding: 25px;
            background: rgba(18, 18, 18, 0.95);
            max-height: 80vh;
            overflow-y: auto;
        }

        .register-content-compact::-webkit-scrollbar {
            width: 6px;
        }

        .register-content-compact::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 3px;
        }

        .register-content-compact::-webkit-scrollbar-thumb {
            background: rgba(156, 77, 255, 0.3);
            border-radius: 3px;
        }

        .register-content-compact::-webkit-scrollbar-thumb:hover {
            background: rgba(156, 77, 255, 0.5);
        }

        .terms-container {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 15px 0;
            padding: 10px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            border: 1px solid rgba(156, 77, 255, 0.1);
        }

        .terms-text {
            color: var(--gray);
            font-size: 0.75rem;
            line-height: 1.4;
            flex: 1;
        }

        .terms-text a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .terms-text a:hover {
            color: var(--secondary);
        }

        /* Medidor de força da senha - CORRIGIDO */
        .strength-meter {
            margin-top: 8px;
            width: 100%;
        }

        .strength-bar {
            height: 4px;
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
        }

        .strength-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: #EF4444;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .strength-text {
            font-size: 0.7rem;
            color: #EF4444;
            margin-top: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        /* Estados de força da senha - CORRIGIDOS */
        .strength-very-weak .strength-bar::before {
            background: #EF4444 !important;
            width: 25% !important;
        }

        .strength-very-weak .strength-text {
            color: #EF4444 !important;
        }

        .strength-weak .strength-bar::before {
            background: #F59E0B !important;
            width: 50% !important;
        }

        .strength-weak .strength-text {
            color: #F59E0B !important;
        }

        .strength-medium .strength-bar::before {
            background: #F59E0B !important;
            width: 75% !important;
        }

        .strength-medium .strength-text {
            color: #F59E0B !important;
        }

        .strength-strong .strength-bar::before {
            background: #10B981 !important;
            width: 100% !important;
        }

        .strength-strong .strength-text {
            color: #10B981 !important;
        }

        .strength-very-strong .strength-bar::before {
            background: #10B981 !important;
            width: 100% !important;
        }

        .strength-very-strong .strength-text {
            color: #10B981 !important;
        }

        /* Responsividade para o modal de cadastro */
        @media (max-width: 480px) {
            .register-modal-compact {
                width: 95%;
                max-width: none;
            }
            
            .register-content-compact {
                padding: 20px 15px;
            }
            
            .terms-container {
                flex-direction: column;
                gap: 8px;
            }
            
            .checkbox-container-compact {
                align-self: flex-start;
            }
        }

        @media (max-height: 700px) {
            .register-modal-compact {
                max-height: 90vh;
            }
            
            .register-content-compact {
                max-height: 70vh;
            }
        }

        /* Botões de Login e Cadastro */
.btn-login, 
.btn-cadastro {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-login:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-cadastro {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
}

.btn-cadastro:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 77, 255, 0.4);
}

/* ======================================== 
   🔑 ESTILOS DO MENU DE USUÁRIO
======================================== */

/* Perfil do Usuário */
.user-profile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Avatar do Usuário */
.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 15px rgba(156, 77, 255, 0.5);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nome do Usuário */
.user-name {
    font-weight: 600;
    color: var(--light);
    font-size: 0.95rem;
}

/* Dropdown do Usuário */
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background: rgba(20, 20, 30, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 77, 255, 0.3);
    border-radius: 12px;
    min-width: 280px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.user-profile:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Badge de Admin */
.admin-badge {
    background: linear-gradient(135deg, #9C4DFF, #FF00FF);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(156, 77, 255, 0.4);
}

.admin-badge i {
    animation: pulse 2s infinite;
}

/* Divisor no dropdown */
.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 12px 0;
}

/* Links do dropdown */
.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 0.9rem;
}

.user-dropdown a:hover {
    background: rgba(156, 77, 255, 0.2);
    transform: translateX(5px);
}

.user-dropdown a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Botões de Login e Cadastro */
.btn-login,
.btn-cadastro {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-login {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-login:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-cadastro {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
}

.btn-cadastro:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 77, 255, 0.4);
}

/* Animação do ícone de admin */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsividade */
@media (max-width: 768px) {
    .user-name {
        display: none;
    }
    
    .user-dropdown {
        right: -20px;
    }
}