     /* Reset e estilos gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --text-light: #777;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        p {
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 14px 32px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        
        .btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        .btn-accent {
            background-color: var(--accent-color);
        }
        
        .btn-accent:hover {
            background-color: #c0392b;
        }
        
        /* Header */
        .header {
            background-color: var(--primary-color);
            color: white;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 2rem;
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
        }
        
        .nav-list li {
            margin-left: 30px;
        }
        
        .nav-list a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
        }
        
        .nav-list a:hover {
            color: var(--secondary-color);
        }
        
        .nav-list a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        
        .nav-list a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url(midia/maurin-bagual.jpeg);
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 180px 0 100px;
            margin-top: 80px;
        }
        
        .hero h1 {
            color: white;
            font-size: 3.2rem;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }
        
        .hero-description {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--light-color);
        }
        
        .hero-badge {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        /* Sobre o Curso */
        .sobre-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .sobre-text {
            flex: 1;
        }
        
        .sobre-image {
            flex: 1;
            background: linear-gradient(135deg, rgba(128, 0, 128, 0.5), rgba(0, 0, 255,0.4)), url(midia/WhatsApp\ Image\ 2025-11-09\ at\ 23.18.35.jpeg);
            color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
        }
        
        .curso-destaque {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .curso-titulo {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .curso-info {
            display: flex;
            justify-content: space-around;
            margin-top: 30px;
        }
        
        .info-item {
            text-align: center;
        }
        
        .info-number {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            display: block;
        }
        
        .info-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Conteúdo do Curso */
        .conteudo {
            background-color: #f1f8ff;
        }
        
        .aulas-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .aula-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--secondary-color);
        }
        
        .aula-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .aula-numero {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .aula-duracao {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .btn-expandir {
            background: none;
            border: none;
            color: var(--secondary-color);
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
            padding: 5px 0;
            display: flex;
            align-items: center;
        }
        
        .btn-expandir:after {
            content: '+';
            margin-left: 5px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .btn-expandir.active:after {
            content: '-';
        }
        
        .aula-detalhes {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            margin-top: 15px;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
        
        /* Professor */
        .professor-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .professor-foto {
            flex: 1;
            text-align: center;
            background: linear-gradient(135deg, rgba(128, 0, 128, 0.4), rgba(0,0,255, 0.6)), url(midia/WhatsApp\ Image\ 2025-11-09\ at\ 23.18.35.jpeg);

        }
        
        .foto-placeholder {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background-color: var(--primary-color);
            background-image: url(midia/image\ copy.png);
            background-size: cover;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
            box-shadow: var(--shadow);
        }
        
        .professor-info {
            flex: 2;
        }
        
        .professor-nome {
            color: white;
            margin-bottom: 10px;
        }
        
        .professor-experiencia {
            display: flex;
            margin-top: 30px;
        }
        
        .experiencia-item {
            margin-right: 40px;
        }
        
        /* Inscrição */
        .inscricao {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
        }
        
        .inscricao h2 {
            color: white;
        }
        
        .inscricao h2:after {
            background-color: var(--accent-color);
        }
        
        .inscricao-descricao {
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--light-color);
        }
        
        .formulario-inscricao {
            max-width: 600px;
            margin: 0 auto;
            background-color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        
        /* Footer */
        .footer {
            background-color: #1a252f;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            flex: 1;
        }
        
        .footer-links {
            flex: 1;
        }
        
        .footer-links h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2c3e50;
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .sobre-content, .professor-content {
                flex-direction: column;
            }
            
            .sobre-image, .professor-foto {
                width: 100%;
            }
            
            h1 {
                font-size: 2.4rem;
            }
            
            .hero h1 {
                font-size: 2.6rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav.active {
                display: block;
            }
            
            .nav-list {
                flex-direction: column;
            }
            
            .nav-list li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .curso-info {
                flex-direction: column;
                gap: 20px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .aulas-container {
                grid-template-columns: 1fr;
            }
            
            .formulario-inscricao {
                padding: 25px;
            }
        }