        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --purple-dark: #4B0082;
            --purple-medium: #6a0dad;
            --purple-light: #8A2BE2;
            --purple-accent: #7E57C2;
            --purple-glow: rgba(138, 43, 226, 0.3);
            --bg-dark: #0a0a0a;
            --bg-darker: #000000;
            --card-bg: #1a1a1a;
            --card-border: #2a2a2a;
            --text-light: #ffffff;
            --text-gray: #b0b0b0;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-light);
            background: var(--bg-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }
        
        .contact-grid{
            display: flex; 
            justify-content: center;
            gap: 2rem;
        }
        .btn-linguage{
            display: flex;
            align-items: center;
        }
        .globo{
            width: 12px;
        }
        #whatsapp-btn {
            background: linear-gradient(135deg, var(--purple-light), var(--purple-accent));
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        #whatsapp-btn:hover {
            background: var(--purple-accent);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px var(--purple-glow);
        }
        #email-btn {
            background: linear-gradient(135deg, var(--purple-light), var(--purple-accent));
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }   
        #email-btn:hover {
            background: var(--purple-accent);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px var(--purple-glow);
        }
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-darker);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--purple-light), var(--purple-dark));
            border-radius: 10px;
        }

        ::selection {
            background: var(--purple-accent);
            color: var(--text-light);
        }

        /* Animated Background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at top, rgba(75, 0, 130, 0.15) 0%, transparent 60%),
                        radial-gradient(ellipse at bottom, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
            z-index: -1;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(138, 43, 226, 0.2);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(10, 10, 10, 0.98);
            box-shadow: 0 10px 40px rgba(138, 43, 226, 0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--purple-light), var(--purple-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
            align-items: center;
        }

        .nav-menu a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
            letter-spacing: 0.5px;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--purple-light), var(--purple-accent));
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--text-light);
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--purple-light);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Section */
        #início {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative;
        }

        .hero-content {
            z-index: 10;
        }

        .logoPrincipal {
            width: min(350px, 80vw);
            animation: floatLogo 6s ease-in-out infinite;
            filter: drop-shadow(0 20px 60px var(--purple-glow));
            margin-bottom: 2rem;
        }

        @keyframes floatLogo {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-light), var(--purple-light), var(--purple-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease both;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto 3rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator::before {
            content: '↓';
            font-size: 2rem;
            color: var(--purple-accent);
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* Section Styling */
        section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-light), var(--purple-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 4rem;
            font-size: 1.1rem;
        }

        /* Cards */
        .card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 3rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--purple-glow), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: var(--purple-accent);
            box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
        }

        .card:hover::before {
            opacity: 1;
        }

        /* Intro Section */
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .intro-text {
            animation: fadeInLeft 0.8s ease both;
        }

        .intro-text p {
            color: var(--text-gray);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .intro-text strong {
            color: var(--purple-accent);
            font-weight: 600;
        }

        .turma-img-container {
            position: relative;
            animation: fadeInRight 0.8s ease both;
        }

        #turma {
            width: 100%;
            max-width: 250px;
            border-radius: 24px;
            display: block;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transition: transform 0.4s ease;
        }

        #turma:hover {
            transform: scale(1.02);
        }

        /* About Grid */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .card-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--purple-light), var(--purple-accent));
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        .card-text {
            color: var(--text-gray);
            line-height: 1.8;
        }

        .card-text a {
            color: var(--purple-accent);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        .card-text a:hover {
            color: var(--purple-light);
            border-bottom-color: var(--purple-light);
        }

        /* Social Cards */
        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .social-card {
            text-align: center;
        }

        .social-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .social-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .social-card h3 a {
            color: var(--purple-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-card h3 a:hover {
            color: var(--purple-light);
        }

        .social-card p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .social-card ul {
            list-style: none;
            color: var(--text-gray);
            line-height: 2;
            text-align: left;
            padding-left: 2rem;
        }

        .social-card ul li::before {
            content: '→';
            color: var(--purple-accent);
            font-weight: bold;
            display: inline-block;
            width: 1.5rem;
            margin-left: -1.5rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, rgba(75, 0, 130, 0.1), rgba(138, 43, 226, 0.05));
            border-top: 1px solid rgba(138, 43, 226, 0.2);
            margin-top: 6rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            align-items: center;
        }

        .footer-mascot {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #Mascote {
            max-height: 250px;
            width: auto;
            filter: drop-shadow(0 10px 40px var(--purple-glow));
            animation: floatMascot 4s ease-in-out infinite;
        }

        @keyframes floatMascot {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        .footer-info {
            text-align: center;
        }

        .footer-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .footer-info p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer-link {
            display: inline-block;
            color: var(--purple-accent);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 0.8rem 2rem;
            border: 2px solid var(--purple-accent);
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            background: var(--purple-accent);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px var(--purple-glow);
        }

        .footer-bottom {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid rgba(138, 43, 226, 0.1);
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: start;
                padding: 3rem 0;
                gap: 2rem;
                transition: left 0.4s ease;
                border-top: 1px solid rgba(138, 43, 226, 0.2);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu a {
                font-size: 1.3rem;
            }

            section {
              padding: 4rem 1.5rem;
            }

            .about-grid, .social-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            #Mascote {
                max-height: 180px;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 1rem 1.5rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .card {
                padding: 2rem 1.5rem;
            }

            .social-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
