        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        html,
        body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            scroll-behavior: smooth;
        }

        body {
            background: radial-gradient(ellipse at center, #1a0033 0%, #000000 100%);
            position: relative;
        }
        
        ::-webkit-scrollbar {
            width: 12px;
            background-color: #0a0a0f;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a0f;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #5e17eb, #a855f7);
            border-radius: 10px;
            border: 2px solid #0a0a0f;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #a855f7, #8b5cf6);
        }

        .universe-container {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .countdown-container {
            margin-top: 1.5rem;
            text-align: left;
        }

        .countdown-timer {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(139, 92, 246, 0.08);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 25px;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        .countdown-timer:hover {
            background: rgba(139, 92, 246, 0.12);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-1px);
        }

        .countdown-text {
            font-weight: 500;
            margin-right: 0.5rem;
        }

        .countdown-time {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .countdown-unit {
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }

        .countdown-number {
            font-weight: 600;
            color: #ffffff;
            min-width: 20px;
            text-align: center;
        }

        .countdown-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .countdown-separator {
            color: rgba(139, 92, 246, 0.6);
            font-weight: 300;
            margin: 0 0.1rem;
        }

        .promotion-icon {
            color: #10b981;
            margin-right: 0.3rem;
            font-size: 0.8rem;
        }

.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.cosmic-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* <= intensidade da sombra */
    pointer-events: none; /* permite clicar nos elementos da frente */
}

.cosmic-bg video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

        .stars { /* Estrelas removidas visualmente */
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: none; /* Remove o background-image das estrelas */
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        /* EFEITO DE PONTINHOS SUBINDO */
        .rising-bubbles-container { /* Mantém o nome do container */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            z-index: -1; 
            pointer-events: none;
        }

        .bubble { /* Esta classe agora representa os pontinhos */
            position: absolute;
            border-radius: 50%;
            animation: rise 10s linear infinite;
            bottom: -20px; /* Começa um pouco abaixo da tela */
            opacity: 0;
        }

        @keyframes rise {
            0% {
                transform: translateY(0) translateX(var(--start-x-offset, 0px)) scale(var(--dot-scale, 1));
                opacity: 0;
            }
            20% { /* Aparece mais gradualmente */
                 opacity: var(--max-opacity, 0.7);
            }
            80% { /* Começa a sumir mais cedo */
                opacity: var(--max-opacity-end, 0.2);
            }
            100% {
                transform: translateY(-105vh) translateX(var(--end-x-offset, 0px)) scale(var(--dot-scale, 1)); /* Sobe um pouco mais para garantir que suma */
                opacity: 0;
            }
        }

        /* Variações para os pontinhos */
        /* Cores: roxos, lilases, azuis claros, rosas suaves, branco/cinza, toque de ciano/verde */
/* Cores: roxos, lilases, azuis claros, rosas suaves, branco/cinza, toque de ciano/verde - VERSÃO MAIS INTENSA */
.bubble:nth-child(1) { width: 3px; height: 3px; left: 10%; animation-duration: 12s; animation-delay: 0s; background-color: rgba(190, 160, 255, 0.95); --max-opacity: 0.9; --dot-scale: 1; --end-x-offset: 5px; }
.bubble:nth-child(2) { width: 2px; height: 2px; left: 20%; animation-duration: 8s; animation-delay: 1s; background-color: rgba(220, 180, 255, 0.9); --max-opacity: 0.85; --dot-scale: 0.8; --end-x-offset: -7px;}
.bubble:nth-child(3) { width: 4px; height: 4px; left: 30%; animation-duration: 15s; animation-delay: 2s; background-color: rgba(120, 220, 255, 0.9); --max-opacity: 0.95; --dot-scale: 1.1;}
.bubble:nth-child(4) { width: 3px; height: 3px; left: 40%; animation-duration: 7s; animation-delay: 0.5s; background-color: rgba(255, 150, 220, 0.9); --max-opacity: 0.9; --dot-scale: 0.9; --end-x-offset: 10px;}
.bubble:nth-child(5) { width: 2px; height: 2px; left: 50%; animation-duration: 10s; animation-delay: 3s; background-color: rgba(240, 240, 240, 0.85); --max-opacity: 0.8; --dot-scale: 1; --end-x-offset: -3px;}
.bubble:nth-child(6) { width: 3px; height: 3px; left: 60%; animation-duration: 13s; animation-delay: 1.5s; background-color: rgba(80, 200, 180, 0.9); --max-opacity: 0.85; --dot-scale: 1.2;}
.bubble:nth-child(7) { width: 4px; height: 4px; left: 70%; animation-duration: 9s; animation-delay: 2.5s; background-color: rgba(170, 130, 245, 0.95); --max-opacity: 0.95; --dot-scale: 0.8; --end-x-offset: 8px;}
.bubble:nth-child(8) { width: 2px; height: 2px; left: 80%; animation-duration: 11s; animation-delay: 0.2s; background-color: rgba(230, 190, 255, 0.9); --max-opacity: 0.85; --dot-scale: 1; --end-x-offset: -10px;}
.bubble:nth-child(9) { width: 3px; height: 3px; left: 90%; animation-duration: 14s; animation-delay: 1.8s; background-color: rgba(100, 200, 240, 0.9); --max-opacity: 0.9; --dot-scale: 0.9;}
.bubble:nth-child(10) { width: 4px; height: 4px; left: 5%; animation-duration: 8.5s; animation-delay: 2.2s; background-color: rgba(255, 170, 230, 0.9); --max-opacity: 0.95; --dot-scale: 1.1; --end-x-offset: 6px;}
.bubble:nth-child(11) { width: 2px; height: 2px; left: 15%; animation-duration: 11.5s; animation-delay: 3.5s; background-color: rgba(220, 220, 220, 0.8); --max-opacity: 0.75; --dot-scale: 1; --end-x-offset: -9px;}
.bubble:nth-child(12) { width: 3px; height: 3px; left: 25%; animation-duration: 7.5s; animation-delay: 1.2s; background-color: rgba(100, 180, 220, 0.9); --max-opacity: 0.85; --dot-scale: 1.2; --end-x-offset: 12px;}
.bubble:nth-child(13) { width: 4px; height: 4px; left: 35%; animation-duration: 16s; animation-delay: 4s; background-color: rgba(180, 140, 250, 0.95); --max-opacity: 0.95; --dot-scale: 0.8;}
.bubble:nth-child(14) { width: 2px; height: 2px; left: 45%; animation-duration: 9.5s; animation-delay: 0.8s; background-color: rgba(240, 160, 220, 0.9); --max-opacity: 0.9; --dot-scale: 1; --end-x-offset: -15px;}
.bubble:nth-child(15) { width: 3px; height: 3px; left: 55%; animation-duration: 12.5s; animation-delay: 2.8s; background-color: rgba(60, 180, 160, 0.9); --max-opacity: 0.85; --dot-scale: 1.1; --end-x-offset: 4px;}
.bubble:nth-child(16) { width: 4px; height: 4px; left: 65%; animation-duration: 14.5s; animation-delay: 1.1s; background-color: rgba(200, 170, 255, 0.9); --max-opacity: 0.9; --dot-scale: 0.9;}
.bubble:nth-child(17) { width: 2px; height: 2px; left: 75%; animation-duration: 8.2s; animation-delay: 3.2s; background-color: rgba(140, 230, 255, 0.9); --max-opacity: 0.85; --dot-scale: 1; --end-x-offset: -6px;}
.bubble:nth-child(18) { width: 3px; height: 3px; left: 85%; animation-duration: 10.8s; animation-delay: 0.4s; background-color: rgba(255, 180, 240, 0.9); --max-opacity: 0.9; --dot-scale: 1.2; --end-x-offset: 11px;}
.bubble:nth-child(19) { width: 4px; height: 4px; left: 95%; animation-duration: 13.5s; animation-delay: 2.1s; background-color: rgba(230, 230, 230, 0.8); --max-opacity: 0.75; --dot-scale: 0.8;}
.bubble:nth-child(20) { width: 2px; height: 2px; left: 2%; animation-duration: 7.8s; animation-delay: 1.6s; background-color: rgba(160, 120, 230, 0.95); --max-opacity: 0.95; --dot-scale: 1; --end-x-offset: -13px;}
/* FIM DO EFEITO DE PONTINHOS */
        /* FIM DO EFEITO DE PONTINHOS */


        .shooting-star {
            position: fixed;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8);
            z-index: 1;
            opacity: 0;
            max-width: 100vw;
            max-height: 100vh;
        }

        .shooting-star::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50px;
            height: 1px;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
            transform: translateX(100%);
        }

        @keyframes shootingStar {
            0% {
                opacity: 0;
                transform: translateX(-50px) translateY(-50px);
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                opacity: 0;
                transform: translateX(200px) translateY(200px);
            }
        }

        .floating-orb {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
            max-width: 100px;
            max-height: 100px;
        }

        .orb-purple {
            background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
            animation: floatOrb 15s ease-in-out infinite;
        }

        .orb-green {
            background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
            animation: floatOrb 20s ease-in-out infinite reverse;
        }

        @keyframes floatOrb {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }

            25% {
                transform: translate(30px, -20px) scale(1.2);
                opacity: 0.6;
            }

            50% {
                transform: translate(-20px, 30px) scale(0.8);
                opacity: 0.4;
            }

            75% {
                transform: translate(20px, 20px) scale(1.1);
                opacity: 0.5;
            }
        }

        .glow-effect {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 300px;
            height: 300px;
            max-width: 50vw;
            max-height: 50vh;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulseGlow 8s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes pulseGlow {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.3;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.1;
            }
        }

        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow: hidden;
        }

        .video-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .video-modal-content {
            position: relative;
            width: 85%;
            max-width: 800px;
            background: rgba(15, 15, 25, 0.95);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 24px;
            padding: 2rem;
            box-shadow:
                0 60px 120px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(139, 92, 246, 0.2),
                0 0 60px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform: scale(0.8) translateY(60px);
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            max-height: 80vh;
            overflow-y: auto;
        }

        .video-modal.active .video-modal-content {
            transform: scale(1) translateY(0);
        }

        .video-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        .video-modal-title {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .video-modal-close {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .video-modal-close:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .video-container-modal {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 45%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(139, 92, 246, 0.3),
                0 0 40px rgba(139, 92, 246, 0.2);
        }

        .video-container-modal iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 16px;
        }

        .navbar-modern {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            padding: 0;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            width: 100%;
        }

        .navbar-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: rgba(15, 15, 20, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            z-index: -1;
            transition: all 0.4s ease;
            border-bottom: none;
        }

        .navbar-backdrop::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg,
                    rgba(139, 92, 246, 0.2) 0%,
                    rgba(139, 92, 246, 0.8) 20%,
                    rgba(16, 185, 129, 0.8) 50%,
                    rgba(139, 92, 246, 0.8) 80%,
                    rgba(139, 92, 246, 0.2) 100%);
            box-shadow:
                0 0 10px rgba(139, 92, 246, 0.5),
                0 0 20px rgba(139, 92, 246, 0.3),
                0 0 30px rgba(139, 92, 246, 0.1);
            opacity: 1;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .navbar-backdrop::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
            opacity: 0.5;
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        }

        .navbar-modern.scrolled .navbar-backdrop {
            background: rgba(10, 10, 15, 0.95);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .navbar-modern.scrolled .navbar-backdrop::after {
            box-shadow:
                0 0 15px rgba(139, 92, 246, 0.7),
                0 0 30px rgba(139, 92, 246, 0.4),
                0 0 45px rgba(139, 92, 246, 0.2);
            background: linear-gradient(90deg,
                    rgba(139, 92, 246, 0.3) 0%,
                    rgba(139, 92, 246, 1) 20%,
                    rgba(16, 185, 129, 1) 50%,
                    rgba(139, 92, 246, 1) 80%,
                    rgba(139, 92, 246, 0.3) 100%);
        }

        .navbar-container {
            padding: 1rem 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .navbar-modern.scrolled .navbar-container {
            padding: 0.7rem 0;
        }

        .navbar-brand img {
            height: 40px;
            transition: all 0.3s ease;
        }

        .navbar-modern.scrolled .navbar-brand img {
            height: 35px;
        }

        .navbar-nav {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: center;
        }

        .navbar-collapse {
            flex-grow: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: auto;
        }

        /* Modern Nav Links - CORRIGIDO COR AO CLICAR E ADICIONADO ESTILO PARA SEÇÃO ATIVA */
        .nav-link-modern,
        .nav-link-modern:link,
        .nav-link-modern:visited,
        .nav-link-modern:active,
        .nav-link-modern:focus {
            color: rgba(255, 255, 255, 0.85); /* Cor base */
            font-weight: 500;
            padding: 0.5rem 1rem;
            margin: 0 15px;
            position: relative;
            transition: all 0.3s ease;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            text-decoration: none;
        }

        .nav-link-modern:hover,
        .nav-link-modern.active-section-link { /* Combina hover e active-section */
            color: #fff; /* Cor mais clara para hover e ativo */
            background: rgba(255, 255, 255, 0.05);
            text-decoration: none;
        }

        .nav-link-modern::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #8b5cf6, #a855f7);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link-modern:hover::after,
        .nav-link-modern.active-section-link::after {
            width: 80%;
        }


        .dropdown-indicator {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown {
            position: relative;
        }

        .dropdown:hover .dropdown-indicator {
            transform: rotate(180deg);
        }

        .dropdown-menu-modern {
            background: rgba(20, 20, 30, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 12px;
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(139, 92, 246, 0.1),
                0 0 20px rgba(139, 92, 246, 0.1);
            padding: 2rem;
            margin-top: 15px;
            width: 90vw;
            max-width: 900px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: absolute;
            top: 100%;
            left: 0;
            transform: translateY(10px);
            z-index: 1000;
            display: block;
        }

        .dropdown:hover .dropdown-menu-modern {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu-modern::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 30px;
            transform: rotate(45deg);
            width: 12px;
            height: 12px;
            background: rgba(20, 20, 30, 0.95);
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            border-left: 1px solid rgba(139, 92, 246, 0.2);
        }

        .dropdown-menu-modern .row {
            margin: 0 -20px;
        }

        .dropdown-menu-modern .col-md-6 {
            padding: 0 20px;
        }

        .dropdown-header-modern {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            padding: 0 0 0.75rem 0;
            color: #8b5cf6;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        .dropdown-item-modern {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            padding: 0.75rem 1rem;
            margin: 0.25rem 0;
            border-radius: 8px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            text-decoration: none;
            white-space: nowrap;
            min-height: 48px;
            gap: 1rem;
        }

        .dropdown-item-modern:hover {
            color: #fff;
            background: rgba(139, 92, 246, 0.1);
            transform: translateX(5px);
            text-decoration: none;
        }

        .dropdown-item-modern i {
            margin-right: 0.75rem;
            font-size: 0.9rem;
            opacity: 0.7;
            color: #8b5cf6;
        }

        .dropdown-item-modern .d-flex {
            flex: 1;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
        }

        .course-tag {
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.3rem 0.6rem;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .tag-new {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }

        .tag-popular {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            position: absolute;
            right: 0;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 1rem;
            text-decoration: none;
        }

        .social-icon:hover {
            color: #fff;
            transform: translateY(-3px);
            text-decoration: none;
        }

        .social-icon-youtube:hover {
            background: #ff0000;
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
        }

        .social-icon-instagram:hover {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
            box-shadow: 0 5px 15px rgba(214, 36, 159, 0.4);
        }

        .social-icon-tiktok:hover {
            background: #000000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }

        .navbar-toggler {
            border: none;
            padding: 0;
            width: 40px;
            height: 40px;
            position: relative;
            background: transparent;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler .toggler-icon {
            display: block;
            position: absolute;
            height: 2px;
            width: 25px;
            background: white;
            border-radius: 2px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .navbar-toggler .toggler-icon:nth-child(1) {
            top: 10px;
            transform-origin: left center;
        }

        .navbar-toggler .toggler-icon:nth-child(2) {
            top: 18px;
            transform-origin: left center;
        }

        .navbar-toggler .toggler-icon:nth-child(3) {
            top: 26px;
            transform-origin: left center;
        }

        .navbar-toggler.collapsed .toggler-icon:nth-child(1) {
            transform: rotate(0deg);
            left: 8px;
        }

        .navbar-toggler.collapsed .toggler-icon:nth-child(2) {
            opacity: 1;
            left: 8px;
        }

        .navbar-toggler.collapsed .toggler-icon:nth-child(3) {
            transform: rotate(0deg);
            left: 8px;
        }

        .navbar-toggler:not(.collapsed) .toggler-icon:nth-child(1) {
            transform: rotate(45deg);
            left: 12px;
        }

        .navbar-toggler:not(.collapsed) .toggler-icon:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggler:not(.collapsed) .toggler-icon:nth-child(3) {
            transform: rotate(-45deg);
            left: 12px;
        }

        .mobile-dropdown {
            background: rgba(20, 20, 30, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 12px;
            margin-top: 0.5rem;
            padding: 1.5rem;
            border: 1px solid rgba(139, 92, 246, 0.2);
            max-height: 70vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .mobile-dropdown-header {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 1rem 0 0.5rem;
            color: #8b5cf6;
        }

        /* Mobile Dropdown Item - CORRIGIDO COR AO CLICAR E ADICIONADO ESTILO PARA SEÇÃO ATIVA */
        .mobile-dropdown-item,
        .mobile-dropdown-item:link,
        .mobile-dropdown-item:visited,
        .mobile-dropdown-item:active,
        .mobile-dropdown-item:focus {
            color: rgba(255, 255, 255, 0.7); /* Cor base */
            padding: 0.75rem;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            transition: all 0.2s ease;
            margin: 0.25rem 0;
            flex-wrap: wrap;
        }

        .mobile-dropdown-item:hover,
        .mobile-dropdown-item.active-section-link { /* Combina hover e active-section */
            color: #fff;
            background: rgba(139, 92, 246, 0.1);
            text-decoration: none;
        }

        .mobile-dropdown-item i {
            margin-right: 0.5rem;
            color: #8b5cf6;
        }

        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0;
            z-index: 100;
            width: 100%;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 4rem;
            width: 100%;
        }

        .hero-left {
            flex: 1;
            max-width: 600px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
            margin-top: 4rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .hero-title-header {
            color:white;
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 2rem;
            text-align: left;
            margin-top:4rem;   
        }

        .highlight {
            background: linear-gradient(135deg, #5E17EB, #a855f7);
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            display: inline;
            margin: 0.2rem;
            box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
            box-decoration-break: clone;
            -webkit-box-decoration-break: clone;
            line-height: 1.6;
        }

        .subtitle-header {
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            opacity: 0.9;
            margin-bottom: 1rem;
            text-align: left;
            color:white;
            padding-bottom: 1rem;
        }

        .separator {
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #5e17eb, #a855f7);
            border-radius: 2px;
            margin: 2rem 0;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .microsoft-brand {
            color: white; /* Changed from blue to white to keep text color consistent */
            font-weight: 700;
        }

        .microsoft-logo {
            display: inline-block;
            width: 32px; /* Increased from 12px to 16px */
            height: 32px; /* Increased from 12px to 16px */
            margin-right: 6px;
            vertical-align: middle;
            position: relative;
            margin-bottom: 6px;
        }

        /* Made individual squares bigger */
        .microsoft-logo::before {
            content: '';
            position: absolute;
            width: 15px; /* Increased from 5px to 7px */
            height: 15px; /* Increased from 5px to 7px */
            background: #F25022;
            top: 0;
            left: 0;
        }

        .microsoft-logo::after {
            content: '';
            position: absolute;
            width: 15px; /* Increased from 5px to 7px */
            height: 15px; /* Increased from 5px to 7px */
            background: #7FBA00;
            top: 0;
            right: 0;
        }

        .microsoft-logo .square-3 {
            position: absolute;
            width: 15px; /* Increased from 5px to 7px */
            height: 15px; /* Increased from 5px to 7px */
            background: #00A4EF;
            bottom: 0;
            left: 0;
        }

        .microsoft-logo .square-4 {
            position: absolute;
            width: 15px; /* Increased from 5px to 7px */
            height: 15px; /* Increased from 5px to 7px */
            background: #FFB900;
            bottom: 0;
            right: 0;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, #5e17eb, #a855f7);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow:
                0 10px 30px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow:
                0 15px 40px rgba(139, 92, 246, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
        }

        .hero-right {
            flex: 1;
            max-width: 600px;
            margin-top: 3rem;
        }

        .hero-video-container {
            position: relative;
            width: 100%;
            height: 400px;
            background: #000000;
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(139, 92, 246, 0.2),
                0 0 30px rgba(139, 92, 246, 0.1);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
        }

        .hero-video-container:hover {
            transform: scale(1.02);
            box-shadow:
                0 40px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(139, 92, 246, 0.3),
                0 0 50px rgba(139, 92, 246, 0.2);
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(139, 92, 246, 0.1) 0%,
                    rgba(16, 185, 129, 0.05) 50%,
                    rgba(168, 85, 247, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .hero-video-container:hover .hero-video-overlay {
            background: linear-gradient(135deg,
                    rgba(139, 92, 246, 0.15) 0%,
                    rgba(16, 185, 129, 0.1) 50%,
                    rgba(168, 85, 247, 0.15) 100%);
        }

        .hero-play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .hero-play-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), rgba(16, 185, 129, 0.2));
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-video-container:hover .hero-play-button {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow:
                0 15px 30px rgba(0, 0, 0, 0.3),
                0 0 0 6px rgba(139, 92, 246, 0.1);
        }

        .hero-video-container:hover .hero-play-button::before {
            opacity: 1;
        }

        .hero-play-icon {
            font-size: 1.8rem;
            color: #ffffff;
            margin-left: 4px;
            z-index: 1;
            position: relative;
        }

        .community-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg,
                    rgba(15, 15, 20, 0.95) 0%,
                    rgba(20, 20, 30, 0.9) 50%,
                    rgba(15, 15, 20, 0.95) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(139, 92, 246, 0.1);
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            overflow: hidden;
            width: 100%;
        }

        .community-bg-effects {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .community-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: communityFloat 12s ease-in-out infinite;
        }

        .community-orb-1 {
            top: 20%;
            left: 10%;
            width: 120px;
            height: 120px;
            animation-delay: 0s;
        }

        .community-orb-2 {
            bottom: 30%;
            right: 15%;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
            animation-delay: -6s;
        }

        @keyframes communityFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }

            50% {
                transform: translate(15px, -15px) scale(1.1);
                opacity: 0.6;
            }
        }

        .community-content {
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 5rem;
        }

        .community-left {
            flex: 1;
            max-width: 600px;
        }

        .community-title {
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .community-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .community-benefits {
            list-style: none;
            padding: 0;
            margin-bottom: 0;
        }

        .community-benefit {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(139, 92, 246, 0.1);
            transition: all 0.3s ease;
        }

        .community-benefit:hover {
            background: rgba(139, 92, 246, 0.05);
            border-color: rgba(139, 92, 246, 0.2);
            transform: translateX(10px);
        }

        .community-benefit-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #5e17eb, #a855f7);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .community-benefit-text {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            font-size: 1rem;
        }

        .community-right {
            flex: 1;
            max-width: 600px;
            perspective: 1000px;
        }

        .community-images {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            perspective: 1200px;
            transform-style: preserve-3d;
        }

        .image-container {
            position: relative;
            transform-style: preserve-3d;
            transition: all 0.4s ease;
            cursor: pointer;
            overflow: hidden;
            border-radius: 20px;
        }

        .image-container:first-child {
            transform: rotateY(-15deg) rotateX(5deg);
        }

        .image-container:last-child {
            transform: rotateY(15deg) rotateX(-5deg);
        }

        .image-container:hover {
            transform: scale(1.05);
        }

        .image-container:first-child:hover {
            transform: rotateY(-20deg) rotateX(8deg) scale(1.05);
        }

        .image-container:last-child:hover {
            transform: rotateY(20deg) rotateX(-8deg) scale(1.05);
        }

        .community-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow:
                0 40px 80px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(139, 92, 246, 0.3),
                0 0 40px rgba(139, 92, 246, 0.2);
            transition: all 0.4s ease;
            display: block;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
        }

        .image-container:hover .image-overlay {
            opacity: 1;
        }

        .kiwify-overlay {
            background: linear-gradient(135deg,
                    rgba(34, 197, 94, 0.8) 0%,
                    rgba(22, 163, 74, 0.9) 100%);
        }

        .discord-overlay {
            background: linear-gradient(135deg,
                    rgba(88, 101, 242, 0.8) 0%,
                    rgba(71, 82, 196, 0.9) 100%);
        }

        .overlay-content {
            text-align: center;
            color: white;
        }

        .overlay-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .overlay-title {
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .courses-section, .roi-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg,
                    rgba(8, 8, 12, 0.98) 0%,
                    rgba(12, 12, 18, 0.95) 50%,
                    rgba(8, 8, 12, 0.98) 100%);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-top: 1px solid rgba(139, 92, 246, 0.08);
            border-bottom: 1px solid rgba(139, 92, 246, 0.08);
            overflow: hidden;
            width: 100%;
        }

        .courses-bg-effects {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .courses-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
            animation: coursesFloat 18s ease-in-out infinite;
        }

        .courses-orb-1 {
            top: 15%;
            left: 5%;
            width: 200px;
            height: 200px;
            animation-delay: 0s;
        }

        .courses-orb-2 {
            bottom: 20%;
            right: 8%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
            animation-delay: -9s;
        }

        .courses-orb-3 {
            top: 60%;
            left: 80%;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
            animation-delay: -15s;
        }

        @keyframes coursesFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.2;
            }

            33% {
                transform: translate(20px, -25px) scale(1.1);
                opacity: 0.4;
            }

            66% {
                transform: translate(-15px, 20px) scale(0.9);
                opacity: 0.3;
            }
        }

        .courses-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .courses-content {
            display: flex;
            gap: 3rem;
            align-items: flex-start;
        }

        .courses-navigation {
            flex-shrink: 0;
            width: 280px;
            position: sticky;
            top: 120px;
        }

        .nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(139, 92, 246, 0.1);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .nav-button {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: 15px;
            padding: 1.2rem 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .nav-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .nav-button:hover::before {
            left: 100%;
        }

        .nav-button:hover {
            background: rgba(139, 92, 246, 0.08);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateX(8px);
            color: #ffffff;
            box-shadow:
                0 10px 25px rgba(139, 92, 246, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .nav-button.active {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
            border-color: rgba(139, 92, 246, 0.4);
            color: #ffffff;
            transform: translateX(12px);
            box-shadow:
                0 15px 35px rgba(139, 92, 246, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .nav-button i {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        .nav-button.active i {
            opacity: 1;
            color: #8b5cf6;
        }

        .stats-container {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            padding: 1.2rem;
            margin-top: 1.5rem;
            border: 1px solid rgba(139, 92, 246, 0.15);
        }

        .stats-item {
            display: flex;
            flex-direction: column;
            margin-bottom: 1rem;
        }

        .stats-item:last-child {
            margin-bottom: 0;
        }

        .stats-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .stats-value i {
            color: #10b981;
        }

        .stats-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0.2rem;
        }

        .discount-banner {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 12px;
            padding: 1rem;
            margin-top: 1rem;
            text-align: center;
        }

        .discount-banner-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            margin-bottom: 0.8rem;
        }

        .discount-banner-header i {
            color: #10b981;
        }

        .discount-banner-text {
            color: #10b981;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .sidebar-countdown-timer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.3rem;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 15px;
            padding: 0.5rem 0.8rem;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 0.5rem;
        }

        .sidebar-countdown-time {
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }

        .sidebar-countdown-unit {
            display: flex;
            align-items: center;
            gap: 0.1rem;
        }

        .sidebar-countdown-number {
            font-weight: 600;
            color: #10b981;
            min-width: 16px;
            text-align: center;
        }

        .sidebar-countdown-label {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .sidebar-countdown-separator {
            color: rgba(16, 185, 129, 0.6);
            font-weight: 300;
            margin: 0 0.1rem;
        }

        .courses-main {
            flex: 1;
            min-height: 600px;
        }

        .course-category {
            display: none;
            animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .course-category.active {
            display: block;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .category-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .category-title i {
            color: #8b5cf6;
            font-size: 1.8rem;
        }

        .category-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .course-card {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(139, 92, 246, 0.1);
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            box-shadow:
                0 15px 30px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .course-card:hover {
            transform: translateY(-6px);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(139, 92, 246, 0.2),
                0 0 25px rgba(139, 92, 246, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .pillar-tag {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.4rem 0.8rem;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .pillar-colaboracao {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.9), rgba(234, 88, 12, 0.9));
            color: white;
            border: 1px solid rgba(249, 115, 22, 0.3);
        }

        .pillar-seguranca {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.9));
            color: white;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .pillar-automacao {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(147, 51, 234, 0.9));
            color: white;
            border: 1px solid rgba(168, 85, 247, 0.3);
        }

        .pillar-tcl {
            background: linear-gradient(135deg, rgba(71, 197, 71, 0.9), rgba(53, 154, 33, 0.9));
            color: white;
            border: 1px solid rgba(168, 85, 247, 0.3);
        }

        .course-card.has-colaboracao:hover {
            border-color: rgba(249, 115, 22, 0.4);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(249, 115, 22, 0.3),
                0 0 30px rgba(249, 115, 22, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .course-card.has-seguranca:hover {
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(59, 130, 246, 0.3),
                0 0 30px rgba(59, 130, 246, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .course-card.has-automacao:hover {
            border-color: rgba(168, 85, 247, 0.4);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(168, 85, 247, 0.3),
                0 0 30px rgba(168, 85, 247, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .course-card.has-tcl:hover {
            border-color: rgba(13, 243, 59, 0.4);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(117, 247, 85, 0.3),
                0 0 30px rgba(85, 247, 112, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        #thumb-sharepoint {
            background:url(../assets/img/thumb-sharepoint.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-entraid {
            background:url(../assets/img/thumb-entraid.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-exchange {
            background:url(../assets/img/thumb-exchange.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-automacao {
            background:url(../assets/img/thumb-automacao.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-tcl {
            background:url(../assets/img/thumb-tcl.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-intune {
            background:url(../assets/img/thumb-intune.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-header {
            background:url(../assets/img/thumb-header.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-ms900 {
            background:url(../assets/img/MS900.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-sc900 {
            background:url(../assets/img/SC900.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-sc400 {
            background:url(../assets/img/SC400.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-sc300 {
            background:url(../assets/img/SC300.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-sc200 {
            background:url(../assets/img/SC200.jpg) no-repeat;
            background-size:cover;
        }

        #thumb-md102 {
            background:url(../assets/img/MD102.jpg) no-repeat;
            background-size:cover;
        }

        .course-video-placeholder {
            height: 140px;
            background: linear-gradient(135deg,
                    rgba(139, 92, 246, 0.1) 0%,
                    rgba(16, 185, 129, 0.05) 50%,
                    rgba(168, 85, 247, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .course-video-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg,
                    rgba(139, 92, 246, 0.05) 0%,
                    rgba(16, 185, 129, 0.03) 50%,
                    rgba(168, 85, 247, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .course-card:hover .course-video-placeholder::before {
            opacity: 1;
        }

        .course-play-button {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .course-play-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(139, 92, 246, 0.3), rgba(16, 185, 129, 0.2));
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .course-card:hover .course-play-button {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
            box-shadow:
                0 8px 20px rgba(0, 0, 0, 0.2),
                0 0 0 3px rgba(139, 92, 246, 0.1);
        }

        .course-card:hover .course-play-button::before {
            opacity: 1;
        }

        .course-play-icon {
            font-size: 1rem;
            color: #ffffff;
            margin-left: 2px;
            z-index: 1;
            position: relative;
        }

        .course-content {
            padding: 1.5rem;
        }

        .course-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.6rem;
            line-height: 1.3;
        }

        .course-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
            margin-bottom: 1.2rem;
        }

        .course-details {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.2rem;
        }

        .course-detail {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.03);
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            border: 1px solid rgba(139, 92, 246, 0.1);
        }

        .course-detail i {
            color: #8b5cf6;
            font-size: 0.75rem;
        }

        .course-certificate {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
            color: #10b981;
            padding: 0.5rem 0.8rem;
            border-radius: 10px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(16, 185, 129, 0.2);
            margin-bottom: 1.2rem;
        }

        .course-certificate i {
            color: #10b981;
        }

        .course-price {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            border: 1px solid rgba(139, 92, 246, 0.1);
            position: relative;
            overflow: hidden;
        }

        .course-price::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #8b5cf6, #10b981, #8b5cf6);
            opacity: 0.6;
        }

        .price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem;
        }

        .original-price {
            text-decoration: line-through;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .discount-price {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #10b981, #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: baseline;
            gap: 0.2rem;
        }

        .discount-price .currency {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .regular-price {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: baseline;
            gap: 0.2rem;
        }

        .regular-price .currency {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .discount-badge {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
            align-self: flex-start;
        }

        .price-note {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            margin-top: 0.5rem;
            font-style: italic;
        }

        .installment-info {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-top: 0.3rem;
            padding: 0.4rem 0.6rem;
            background: rgba(139, 92, 246, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(139, 92, 246, 0.1);
        }

        .guarantee-info {
            font-size: 0.75rem;
            color: #10b981;
            text-align: center;
            margin-top: 0.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.3rem;
        }

        .guarantee-info i {
            color: #10b981;
        }

        .course-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: linear-gradient(135deg, #5e17eb, #a855f7);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            width: 100%;
            justify-content: center;
            box-shadow:
                0 8px 20px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .course-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .course-cta-button:hover::before {
            left: 100%;
        }

        .course-cta-button:hover {
            transform: translateY(-2px);
            box-shadow:
                0 12px 30px rgba(139, 92, 246, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            color: white;
            text-decoration: none;
        }

        .course-cta-button i {
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .course-cta-button:hover i {
            transform: translateX(3px);
        }

        .course-exam-info {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.1));
            color: #3b82f6;
            padding: 0.5rem 0.8rem;
            border-radius: 10px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(59, 130, 246, 0.2);
            margin-bottom: 1.2rem;
        }

        .course-exam-info i {
            color: #3b82f6;
        }

        .coming-soon-banner {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.95), rgba(255, 152, 0, 0.95));
            color: #000;
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
            font-weight: 700;
            text-align: center;
            z-index: 30;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 2px solid rgba(255, 193, 7, 0.8);
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .course-card.coming-soon {
            /* pointer-events: none; */
            opacity: 0.8;
            position: relative;
        }

        .course-card.coming-soon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            z-index: 20;
            pointer-events: none;
        }

        .course-card.coming-soon:hover {
            transform: none;
            box-shadow:
                0 15px 30px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .course-card.coming-soon .course-video-placeholder::before {
            opacity: 0 !important;
        }

        .course-card.coming-soon:hover {
            border-color: rgba(139, 92, 246, 0.1);
            box-shadow:
                0 15px 30px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .success-cases-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg,
                    rgba(10, 10, 15, 0.98) 0%,
                    rgba(15, 15, 25, 0.95) 50%,
                    rgba(10, 10, 15, 0.98) 100%);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-top: 1px solid rgba(139, 92, 246, 0.08);
            border-bottom: 1px solid rgba(139, 92, 246, 0.08);
            overflow: hidden;
            width: 100%;
        }

        .success-cases-bg-effects {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .success-cases-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
            animation: successCasesFloat 20s ease-in-out infinite;
        }

        .success-cases-orb-1 {
            top: 10%;
            left: 15%;
            width: 180px;
            height: 180px;
            animation-delay: 0s;
        }

        .success-cases-orb-2 {
            bottom: 15%;
            right: 20%;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 70%);
            animation-delay: -10s;
        }

        .success-cases-orb-3 {
            top: 50%;
            left: 75%;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.04) 0%, transparent 70%);
            animation-delay: -15s;
        }
        
        @keyframes successCasesFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.2;
            }

            33% {
                transform: translate(25px, -30px) scale(1.1);
                opacity: 0.4;
            }

            66% {
                transform: translate(-20px, 25px) scale(0.9);
                opacity: 0.3;
            }
        }

        .success-cases-header {
            position: relative;
            z-index: 10;
            text-align: center;
            margin-bottom: 4rem;
        }

        .success-cases-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .success-cases-title i {
            color: #f59e0b;
            font-size: 2.2rem;
        }

        .success-cases-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .carousel-3d-container {
            position: relative;
            z-index: 10;
            perspective: 1200px;
            height: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }

        .carousel-3d {
            position: relative;
            width: 100%;
            height: 420px;
            transform-style: preserve-3d;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .success-card {
            position: absolute;
            width: 320px;
            height: 440px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transform-style: preserve-3d;
        }

        .success-card:nth-child(1) {
            transform: translateX(-400px) rotateY(45deg) scale(0.8);
            opacity: 0.6;
            z-index: 1;
        }

        .success-card:nth-child(2) {
            transform: translateX(-200px) rotateY(25deg) scale(0.9);
            opacity: 0.8;
            z-index: 2;
        }

        .success-card:nth-child(3) {
            transform: translateX(0) rotateY(0deg) scale(1);
            opacity: 1;
            z-index: 3;
        }

        .success-card:nth-child(4) {
            transform: translateX(200px) rotateY(-25deg) scale(0.9);
            opacity: 0.8;
            z-index: 2;
        }

        .success-card:nth-child(5) {
            transform: translateX(400px) rotateY(-45deg) scale(0.8);
            opacity: 0.6;
            z-index: 1;
        }

        .success-card.active {
            transform: translateX(0) rotateY(0deg) scale(1.05);
            opacity: 1;
            z-index: 5;
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(139, 92, 246, 0.3),
                0 0 40px rgba(139, 92, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .success-card-video {
            position: relative;
            height: 200px;
            background: linear-gradient(135deg,
                    rgba(139, 92, 246, 0.1) 0%,
                    rgba(16, 185, 129, 0.05) 50%,
                    rgba(168, 85, 247, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
            transform: translateZ(0);
        }

        .success-card-video::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg,
                    rgba(139, 92, 246, 0.05) 0%,
                    rgba(16, 185, 129, 0.03) 50%,
                    rgba(168, 85, 247, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .success-card-video:hover::before {
            opacity: 1;
        }

        .success-play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url(../assets/img/thumb_depoimentos.png) no-repeat;
            background-size: cover;
            transition: all 0.3s ease;
            z-index: 10;
            cursor: pointer;
        }
        
        .success-play-button {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .success-play-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(139, 92, 246, 0.3), rgba(16, 185, 129, 0.2));
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .success-card-video:hover .success-play-button {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow:
                0 10px 25px rgba(0, 0, 0, 0.2),
                0 0 0 4px rgba(139, 92, 246, 0.1);
        }

        .success-card-video:hover .success-play-button::before {
            opacity: 1;
        }

        .success-play-button i {
            font-size: 1.2rem;
            color: #ffffff;
            margin-left: 3px;
            z-index: 1;
            position: relative;
        }

        .success-card-content {
            padding: 1.5rem;
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .success-student-info {
            flex: 1;
        }

        .success-student-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .success-course-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.15));
            color: #8b5cf6;
            padding: 0.4rem 0.8rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(139, 92, 246, 0.3);
            margin-bottom: 1rem;
        }

        .success-level {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
        }

        .success-level i {
            color: #10b981;
            font-size: 0.8rem;
        }

        .success-contact {
            margin-top: auto;
        }

        .success-contact-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .success-contact-link:hover {
            color: #ffffff;
            background: rgba(0, 119, 181, 0.2);
            border-color: rgba(0, 119, 181, 0.3);
            text-decoration: none;
            transform: translateY(-2px);
        }

        .success-contact-link i {
            color: #0077b5;
        }

        .carousel-navigation {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .carousel-btn:hover {
            background: rgba(139, 92, 246, 0.1);
            border-color: rgba(139, 92, 246, 0.4);
            color: #ffffff;
            transform: scale(1.1);
        }

        .carousel-indicators {
            display: none;
            gap: 0.8rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #8b5cf6;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
        }

        .indicator:hover {
            background: rgba(139, 92, 246, 0.7);
        }

        .faq-cta-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg,
                    rgba(12, 12, 18, 0.98) 0%,
                    rgba(18, 18, 28, 0.95) 50%,
                    rgba(12, 12, 18, 0.98) 100%);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-top: 1px solid rgba(139, 92, 246, 0.08);
            overflow: hidden;
            width: 100%;
        }

        .faq-cta-bg-effects {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .faq-cta-orb {
            position: absolute;
            border-radius: 50%;
            animation: faqCtaFloat 22s ease-in-out infinite;
        }

        .faq-cta-orb-1 {
            top: 15%;
            left: 80%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
            animation-delay: -5s;
        }

        .faq-cta-orb-2 {
            bottom: 20%;
            left: 10%;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
            animation-delay: -12s;
        }

        @keyframes faqCtaFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.25;
            }

            33% {
                transform: translate(-20px, 25px) scale(1.15);
                opacity: 0.45;
            }

            66% {
                transform: translate(25px, -15px) scale(0.85);
                opacity: 0.3;
            }
        }

        .faq-cta-header {
            position: relative;
            z-index: 10;
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-cta-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .faq-cta-main-title i {
            color: #8b5cf6;
            font-size: 2.2rem;
        }

        .faq-cta-main-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .faq-cta-content-wrapper {
            position: relative;
            z-index: 10;
            display: flex;
            gap: 3rem;
            align-items: flex-start;
        }

        .faq-accordion-container {
            flex: 1.5;
            max-width: 700px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(139, 92, 246, 0.3);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
        }

        .faq-question-btn {
            width: 100%;
            background: transparent;
            border: none;
            padding: 1.5rem;
            text-align: left;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-question-btn:hover {
            background-color: rgba(139, 92, 246, 0.05);
        }

        .faq-question-btn.active {
            color: #ffffff;
            background-color: rgba(139, 92, 246, 0.08);
        }

        .faq-icon {
            font-size: 1rem;
            color: #8b5cf6;
            transition: transform 0.3s ease;
        }

        .faq-question-btn.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding-top 0.4s ease, margin-top 0.4s ease;
            color: rgba(255, 255, 255, 0.75);
            font-size: 1rem;
            line-height: 1.7;
        }

        .faq-answer-content p {
            margin: 0;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        .cta-container {
            flex: 1;
            max-width: 450px;
            position: sticky;
            top: 120px;
        }

        .cta-box-modern {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
        }

        .cta-box-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #8b5cf6, #10b981);
            opacity: 0.7;
        }

        .cta-box-icon {
            font-size: 3rem;
            color: #8b5cf6;
            margin-bottom: 1.5rem;
            display: block;
        }

        .cta-box-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .cta-box-text {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .cta-whatsapp-btn-modern {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow:
                0 10px 25px rgba(37, 211, 102, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border: none;
        }

        .cta-whatsapp-btn-modern:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow:
                0 15px 35px rgba(37, 211, 102, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            color: white;
            text-decoration: none;
        }

        .cta-whatsapp-btn-modern i {
            font-size: 1.3rem;
        }

        .cta-box-note {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 1.5rem;
            font-style: italic;
        }

        .modern-footer {
            background: linear-gradient(135deg,
                    rgba(10, 10, 15, 0.98) 0%,
                    rgba(15, 15, 25, 0.95) 50%,
                    rgba(10, 10, 15, 0.98) 100%);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            color: rgba(255, 255, 255, 0.7);
            padding-top: 4rem;
            padding-bottom: 1rem;
            position: relative;
            border-top: 1px solid rgba(139, 92, 246, 0.1);
        }

        .footer-decoration-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg,
                    rgba(139, 92, 246, 0.2) 0%,
                    rgba(139, 92, 246, 0.8) 20%,
                    rgba(16, 185, 129, 0.8) 50%,
                    rgba(139, 92, 246, 0.8) 80%,
                    rgba(139, 92, 246, 0.2) 100%);
            box-shadow:
                0 0 10px rgba(139, 92, 246, 0.5),
                0 0 20px rgba(139, 92, 246, 0.3);
        }

        .footer-logo {
            height: 45px;
            margin-bottom: 1.5rem;
        }

        .footer-description {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            max-width: 350px;
        }

        .footer-social-icons {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .footer-social-icons a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-social-icons a:hover {
            color: #fff;
            transform: translateY(-3px);
            border-color: rgba(139, 92, 246, 0.5);
        }

        .footer-social-icons a:hover.fa-youtube {
            background-color: #ff0000;
        }

        .footer-social-icons a:hover.fa-instagram {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }

        .footer-social-icons a:hover.fa-tiktok {
            background-color: #000;
        }

        .footer-social-icons a:hover.fa-linkedin {
            background-color: #0077b5;
        }


        .footer-heading {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #8B5CF6;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: #8b5cf6;
            padding-left: 5px;
        }

        .footer-contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact-info li {
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact-info i {
            color: #8b5cf6;
            margin-right: 0.8rem;
            margin-top: 0.2rem;
            width: 16px;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom p {
            margin: 0;
        }

        .footer-bottom .fa-heart {
            color: #e74c3c;
        }

        .whatsapp-float-button {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 10px 18px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
            z-index: 1000;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .whatsapp-float-button i {
            font-size: 1.3rem;
        }

        .whatsapp-float-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
            color: white;
        }

        .terms-acceptance-popup {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(200%);
            max-width: 650px;
            width: calc(100% - 40px);
            background: rgba(20, 20, 30, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(139, 92, 246, 0.1);
            z-index: 10001;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            opacity: 0;
            visibility: hidden;
            transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease, visibility 0.5s ease;
        }

        .terms-acceptance-popup.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .terms-popup-header {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #ffffff;
        }

        .terms-popup-header i {
            font-size: 1.5rem;
            color: #8b5cf6;
        }

        .terms-popup-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
        }

        .terms-popup-text {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
            margin: 0;
        }

        .terms-popup-text a {
            color: #8b5cf6;
            text-decoration: none;
            font-weight: 500;
        }

        .terms-popup-text a:hover {
            text-decoration: underline;
            color: #a855f7;
        }

        .terms-popup-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-top: 0.5rem;
        }

        .terms-accept-button {
            background: linear-gradient(135deg, #5e17eb, #a855f7);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
        }

        .terms-accept-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
        }

        .terms-close-button {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: auto;
        }

        .terms-close-button:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }

        .container {
            max-width: 1200px !important;
            padding-left: 15px;
            padding-right: 15px;
        }

        @media (max-width: 1199px) {
            .dropdown-menu-modern {
                width: 85vw;
                max-width: 800px;
                padding: 1.5rem;
                left: -100px;
            }

            .courses-content {
                gap: 2rem;
            }

            .courses-navigation {
                width: 250px;
            }

            .video-modal-content {
                width: 90%;
                max-width: 700px;
                padding: 1.5rem;
            }

            .video-container-modal {
                padding-bottom: 50%;
            }

            .success-cases-section {
                padding: 80px 0;
            }

            .success-cases-title {
                font-size: 2rem;
                flex-direction: column;
                gap: 0.5rem;
            }

            .success-cases-subtitle {
                font-size: 1rem;
            }

            .carousel-3d-container {
                height: 480px;
            }

            .carousel-3d {
                height: 380px;
            }

            .success-card {
                width: 280px;
                height: 380px;
            }

            .success-card-video {
                height: 160px;
            }

            .success-card-content {
                height: 220px;
                padding: 1.2rem;
            }

            .success-card:nth-child(1) {
                transform: translateX(-300px) rotateY(30deg) scale(0.7);
            }

            .success-card:nth-child(2) {
                transform: translateX(-150px) rotateY(15deg) scale(0.85);
            }

            .success-card:nth-child(3) {
                transform: translateX(0) rotateY(0deg) scale(1);
            }

            .success-card:nth-child(4) {
                transform: translateX(150px) rotateY(-15deg) scale(0.85);
            }

            .success-card:nth-child(5) {
                transform: translateX(300px) rotateY(-30deg) scale(0.7);
            }

            .modern-footer .col-lg-2,
            .modern-footer .col-lg-3 {
                flex-basis: 50%;
            }
        }

        @media (max-width: 991px) {
            .dropdown-menu-modern {
                left: -50px;
            }

            .navbar-collapse {
                position: static;
                transform: none;
                width: 100%;
            }

            .social-icons {
                position: static;
                justify-content: center;
                margin-top: 1rem;
            }

            .dropdown-menu-modern {
                display: none !important;
            }

            .hero-content {
                flex-direction: column;
                gap: 3rem;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-video-container {
                height: 300px;
            }

            .hero-play-button {
                width: 70px;
                height: 70px;
            }

            .hero-play-icon {
                font-size: 1.5rem;
            }

            .video-modal-content {
                width: 95%;
                padding: 1.5rem;
            }

            .video-modal-title {
                font-size: 1.2rem;
            }

            .video-container-modal {
                padding-bottom: 55%;
            }

            .community-content {
                flex-direction: column;
                gap: 3rem;
                text-align: center;
            }

            .community-title {
                font-size: 2.5rem;
            }

            .community-subtitle {
                font-size: 1.1rem;
            }

            .community-images {
                gap: 1.5rem;
            }

            .image-container:first-child {
                transform: rotateY(-10deg) rotateX(3deg);
            }

            .image-container:last-child {
                transform: rotateY(10deg) rotateX(-3deg);
            }

            .overlay-icon {
                font-size: 2.5rem;
            }

            .overlay-title {
                font-size: 1.5rem;
            }

            .courses-content {
                flex-direction: column;
                gap: 2rem;
            }

            .courses-navigation {
                width: 100%;
                position: static;
            }

            .nav-buttons {
                flex-direction: row;
                overflow-x: auto;
                padding: 1rem;
                gap: 0.8rem;
            }

            .nav-button {
                flex-shrink: 0;
                min-width: 180px;
                padding: 1rem 1.2rem;
                text-align: center;
            }

            .courses-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.2rem;
            }

            .course-card {
                margin: 0 auto;
                max-width: 400px;
            }

            .countdown-container {
                text-align: center;
            }

            .countdown-timer {
                font-size: 0.8rem;
                padding: 0.5rem 0.8rem;
            }

            .faq-cta-content-wrapper {
                flex-direction: column;
                align-items: center;
                gap: 3rem;
            }

            .faq-accordion-container {
                max-width: 100%;
                width: 100%;
            }

            .cta-container {
                position: static;
                width: 100%;
                max-width: 500px;
            }

            .faq-cta-main-title {
                font-size: 2.2rem;
            }

            .faq-cta-main-subtitle {
                font-size: 1.1rem;
            }

            .modern-footer .col-md-6 {
                text-align: center;
            }

            .modern-footer .footer-logo,
            .modern-footer .footer-social-icons {
                margin-left: auto;
                margin-right: auto;
                justify-content: center;
            }

            .modern-footer .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .terms-acceptance-popup {
                max-width: 90%;
            }
        }

        @media (max-width: 767px) {
            .community-section {
                padding: 80px 0;
                margin-bottom: 40px;
            }

            .hero-section {
                padding: 80px 0;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-video-container {
                height: 250px;
            }

            .hero-play-button {
                width: 60px;
                height: 60px;
            }

            .hero-play-icon {
                font-size: 1.3rem;
            }

            .hero-cta {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }

            .video-modal-content {
                width: 95%;
                padding: 1rem;
            }

            .video-modal-title {
                font-size: 1.1rem;
            }

            .video-modal-close {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .video-container-modal {
                padding-bottom: 60%;
            }

            .community-title {
                font-size: 2rem;
            }

            .community-subtitle {
                font-size: 1rem;
            }

            .community-benefit {
                margin-bottom: 1rem;
                padding: 0.8rem;
            }

            .community-benefit-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .community-benefit-text {
                font-size: 1rem;
            }

            .community-images {
                gap: 1rem;
            }

            .image-container:first-child {
                transform: rotateY(-8deg) rotateX(2deg);
            }

            .image-container:last-child {
                transform: rotateY(8deg) rotateX(-2deg);
            }

            .overlay-icon {
                font-size: 2rem;
            }

            .overlay-title {
                font-size: 1.2rem;
            }

            .dropdown-menu-modern {
                width: 95vw;
            }

            .courses-section {
                padding: 80px 0;
            }

            .nav-buttons {
                padding: 0.8rem;
                gap: 0.5rem;
            }

            .nav-button {
                min-width: 140px;
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }

            .category-title {
                font-size: 1.8rem;
            }

            .category-description {
                font-size: 1rem;
            }

            .courses-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .course-video-placeholder {
                height: 120px;
            }

            .course-play-button {
                width: 45px;
                height: 45px;
            }

            .course-play-icon {
                font-size: 0.9rem;
            }

            .course-content {
                padding: 1.2rem;
            }

            .course-name {
                font-size: 1.1rem;
            }

            .course-description {
                font-size: 0.85rem;
            }

            .course-details {
                gap: 0.6rem;
            }

            .course-detail {
                font-size: 0.8rem;
                padding: 0.3rem 0.5rem;
            }

            .course-certificate {
                font-size: 0.75rem;
                padding: 0.4rem 0.6rem;
            }

            .course-exam-info {
                font-size: 0.75rem;
                padding: 0.4rem 0.6rem;
            }

            .course-cta-button {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }

            .countdown-timer {
                font-size: 0.75rem;
                padding: 0.4rem 0.7rem;
                flex-wrap: wrap;
                gap: 0.3rem;
            }

            .countdown-text {
                margin-right: 0.3rem;
            }

            .countdown-time {
                gap: 0.2rem;
            }

            .countdown-number {
                min-width: 18px;
            }

            .countdown-label {
                font-size: 0.7rem;
            }

            .sidebar-countdown-timer {
                font-size: 0.7rem;
                padding: 0.4rem 0.6rem;
                flex-wrap: wrap;
                gap: 0.2rem;
            }

            .sidebar-countdown-number {
                min-width: 14px;
            }

            .sidebar-countdown-label {
                font-size: 0.6rem;
            }

            .success-cases-header {
                margin-bottom: 3rem;
            }

            .success-cases-title {
                font-size: 1.8rem;
            }

            .success-cases-subtitle {
                font-size: 0.9rem;
            }

            .carousel-3d-container {
                height: 440px;
            }

            .carousel-3d {
                height: 340px;
            }

            .success-card {
                width: 250px;
                height: 340px;
            }

            .success-card-video {
                height: 140px;
            }

            .success-card-content {
                height: 200px;
                padding: 1rem;
            }

            .success-student-name {
                font-size: 1.1rem;
            }

            .success-course-badge {
                font-size: 0.75rem;
                padding: 0.3rem 0.6rem;
            }

            .success-level {
                font-size: 0.8rem;
            }

            .success-contact-link {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }

            .success-card:nth-child(1) {
                transform: translateX(-200px) rotateY(45deg) scale(0.5);
                opacity: 0.3;
            }

            .success-card:nth-child(2) {
                transform: translateX(-100px) rotateY(25deg) scale(0.7);
                opacity: 0.5;
            }

            .success-card:nth-child(3) {
                transform: translateX(0) rotateY(0deg) scale(1);
                opacity: 1;
            }

            .success-card:nth-child(4) {
                transform: translateX(100px) rotateY(-25deg) scale(0.7);
                opacity: 0.5;
            }

            .success-card:nth-child(5) {
                transform: translateX(200px) rotateY(-45deg) scale(0.5);
                opacity: 0.3;
            }

            .carousel-navigation {
                gap: 1.5rem;
            }

            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 0.9rem;
            }

            .faq-cta-section {
                padding: 80px 0;
            }

            .faq-cta-main-title {
                font-size: 1.8rem;
                flex-direction: column;
                gap: 0.5rem;
            }

            .faq-cta-main-subtitle {
                font-size: 1rem;
            }

            .faq-question-btn {
                padding: 1.2rem;
                font-size: 1rem;
            }

            .faq-answer-content p {
                padding: 0 1.2rem 1.2rem 1.2rem;
            }

            .cta-box-modern {
                padding: 2rem;
            }

            .cta-box-title {
                font-size: 1.5rem;
            }

            .cta-whatsapp-btn-modern {
                padding: 0.9rem 1.8rem;
                font-size: 1rem;
            }

            .modern-footer .col-lg-4,
            .modern-footer .col-lg-2,
            .modern-footer .col-lg-3,
            .modern-footer .col-md-6,
            .modern-footer .col-sm-6 {
                text-align: center;
                margin-bottom: 2rem;
            }

            .modern-footer .footer-logo,
            .modern-footer .footer-social-icons {
                margin-left: auto;
                margin-right: auto;
                justify-content: center;
            }

            .modern-footer .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .modern-footer .footer-contact-info li {
                justify-content: center;
            }

            .whatsapp-float-button {
                padding: 8px 15px;
                font-size: 0.9rem;
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-float-button i {
                font-size: 1.2rem;
            }

            .terms-acceptance-popup {
                flex-direction: column;
                align-items: stretch;
                padding: 1rem;
                max-width: calc(100% - 20px);
                bottom: 10px;
            }

            .terms-popup-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 0.5rem;
            }

            .terms-popup-title {
                font-size: 1.1rem;
            }

            .terms-popup-text {
                font-size: 0.85rem;
                text-align: center;
            }

            .terms-popup-actions {
                flex-direction: column;
                gap: 0.8rem;
            }

            .terms-accept-button {
                width: 100%;
                padding: 0.7rem;
            }

            .terms-close-button {
                position: absolute;
                top: 10px;
                right: 10px;
                margin-left: 0;
            }
        }

        .dropdown-item-modern span {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }



        /* Aplicando glass morphism na overlay do WhatsApp */
        .whatsapp-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: 40;
            border-radius: 20px;
        }

        .course-card:hover .whatsapp-overlay {
            opacity: 1;
            visibility: visible;
        }

        .whatsapp-box {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            max-width: 320px;
            margin: 20px;
            transform: scale(0.8);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .course-card:hover .whatsapp-box {
            transform: scale(1);
        }

        .whatsapp-box h3 {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .whatsapp-box p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        /* Estilizando botão WhatsApp com as cores corretas */
        .whatsapp-button {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            text-decoration: none;
            padding: 0.8rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.7rem;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            box-shadow:
                0 8px 20px rgba(37, 211, 102, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .whatsapp-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .whatsapp-button:hover::before {
            left: 100%;
        }

        .whatsapp-button:hover {
            background: linear-gradient(135deg, #128C7E, #25D366);
            transform: translateY(-2px);
            box-shadow:
                0 12px 30px rgba(37, 211, 102, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            color: white;
            text-decoration: none;
        }

        .whatsapp-button i {
            font-size: 1rem;
        }

        @media (max-width: 480px) {
            .course-card {
                margin: 10px;
                max-width: 350px;
            }
            
            .whatsapp-box {
                margin: 15px;
                padding: 1.5rem;
                max-width: 280px;
            }
            
            .whatsapp-box h3 {
                font-size: 1.2rem;
            }
            
            .whatsapp-box p {
                font-size: 0.85rem;
            }
        }

        
        /* Header */
        .roi-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .roi-title {
            font-size: 3rem;
            font-weight: 700;
            background: white;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .roi-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Table Container */
        .roi-table-container {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        .roi-table {
            width: 100%;
            margin: 0;
        }

        .roi-table thead th {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
            color: #fff;
            font-weight: 600;
            padding: 20px 16px;
            border: none;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .roi-table tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .roi-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.03);
            transform: translateX(2px);
        }

        .roi-table tbody td {
            padding: 20px 16px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            border: none;
            vertical-align: middle;
        }

        .course-name {
            font-weight: 600;
            color: #fff;
            font-size: 0.95rem;
        }

        .roi-type {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            white-space: nowrap;
            min-width: fit-content;
        }

        .roi-type.financeiro {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .roi-type.estrategico {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
            color: #3b82f6;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .completion-time {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .roi-estimado {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.4;
        }

        .roi-estimado .valor-principal {
            color: #22c55e;
            font-weight: 600;
        }

        .roi-estimado .valor-anual {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85em;
            display: block;
            margin-top: 2px;
        }

        /* Hidden rows */
        .roi-table tbody tr.hidden-row {
            display: none;
        }

        .roi-table tbody tr.hidden-row.show {
            display: table-row;
            animation: fadeInUp 0.5s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Toggle Button */
        .roi-toggle-container {
            text-align: center;
            margin-top: 30px;
        }

        .roi-toggle-btn {
            background:linear-gradient(135deg, #5E17EB, #a855f7);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
        }

        .roi-toggle-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
            background: linear-gradient(135deg, #a855f7, #8b5cf6);
        }

        .roi-toggle-btn:active {
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .roi-title {
                font-size: 2rem;
            }

            .roi-subtitle {
                font-size: 1.1rem;
            }

            .roi-table-container {
                border-radius: 12px;
            }

            .roi-table thead th,
            .roi-table tbody td {
                padding: 12px 8px;
                font-size: 0.85rem;
            }

            .course-name {
                font-size: 0.85rem;
            }

            .roi-type {
                font-size: 0.7rem;
                padding: 4px 8px;
            }

            /* Hide overlay on mobile for better UX */
            .subtle-recommended-overlay {
                display: none;
            }
        }

        /* Recommended Tag - Subtle overlay */
        .table-row-wrapper {
            position: relative;
        }

        .subtle-recommended-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            width: 80%;
            height: 100%;
            background: linear-gradient(90deg, rgb(94, 23, 235), rgb(168, 85, 247), transparent);
            display: flex;
            align-items: center;
            padding-left: 16px;
            font-size: 1rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 1;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 5;
        }

        tr:hover .subtle-recommended-overlay {
            opacity: 0;
        }


/* ============ Glass Section (MLC) ============ */
:root{
  /* Base */
  --mlc-bg: 12 12 16;            /* fundo da página (rgb) */
  --mlc-fg: 240 240 245;         /* texto principal (rgb) */
  --mlc-muted: 200 200 210;      /* texto secundário */
  /* Brand (roxos/azuis) — ajuste se quiser */
  --mlc-1: 139 92 246;           /* #8b5cf6 */
  --mlc-2: 88 101 242;           /* discord vibe */
  --mlc-3: 76 29 149;            /* #4c1d95 */
  --mlc-accent: 168 85 247;      /* #a855f7 */
  /* Glass tokens */
  --glass-bg: rgba(20,20,28,0.45);
  --glass-border: rgba(255,255,255,0.15);
  --glass-shadow: 0 20px 60px rgba(0,0,0,0.35);
  --glass-blur: 16px;
  /* Content */
  --radius-xxl: 28px;
  --radius-md: 12px;
  --maxw: 1100px;
  --pad: clamp(18px, 2vw, 28px);
}

/* Página escura por padrão */
body{
  background: radial-gradient(1200px 600px at 10% -10%,
              rgba(139,92,246,0.14), transparent 60%)
              , radial-gradient(900px 480px at 90% 110%,
              rgba(76,29,149,0.18), transparent 60%)
              , rgb(var(--mlc-bg));
  color: rgb(var(--mlc-fg));
  font: 500 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
}

/* Scrollbar da área do termo (Chrome/Edge/WebKit) */
#termos-mlc .glass-content::-webkit-scrollbar {
  width: 12px;
  background-color: #0a0a0f; /* base */
}

#termos-mlc .glass-content::-webkit-scrollbar-track {
  background: #0a0a0f;
  border-radius: 10px;
}

#termos-mlc .glass-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #5e17eb, #a855f7);
  border-radius: 10px;
  border: 2px solid #0a0a0f;
}

#termos-mlc .glass-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #a855f7, #8b5cf6);
}

/* Section wrapper */
#termos-mlc{
  padding: clamp(24px, 4vw, 56px);
  display: grid;
  place-items: center;
}

/* Glass card */
.glass-wrap{
  position: relative;
  width: min(100%, var(--maxw));
  border-radius: var(--radius-xxl);
  padding: clamp(16px, 1.5vw, 22px);
  background: linear-gradient(180deg,
              rgba(255,255,255,0.08),
              rgba(255,255,255,0.02)) , var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(120%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(120%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  margin:6em 0 5em 0;
}

/* Borda gradiente (layer) */
.glass-wrap::before{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  padding: 1px; /* espessura do brilho */
  background: linear-gradient(135deg,
              rgba(var(--mlc-1),0.55),
              rgba(var(--mlc-2),0.55),
              rgba(var(--mlc-3),0.55));
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

/* Ruído sutil */
.glass-wrap::after{
  content:"";
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' opacity='0.08' viewBox='0 0 100 100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events:none;
}

/* Header */
.glass-header{
  padding: clamp(10px, 1.2vw, 16px) clamp(12px, 1.6vw, 18px);
  border-radius: calc(var(--radius-xxl) - 8px);
  background: linear-gradient(180deg,
              rgba(255,255,255,0.06), rgba(255,255,255,0.00));
}

.glass-header .badge{
  display:inline-block;
  font-weight:700;
  letter-spacing:.3px;
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 10px;
  background: linear-gradient(135deg,
              rgba(var(--mlc-1),0.22), rgba(var(--mlc-2),0.22));
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.glass-header h1{
  margin: 0 0 6px 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: .2px;
}

.glass-header .subtitle{
  margin: 0;
  color: rgb(var(--mlc-muted));
  font-size: clamp(14px, 1.2vw, 16px);
}

/* Content scrollável */
.glass-content{
  margin-top: clamp(10px, 1.2vw, 16px);
  background: linear-gradient(180deg,
              rgba(255,255,255,0.03), rgba(255,255,255,0.0));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--pad);
  max-height: min(70vh, 900px);
  overflow: auto;
}

/* Tipografia interna */
.glass-content h2{
  margin: 18px 0 8px;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.25;
}
.glass-content h3{
  margin: 18px 0 8px;
  font-size: clamp(16px, 1.5vw, 20px);
}
.glass-content p{ margin: 8px 0; }
.glass-content ul{ margin: 8px 0 12px 20px; }
.glass-content li{ margin: 6px 0; }

.glass-content .callout{
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px dashed rgba(255,255,255,0.18);
  background: linear-gradient(90deg,
              rgba(var(--mlc-1),0.12), rgba(255,255,255,0.02));
}

/* Separador */
.glass-content hr{
  border: none;
  height: 1px;
  background: linear-gradient(90deg,
              rgba(255,255,255,0), rgba(255,255,255,0.25), rgba(255,255,255,0));
  margin: 18px 0;
}

/* Scrollbar custom (webkit) */
.glass-content::-webkit-scrollbar{ width: 10px; }
.glass-content::-webkit-scrollbar-track{
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
}
.glass-content::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg,
              rgba(var(--mlc-1),0.65), rgba(var(--mlc-2),0.65));
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* Acessibilidade: reduz animações */
@media (prefers-reduced-motion: reduce){
  .glass-wrap, .glass-header .badge{ transition: none !important; }
}

/* ===== Bottom Popup (MLC) ===== */
#mlc-bottom-popup {
  position: fixed;
  inset: 0;
  display: grid;
  align-items: end;            /* bottom sheet */
  background: rgba(0,0,0,0.55);/* backdrop dark */
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

#mlc-bottom-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mlc-popup-sheet {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #0f0f14;
  color: #f3f3f7;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -20px 60px rgba(0,0,0,.55);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}

#mlc-bottom-popup.is-visible .mlc-popup-sheet {
  transform: translateY(0);
}

.mlc-popup-content {
  padding: 20px clamp(16px,2vw,28px) 24px;
}

.mlc-popup-content h2 {
  margin: 0 0 6px;
  font-size: clamp(18px,2.2vw,22px);
}

.mlc-popup-content p {
  margin: 0 0 14px;
  color: #c9c9d2;
}

.mlc-check {
  display: flex; align-items: center; gap: 10px;
  margin: 8px 0 16px;
  user-select: none;
}

.mlc-check input[type="checkbox"]{
  width: 18px; height: 18px; cursor: pointer;
}

.mlc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 190px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  background: linear-gradient(135deg, #5e17eb, #a855f7);
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
  box-shadow: 0 10px 30px rgba(168,85,247,.35);
}

.mlc-btn:hover:enabled { transform: translateY(-1px); }
.mlc-btn:active:enabled { transform: translateY(0); }

.mlc-btn:disabled{
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
}

/* Acessibilidade: reduzir animação */
@media (prefers-reduced-motion: reduce){
  #mlc-bottom-popup, .mlc-popup-sheet { transition: none !important; }
}

/* Checkbox custom com gradiente */
.mlc-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: #eaeaf2;
}

.mlc-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #3a2b5e;
  border-radius: 5px;
  background: #0a0a0f;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.mlc-check input[type="checkbox"]:checked {
  border-color: transparent;
  background: linear-gradient(135deg, #5e17eb, #a855f7);
  box-shadow: 0 0 0 2px #0f0f14 inset, 0 4px 10px rgba(168,85,247,.35);
}

.mlc-check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

a.mlc-terms-link {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #5e17eb, #a855f7); /* mesmo gradiente do botão */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

a.mlc-terms-link:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

a.mlc-terms-link:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

    :root{
      --yellow-1:#facc15;
      --yellow-2:#f59e0b;
      --yellow-3:#fde047;
      --bg-dark:#000;
      --bg-deep:#0b0b12;
      --glass: rgba(255,255,255,.06);
      --stroke: rgba(250,204,21,.3);
      --txt-1:#fff;
      --txt-2:rgba(255,255,255,.78);
      --txt-3:rgba(255,255,255,.6);
    }

    /* -------- BLACK FRIDAY SECTION -------- */
    .bf-section{
      position:relative;
      min-height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#0e0d17;
      overflow:hidden;
      padding:100px 0px;
    }

    .bf-container{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:34px;
      max-width:1200px;
      width:100%;
      position:relative;
      z-index:2;
    }
    @media(max-width:980px){
      .bf-container{grid-template-columns:1fr;gap:40px}
    }

    .dots{
      position:absolute;inset:0;z-index:0;pointer-events:none;
      background-image:
        radial-gradient(2px 2px at 12% 18%, rgba(250,204,21,.45) 50%, transparent 51%),
        radial-gradient(2px 2px at 72% 36%, rgba(253,224,71,.45) 50%, transparent 51%),
        radial-gradient(2px 2px at 28% 66%, rgba(255,220,160,.35) 50%, transparent 51%),
        radial-gradient(2px 2px at 88% 78%, rgba(255,230,120,.35) 50%, transparent 51%);
      animation: drift 16s linear infinite;opacity:.5;
    }
    @keyframes drift{
      0%{transform:translateY(0)}50%{transform:translateY(-18px)}100%{transform:translateY(0)}
    }

    .glass{
      background:var(--glass);
      border:1px solid var(--stroke);
      border-radius:18px;
      backdrop-filter:blur(14px);
      -webkit-backdrop-filter:blur(14px);
      box-shadow:0 10px 40px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.06);
    }

    .left{display:flex;flex-direction:column;gap:20px;margin-top:6em;}
    .kicker{
      display:inline-flex;align-items:center;gap:10px;
      font-weight:900;letter-spacing:.08em;text-transform:uppercase;
      font-size:.9rem;color:#111;
      background:linear-gradient(135deg,var(--yellow-1),var(--yellow-2));
      padding:8px 12px;border-radius:999px;width:max-content;
      box-shadow:0 6px 18px rgba(250,204,21,.22);
    }
    .title{
      font-size:clamp(2.2rem,5vw,3.2rem);font-weight:900;line-height:1.06;
      letter-spacing:-.02em;margin:0;
      background:linear-gradient(135deg,#fff 0%,rgba(255,255,255,.9) 100%);
      -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
    }
    .subtitle{margin:0;color:var(--txt-2);font-size:clamp(1rem,1.6vw,1.15rem);line-height:1.6}

    .timer{display:flex;gap:12px;flex-wrap:wrap}
    .tbox{
      flex:1 1 120px;min-width:120px;text-align:center;
      padding:16px 14px;border-radius:14px;
      background:linear-gradient(135deg,rgba(250,204,21,.14),rgba(245,158,11,.1));
      border:1px solid rgba(250,204,21,.38);
    }
    .num{font-size:clamp(2rem,4.5vw,2.6rem);font-weight:900;line-height:1}
    .lbl{margin-top:6px;font-size:.85rem;color:var(--txt-3);text-transform:uppercase}

    .cta-row{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
    .btn-primary{
      appearance:none;border:none;cursor:pointer;
      padding:14px 20px;border-radius:999px;font-weight:900;
      letter-spacing:.02em;font-size:1rem;color:#111;
      background:linear-gradient(135deg,var(--yellow-1),var(--yellow-3));
      box-shadow:0 10px 24px rgba(250,204,21,.28),inset 0 1px 0 rgba(255,255,255,.28);
      transition:transform .18s ease,box-shadow .18s ease;
      text-decoration:none;display:inline-flex;align-items:center;gap:10px;
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(250,204,21,.38),inset 0 1px 0 rgba(255,255,255,.28)}

    .right{display:flex;align-items:stretch}
    .offer{padding:18px;width:100%;display:flex;flex-direction:column;gap:14px;max-width:440px;margin-left:auto}
    @media(max-width:980px){.offer{max-width:100%;margin-left:0}}

    .offer-head{display:flex;align-items:center;gap:10px}
    .badge-50{
      font-weight:900;font-size:.95rem;letter-spacing:.06em;text-transform:uppercase;color:#111;
      background:linear-gradient(135deg,var(--yellow-1),var(--yellow-2));
      padding:8px 10px;border-radius:10px;border:1px solid rgba(250,204,21,.5)
    }
    .offer-title{margin:0;font-weight:900;font-size:1.2rem;color:#fff}
    .bar{height:2px;width:100%;background:linear-gradient(90deg,var(--yellow-1),var(--yellow-2),var(--yellow-3));opacity:.8;border-radius:999px;margin-bottom:4px}
    .list{display:grid;gap:8px}
    .item{
      display:flex;align-items:center;gap:10px;padding:10px;
      background:rgba(255,255,255,.035);border:1px solid rgba(250,204,21,.22);border-radius:12px;
      font-size:.95rem;
    }
    .item i{color:var(--yellow-1)}
    .mini{display:flex;gap:8px;flex-wrap:wrap}
    .pill{
      font-size:.76rem;color:#111;font-weight:900;text-transform:uppercase;
      padding:7px 9px;border-radius:999px;
      background:linear-gradient(135deg,var(--yellow-1),var(--yellow-3));
      border:1px solid rgba(250,204,21,.6)
    }
    .legal{color:var(--txt-3);font-size:.84rem;line-height:1.45}
