* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0a0a0a;
            color: #fff;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated Background */
        .bg-gradient {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            opacity: 0.4;
            background: 
                radial-gradient(circle at 20% 50%, rgba(180, 244, 4, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(160, 220, 4, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(180, 244, 4, 0.1) 0%, transparent 50%);
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(20px, 20px) scale(1.1); }
        }

        .grid-overlay {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            background-image: 
                linear-gradient(rgba(180, 244, 4, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(180, 244, 4, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        .container {
            max-width: 680px;
            width: 100%;
            margin: 0 auto;
            padding: 2rem 1rem;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
        }

        /* Logo with Glow */
        .logo-container {
            text-align: center;
            margin-bottom: 15px;
            animation: fadeInDown 0.8s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            width: 120px;
            height: 80px;
            margin: 0 auto;
            display: block;
            filter: drop-shadow(0 0 30px rgba(180, 244, 4, 0.6));
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { filter: drop-shadow(0 0 30px rgba(180, 244, 4, 0.6)); }
            50% { filter: drop-shadow(0 0 50px rgba(180, 244, 4, 0.8)); }
        }

        /* Tagline */
        .tagline {
            text-align: center;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tagline h1 {
            font-size: 1.75rem;
            font-weight: 800;
            line-height: 1.3;
            background: linear-gradient(135deg, #b4f404 0%, #a0dc04 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(180, 244, 4, 0.3);
        }

        /* Social Links with Glassmorphism */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .social-links a {
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(180, 244, 4, 0.1), rgba(160, 220, 4, 0.1));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .social-links a:hover::before {
            opacity: 1;
        }

        .social-links a:hover {
            transform: translateY(-5px);
            border-color: rgba(180, 244, 4, 0.5);
            box-shadow: 0 10px 30px rgba(180, 244, 4, 0.3);
        }

        .social-links svg {
            width: 26px;
            height: 26px;
            position: relative;
            z-index: 1;
        }

        /* Hero Highlight Section - PRIME (Gold Yellow) */
        .hero-highlight {
            /* background: rgba(20, 20, 20, 0.8); */
            backdrop-filter: blur(10px);
            /* border: 2px solid #97f300; */
            border-radius: 16px;
            padding: 0.45rem 0.4rem;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease 0.4s both;
            /* box-shadow: 0 0 40px rgba(255, 215, 0, 0.2), inset 0 0 30px rgba(255, 215, 0, 0.05); */
            text-decoration: none;
            color: #97f300;
            font-weight: bold;
        }

        .hero-highlight::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgb(151 243 0 / 8%) 50%, #97f3001a 70%);
            animation: shimmerSlow 4s linear infinite;
        }

        @keyframes shimmerSlow {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .hero-highlight-content {
            position: relative;
            z-index: 1;
        }

        .hero-highlight-icon {
            display: none;
        }

        .hero-highlight-title {
            font-size: 1.35rem;
            font-weight: 800;
            color: #FFD700;
            margin-bottom: 0.35rem;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        .hero-highlight-subtitle {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-bottom: 10px;
            animation: fadeInUp 0.8s ease 0.5s both;
        }

        .stat-card {
            background: rgba(15, 15, 15, 0.4);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(180, 244, 4, 0.15);
            border-radius: 12px;
            padding: 0.875rem 0.5rem;
            text-align: center;
            transition: border-color 0.3s;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .stat-card:hover {
            border-color: rgba(180, 244, 4, 0.25);
        }

        .stat-number {
            font-size: 1.25rem;
            font-weight: 800;
            background: linear-gradient(135deg, #b4f404 0%, #a0dc04 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.15rem;
        }

        .stat-label {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Links Section */
        .section {
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(180, 244, 4, 0.9);
            margin-bottom: 1rem;
            padding-left: 0.5rem;
        }

        .links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Neon Buttons - Regular (DevMedia Green) */
        .link-button {
            display: block;
            text-align: center;
            text-decoration: none;
            backdrop-filter: blur(10px);
            color: #fff;
            font-size: 1.125rem;
            font-weight: 700;
            padding: 1.25rem 2rem;
            border-radius: 16px;
            border: 2px solid rgba(180, 244, 4, 0.4);
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .link-button:hover {
            transform: translateY(-2px);
            border-color: rgba(180, 244, 4, 0.8);
            box-shadow: 0 8px 32px rgba(180, 244, 4, 0.25);
            background: linear-gradient(135deg, rgba(180, 244, 4, 0.18), rgba(160, 220, 4, 0.12));
        }

        
        .link-button.premium.blackfriday {
            border: 2px solid #ff9000;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
            color: #ffffff;
            background: linear-gradient(135deg, #a00000, #f50000, #a00000);
            margin-bottom: 40px;
        }

        .link-button.blackfriday .seta {
            color: #efefef;
        }
a.link-button.live-gratuita {
    border: 2px solid rgb(255 181 0 / 71%);
    background: #0016a5;
    background: linear-gradient(135deg, #E6BE00 0%, #FFD700 50%, #FFF176 100%);
    color: black;
    text-transform: uppercase;
    margin-bottom: 50px;
    box-shadow: 0 8px 32px rgb(240 244 4 / 25%);
}

.live-gratuita .seta {
    color: #000000;
}
        .link-button span {
            position: relative;
            z-index: 1;
        }
        .seta {
            color: #97f300;
            margin-right: 5px;
        }
        /* Premium Button - PRIME (Gold Yellow) */
        .link-button.premium {
            border: 2px solid #296f00;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
            color: black;
            background: linear-gradient(135deg, #c9f31d, #a8d916);
            margin-bottom: 40px;
        }

        .premium .seta {
            color: #000000;
        }
        .link-button.premium:hover {
            box-shadow: 0 12px 40px rgb(194 237 27 / 19%);
            border-color: #30ba01;
            transform: translateY(-5px) scale(1.05);
        }

        /* Testimonials Section */
        .testimonials {
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            font-style: italic;
        }
        .texto-branco{
            color: white;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #b4f404, #a0dc04);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 600;
            color: #b4f404;
            font-size: 0.9rem;
        }

        .author-role {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 2rem 0;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        /* Projects Carousel */
        .carousel-slide .foto-aluno {
            object-fit: cover;
            height: 50px;
            width: 50px;
            margin-right: 10px;
            border-radius: 50%;
        }
        .projects-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 1rem;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 50%, transparent);
            padding: 1.1rem 1.1rem 0.4rem;
            display: flex;
        }

        .carousel-caption h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #b4f404;
            margin-bottom: 0.25rem;
        }

        .carousel-caption p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-dot.active {
            background: #b4f404;
            width: 24px;
            border-radius: 4px;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(180, 244, 4, 0.3);
            color: #b4f404;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
        }

        .carousel-arrow:hover {
            background: rgba(180, 244, 4, 0.2);
            border-color: #b4f404;
        }

        .carousel-arrow.prev {
            left: 1rem;
        }

        .carousel-arrow.next {
            right: 1rem;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .tagline h1 {
                font-size: 1.5rem;
            }

            .stat-card {
                padding: 0.55rem 0.25rem;
            }

            .link-button {
                font-size: 1rem;
                padding: 0.8rem 0.6rem;
                padding-left: 18px;
                text-align: left;
            }

            .stat-number {
                font-size: 1.1rem;
            }

            .stat-label {
                font-size: 0.65rem;
            }

            .hero-highlight-title {
                font-size: 1.15rem;
            }

            .carousel-arrow {
                width: 32px;
                height: 32px;
                font-size: 0.875rem;
            }

            .carousel-arrow.prev {
                left: 0.5rem;
            }

            .carousel-arrow.next {
                right: 0.5rem;
            }

            .carousel-slide img {
                height: 220px;
            }
        }

        @media (min-width: 768px) {
            .container {
                padding: 3rem 2rem;
            }

            .logo {
                width: 140px;
                height: 140px;
            }

            .tagline h1 {
                font-size: 2.25rem;
            }

            .link-button {
                font-size: 1.25rem;
            }

            .hero-highlight-title {
                font-size: 1.5rem;
            }

            .carousel-slide img {
                height: 400px;
            }
        }