* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Oswald';
        }

        :root {
            --primary: #8B0000;
            --primary-light: #A52A2A;
            --primary-dark: #5C0000;
            --secondary: #1a1a1a;
            --accent: #FFD700;
            --text-light: #ffffff;
            --text-dark: #2c2c2c;
            --bg-light: #f8f8f8;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--bg-light);
        }

        /* Header com efeito glassmorphism */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 5%;
            background: #ffffff;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 0.5rem 5%;
            background: white;
        }

        .navbar {
           width: 100%;
           height: 60px;
           max-width: 1200px;
           margin: 0 auto;
           display: flex;
           align-items: center;
           justify-content: space-between;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo i {
            font-size: 2rem;
        }

        /* Botão Hamburguer */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }

        .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);
        }

        .mobile-only {
            display: none;
        }

        .desktop-only {
            display: block;
        }


        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-btn {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(139, 0, 0, 0.4);
        }

        /* Hero Section com animação */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            opacity: 0.2;
            top: -200px;
            right: -200px;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            opacity: 0.1;
            bottom: -150px;
            left: -150px;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 4rem;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.2;
            animation: slideInLeft 1s ease-out;
        }

        .hero-text .highlight {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }

        .hero-text .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 15px;
            background: var(--primary);
            opacity: 0.3;
            z-index: -1;
        }

        .hero-text p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.6;
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: slideInLeft 1s ease-out 0.4s both;
        }

        .btn-primary {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(139, 0, 0, 0.5);
        }

        .btn-secondary {
            padding: 1rem 2.5rem;
            background: transparent;
            color: white;
            border: 2px solid white;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
        }

        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        .hero-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 2;
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: floatCard 3s ease-in-out infinite;
        }

        .floating-card-1 {
            top: 10%;
            right: -10%;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 15%;
            left: -15%;
            animation-delay: 1s;
        }

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

        .floating-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .floating-card h4 {
            color: var(--text-dark);
            margin-bottom: 0.3rem;
        }

        .floating-card p {
            color: #666;
            font-size: 0.9rem;
        }

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

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

        /* Stats Section */
        .stats {
            background: white;
            padding: 3rem 5%;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
        }

        .stats-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-size: 1.1rem;
        }

        /* Courses Section */
        .courses {
            padding: 6rem 5%;
            background: var(--bg-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .courses-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .course-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            cursor: pointer;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .course-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: var(--transition);
        }

        .course-card:hover .course-image {
            transform: scale(1.1);
        }

        .course-content {
            padding: 2rem;
        }

        .course-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .course-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .course-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .course-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .course-features li {
            padding: 0.5rem 0;
            color: #666;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .course-features i {
            color: var(--primary);
        }

        .course-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 2px solid #f0f0f0;
        }



        /* Teachers Section */
        .teachers {
            padding: 6rem 5%;
            background: white;
        }

        .teachers-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .teacher-card {
            background: var(--bg-light);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .teacher-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .teacher-card:hover::before {
            transform: scaleX(1);
        }

        .teacher-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .teacher-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .teacher-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .teacher-role {
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .teacher-bio {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .teacher-credentials {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .credential {
            padding: 0.5rem 1rem;
            background: white;
            border-radius: 50px;
            font-size: 0.9rem;
            color: #666;
        }

        .teacher-social {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .teacher-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .teacher-social a:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--secondary) 0%, #2d2d2d 100%);
        }

        .testimonials .section-header h2,
        .testimonials .section-header p {
            color: white;
        }

        .testimonials-slider {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .testimonial-quote {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .author-info p {
            color: rgba(255, 255, 255, 0.7);
        }

        .depoimentos-section {
    max-width: 1325px;
    width: 100%;
    margin: 80px auto;
    padding: 40px 20px;
    background: transparent;
}

.titulo-depoimentos {
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
    margin-bottom: 50px;
    color: #000;
    padding-left: 0;
}

.depoimentos-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}

.nav-btn {
    background: #420c0c;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.nav-btn:hover:not(:disabled) {
    background: #6b1414;
    transform: scale(1.1);
}

.nav-btn:disabled {
    background: #999;
    cursor: not-allowed;
    transform: scale(1);
}

.depoimentos-wrapper {
    overflow: hidden;
    flex: 1;
    width: 100%;
    position: relative;
}

.depoimentos-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.depoimento-card {
    min-width: calc((100% - 40px) / 3);
    width: calc((100% - 40px) / 3);
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    box-sizing: border-box;
}

.aspas {
    font-size: 80px;
    color: #e0e0e0;
    font-family: Georgia, serif;
    line-height: 0.5;
    margin-bottom: 20px;
}

.depoimento-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}

.depoimento-card .cargo {
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.depoimento-card .texto-depoimento {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #420c0c;
    width: 30px;
    border-radius: 6px;
}

        /* CTA Section */
        .cta-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-section .btn-secondary {
            border-color: white;
            font-size: 1.2rem;
        }
        

        /* Footer */ 
        footer {
            background: var(--secondary);
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

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

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            text-decoration: none;
            display: block;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

        .navbar .toggle_btn{
            color: #000;
            font-size: 1.5rem;
            cursor: pointer;
            display: none;
        }

        .dropdown_menu{
        display: none;
        position: absolute;
        right: 2rem;
        height: 0;
        top: 60px;
        width: 300px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 10px;
        overflow: hidden;
        transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999; 
}

        .dropdown_menu.open{
        height: 350px; 
}

        .dropdown_menu li{
        padding: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        list-style: none; 
}

        .dropdown_menu li a{
        color: var(--text-dark);
        text-decoration: none;
        width: 100%;
        text-align: center;
}

        .dropdown_menu .cta-btn{
            width: 100%;
            display: flex;
            justify-content: center;
        }

        ::marker {
        border: none;
        text-decoration: none;
        color: transparent;
        }

        @media (max-width: 1366px) {
            .hero-content {
                margin-top: 100px;
            }
            .hero-text {
                margin-top: -100px;
            }
        }


        /* Mobile */
        @media (max-width: 992px) {
            .navbar .nav-links,
            .navbar .cta-btn {
                display: none;
            }

            .dropdown_menu {
                display: block;
                margin-top: 30px;
            }

            .navbar .toggle_btn {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                margin-top: 150px;
            }

            .hero-buttons{
                justify-content: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .courses-grid,
            .teachers-grid {
                grid-template-columns: 1fr;
            }

            .floating-card {
                display: none;
            }
            .depoimento-card {
        min-width: calc((100% - 20px) / 1);
        width: calc((100% - 20px) / 1);
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }
    
    .titulo-depoimentos {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .depoimentos-track {
        gap: 20px;
    }
        }

        @media (max-width: 700px){
             
        }
        @media (max-width: 600px) {
            .hero{
                margin-top: 15%;
            }
            .hero-text h1 {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 2rem;
            }
            /* Depoimentos mobile */
    .depoimentos-section {
        margin: 40px auto;
        padding: 20px 10px;
    }
    
    .depoimento-card {
        min-width: calc(100% - 10px);
        width: calc(100% - 10px);
        padding: 25px 15px;
    }
    
    .depoimentos-container {
        gap: 8px;
        padding: 0;
    }
    
    .nav-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 14px;
    }
    
    .titulo-depoimentos {
        font-size: 1.4rem;
        margin-bottom: 25px;
        padding-left: 10px;
    }
    
    .depoimentos-track {
        gap: 10px;
    }
    
    .aspas {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .depoimento-card h3 {
        font-size: 1.05rem;
    }
    
    .depoimento-card .cargo {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .depoimento-card .texto-depoimento {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .dots-container {
        margin-top: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 25px;
    }
        }

        /* Animações de scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }