/* ============================
           RESET & BASE STYLES
        ============================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-black: #000000;
            --color-cyan: #00FFFF;
            --color-white: #FFFFFF;
            --color-cyan-light: #80ffff;
            --color-cyan-dark: #00cccc;
            --color-gray-900: #0a0a0a;
            --color-gray-800: #141414;
            --color-gray-700: #1a1a1a;
            --color-gray-600: #2a2a2a;
            
            --font-display: 'Space Grotesk', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            --transition-fast: 0.2s ease;
            --transition-medium: 0.3s ease;
            --transition-slow: 0.5s ease;
            
            --shadow-glow: 0 0 30px rgba(0, 255, 255, 0.3);
            --shadow-glow-strong: 0 0 50px rgba(0, 255, 255, 0.5);
            --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--color-black);
            color: var(--color-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ============================
           HEADER & NAVIGATION
        ============================ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
            transition: var(--transition-medium);
        }

        header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
        }

        .header-content {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            width: 250px;  /* Ajuste conforme necessário */
            height: auto;  /* Mantém a proporção */
            color: var(--color-cyan);
            text-decoration: none;
            display: block; /* Remove espaços extras */
            text-decoration: none;
            letter-spacing: -1px;
            text-shadow: var(--shadow-glow);
        }

        .logo span {
            color: var(--color-white);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            color: var(--color-white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition-fast);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-cyan);
            transition: var(--transition-fast);
        }

        .nav-link:hover {
            color: var(--color-cyan);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* ============================
           HERO SECTION
        ============================ */
        .hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 50% 0%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 40%),
                radial-gradient(ellipse at 20% 80%, rgba(0, 204, 204, 0.1) 0%, transparent 40%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--color-cyan);
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cyan-light) 50%, var(--color-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-cyan);
            line-height: 1;
            text-shadow: var(--shadow-glow);
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ============================
           FILTERS SECTION
        ============================ */
        .filters-section {
            padding: 2rem;
            background: var(--color-gray-900);
            border-top: 1px solid rgba(0, 255, 255, 0.1);
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
            position: sticky;
            top: 70px;
            z-index: 100;
        }

        .filters-container {
            max-width: 1600px;
            margin: 0 auto;
        }

        .filters-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .search-box {
            flex: 1;
            min-width: 280px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            background: var(--color-gray-800);
            border: 1px solid var(--color-gray-600);
            border-radius: 12px;
            color: var(--color-white);
            font-size: 1rem;
            font-family: var(--font-body);
            transition: var(--transition-fast);
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--color-cyan);
            box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
        }

        .search-box svg {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: rgba(255, 255, 255, 0.4);
        }

        .filter-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .filter-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .filter-select {
            padding: 1rem 2.5rem 1rem 1rem;
            background: var(--color-gray-800);
            border: 1px solid var(--color-gray-600);
            border-radius: 12px;
            color: var(--color-white);
            font-size: 0.95rem;
            font-family: var(--font-body);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2380ffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 16px;
            transition: var(--transition-fast);
            min-width: 180px;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--color-cyan);
        }

        .filter-select:hover {
            border-color: var(--color-cyan-dark);
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .filter-tag {
            padding: 0.5rem 1rem;
            background: transparent;
            border: 1px solid var(--color-gray-600);
            border-radius: 50px;
            color: var(--color-white);
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .filter-tag:hover {
            border-color: var(--color-cyan);
            color: var(--color-cyan);
        }

        .filter-tag.active {
            background: var(--color-cyan);
            border-color: var(--color-cyan);
            color: var(--color-black);
            font-weight: 600;
        }

        .clear-filters {
            padding: 0.5rem 1rem;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .clear-filters:hover {
            border-color: var(--color-white);
            color: var(--color-white);
        }

        .results-count {
            padding: 1rem 0;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .results-count span {
            color: var(--color-cyan);
            font-weight: 600;
        }

        /* ============================
           EDUCATORS GRID
        ============================ */
        .educators-section {
            padding: 3rem 2rem 6rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--color-white);
        }

        .educators-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        /* ============================
           EDUCATOR CARD
        ============================ */
        .educator-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: var(--color-gray-800);
            transition: var(--transition-medium);
            cursor: pointer;
            aspect-ratio: 3/4;
        }

        .educator-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-glow), var(--shadow-card);
        }

        .educator-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .educator-card:hover .educator-image {
            transform: scale(1.1);
        }

        .educator-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                180deg,
                transparent 0%,
                transparent 40%,
                rgba(0, 0, 0, 0.7) 70%,
                rgba(0, 0, 0, 0.95) 100%
            );
            opacity: 1;
            transition: var(--transition-medium);
        }

        .educator-card:hover .educator-overlay {
            background: linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(0, 0, 0, 0.5) 40%,
                rgba(0, 0, 0, 0.85) 70%,
                rgba(0, 0, 0, 0.98) 100%
            );
        }

        .educator-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            transform: translateY(0);
            transition: var(--transition-medium);
        }

        .educator-card:hover .educator-content {
            transform: translateY(-10px);
        }

        .educator-state {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.35rem 0.75rem;
            background: rgba(0, 255, 255, 0.2);
            border-radius: 50px;
            font-size: 0.75rem;
            color: var(--color-cyan);
            margin-bottom: 0.75rem;
            font-weight: 500;
        }

        .educator-name {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .educator-title {
            font-size: 0.85rem;
            color: var(--color-cyan-light);
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .educator-bandeiras {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            margin-bottom: 1rem;
        }

        .bandeira {
            padding: 0.3rem 0.6rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            font-size: 0.7rem;
            color: var(--color-white);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition-fast);
        }

        .bandeira:hover {
            background: var(--color-cyan);
            color: var(--color-black);
        }

        .educator-details {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: var(--transition-medium);
        }

        .educator-card:hover .educator-details {
            max-height: 200px;
            opacity: 1;
        }

        .educator-bio {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .educator-actions {
            display: flex;
            gap: 0.75rem;
        }

        .btn-primary {
            flex: 1;
            padding: 0.75rem 1rem;
            background: var(--color-cyan);
            border: none;
            border-radius: 8px;
            color: var(--color-black);
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-fast);
            text-align: center;
            text-decoration: none;
        }

        .btn-primary:hover {
            background: var(--color-cyan-light);
            box-shadow: var(--shadow-glow);
        }

        .btn-secondary {
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: var(--color-white);
            cursor: pointer;
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--color-cyan);
        }

        .btn-secondary svg {
            width: 18px;
            height: 18px;
        }

        /* ============================
           NO RESULTS STATE
        ============================ */
        .no-results {
            text-align: center;
            padding: 6rem 2rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .no-results svg {
            width: 80px;
            height: 80px;
            margin-bottom: 1.5rem;
            color: var(--color-gray-600);
        }

        .no-results h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--color-white);
            margin-bottom: 0.5rem;
        }

        .no-results p {
            max-width: 400px;
            margin: 0 auto;
        }

        /* ============================
           MODAL
        ============================ */
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-medium);
        }

        .modal-backdrop.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: var(--color-gray-800);
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.9) translateY(20px);
            transition: var(--transition-medium);
            border: 1px solid rgba(0, 255, 255, 0.1);
        }

        .modal-backdrop.active .modal {
            transform: scale(1) translateY(0);
        }

        .modal-header {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .modal-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(transparent, var(--color-gray-800));
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            color: var(--color-white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
            z-index: 10;
        }

        .modal-close:hover {
            background: var(--color-cyan);
            color: var(--color-black);
        }

        .modal-body {
            padding: 2rem;
            margin-top: -60px;
            position: relative;
        }

        .modal-name {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 0.5rem;
        }

        .modal-title {
            font-size: 1.1rem;
            color: var(--color-cyan);
            margin-bottom: 1.5rem;
        }

        .modal-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--color-gray-700);
            border-radius: 12px;
        }

        .modal-info-item {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .modal-info-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .modal-info-value {
            font-size: 1rem;
            color: var(--color-white);
            font-weight: 500;
        }

        .modal-section {
            margin-bottom: 2rem;
        }

        .modal-section-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-white);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-section-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background: var(--color-cyan);
            border-radius: 2px;
        }

        .modal-bio {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        .modal-bandeiras {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .modal-bandeira {
            padding: 0.5rem 1rem;
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 8px;
            color: var(--color-cyan);
            font-size: 0.9rem;
        }

        .modal-contact {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .modal-contact-btn {
            flex: 1;
            min-width: 200px;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .modal-contact-btn.primary {
            background: var(--color-cyan);
            border: none;
            color: var(--color-black);
        }

        .modal-contact-btn.primary:hover {
            background: var(--color-cyan-light);
            box-shadow: var(--shadow-glow);
        }

        .modal-contact-btn.secondary {
            background: transparent;
            border: 1px solid var(--color-cyan);
            color: var(--color-cyan);
        }

        .modal-contact-btn.secondary:hover {
            background: rgba(0, 255, 255, 0.1);
        }

        /* ============================
           FOOTER
        ============================ */
        footer {
            padding: 4rem 2rem;
            background: var(--color-gray-900);
            border-top: 1px solid rgba(0, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo {
            width: 150px;  /* Ajuste conforme necessário */
            height: auto;  /* Mantém a proporção */
            color: var(--color-cyan);
            text-decoration: none;
            display: block; /* Remove espaços extras */
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition-fast);
        }

        .footer-link:hover {
            color: var(--color-cyan);
        }

        /* ============================
           ANIMATIONS
        ============================ */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .educator-card {
            animation: fadeIn 0.5s ease forwards;
            opacity: 0;
        }

        .educator-card:nth-child(1) { animation-delay: 0.1s; }
        .educator-card:nth-child(2) { animation-delay: 0.15s; }
        .educator-card:nth-child(3) { animation-delay: 0.2s; }
        .educator-card:nth-child(4) { animation-delay: 0.25s; }
        .educator-card:nth-child(5) { animation-delay: 0.3s; }
        .educator-card:nth-child(6) { animation-delay: 0.35s; }
        .educator-card:nth-child(7) { animation-delay: 0.4s; }
        .educator-card:nth-child(8) { animation-delay: 0.45s; }

        /* ============================
           RESPONSIVE
        ============================ */
        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }

            .logo {
                width: 150px;
            }

            nav {
                display: none;
            }

            .hero {
                min-height: 60vh;
                padding: 6rem 1rem 3rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .filters-section {
                padding: 1rem;
                top: 60px;
            }

            .filters-row {
                flex-direction: column;
                align-items: stretch;
            }

            .search-box {
                min-width: 100%;
            }

            .filter-select {
                width: 100%;
            }

            .educators-section {
                padding: 2rem 1rem 4rem;
            }

            .educators-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .modal {
                margin: 1rem;
                max-height: 95vh;
            }

            .modal-header {
                height: 200px;
            }

            .modal-body {
                padding: 1.5rem;
            }

            .modal-name {
                font-size: 1.75rem;
            }

            .modal-info-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            .footer-logo {
                width: 100px; /* Menor em mobile */
            }
        }

        @media (max-width: 480px) {
            .educator-card {
                aspect-ratio: 4/5;
            }
        }

        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--color-gray-900);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--color-gray-600);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--color-cyan-dark);
        }