/* Fontes mais confortáveis */
:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
}

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

body {
    padding-top: 90px;
    background-color: #f8fafc;
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    font-weight: 400;
    transition: var(--transition);
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Topbar Modernizada */
#topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    transition: all 0.3s ease;
}

#topbar.scrolled {
    height: 70px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#menu-button {
    background: transparent;
    border: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
    z-index: 1001;
    border-radius: 8px;
}

#menu-button:hover {
    background: #f3f4f6;
}

#menu-button i {
    font-size: 24px;
}

#company-name {
    margin-left: 20px;
    color: #111827;
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sidebar Modernizado */
#sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    overflow-y: auto;
}

#sidebar.open {
    left: 0;
}

#sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

#sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 600;
}

#close-sidebar {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
}

.sidebar-menu {
    padding: 20px 0;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.sidebar-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: all 0.6s ease;
}

.sidebar-menu-item:hover::before {
    left: 100%;
}

.sidebar-menu-item i {
    margin-right: 12px;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: #6b7280;
}

.sidebar-menu-item:hover {
    background: #f9fafb;
    border-left: 4px solid #2563eb;
    color: #2563eb;
}

.sidebar-menu-item:hover i {
    color: #2563eb;
}

.sidebar-menu-item.active {
    background: #f0f7ff;
    border-left: 4px solid #2563eb;
    color: #2563eb;
    font-weight: 600;
}

.sidebar-menu-item.active i {
    color: #2563eb;
}

/* Submenu Estilizado */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9fafb;
}

.submenu.open {
    max-height: 500px;
}

.submenu-item {
    display: flex;
    align-items: center;
    padding: 12px 25px 12px 60px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.submenu-item::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9ca3af;
    transition: var(--transition);
}

.submenu-item:hover {
    color: #2563eb;
    background: #f0f7ff;
}

.submenu-item:hover::before {
    background: #2563eb;
}

.submenu-item i {
    margin-right: 10px;
    font-size: 1rem;
}

/* Conteúdo principal */
.main-content {
    min-height: calc(100vh - 180px);
    padding: 40px 0;
}

/* Rodapé */
footer {
    background: #1e293b;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    #topbar {
        padding: 0 20px;
        height: 80px;
    }
    
    #company-name {
        font-size: 22px;
        margin-left: 15px;
    }
    
    #menu-button i {
        font-size: 20px;
    }

    #sidebar {
        width: 280px;
        left: -280px;
    }
    
    .main-content {
        padding: 30px 0;
    }
}
        /* Estilos específicos para a página de contato */
        .contact-card {
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #2563eb;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 20px;
        }
        
        .whatsapp-btn {
            background: #25D366;
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            background: #128C7E;
            transform: scale(1.05);
        }
        
        .contact-form input,
        .contact-form textarea {
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .map-container {
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        :root {
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            padding-top: 90px;
            background-color: #f8fafc;
            color: #1e293b;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }

        body.menu-open {
            overflow: hidden;
        }

        /* Topbar Modernizada */
        #topbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            padding: 0 5%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        #topbar.scrolled {
            height: 70px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        #menu-button {
            background: transparent;
            border: none;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            padding: 10px;
            z-index: 1001;
            border-radius: 8px;
        }

        #menu-button:hover {
            background: #f3f4f6;
        }

        #menu-button i {
            font-size: 24px;
        }

        #company-name {
            margin-left: 20px;
            color: #111827;
            font-size: 28px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            letter-spacing: 0.5px;
            background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Sidebar Modernizado */
        #sidebar {
            position: fixed;
            top: 0;
            left: -320px;
            width: 320px;
            height: 100vh;
            background: white;
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            transition: var(--transition);
            overflow-y: auto;
        }

        #sidebar.open {
            left: 0;
        }

        #sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        #sidebar-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            padding: 25px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
        }

        .sidebar-title {
            font-size: 1.5rem;
            font-weight: 600;
        }

        #close-sidebar {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.5rem;
        }

        .sidebar-menu {
            padding: 20px 0;
        }

        .sidebar-menu-item {
            display: flex;
            align-items: center;
            padding: 15px 25px;
            color: #4b5563;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: var(--transition);
            border-left: 4px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .sidebar-menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
            transition: all 0.6s ease;
        }

        .sidebar-menu-item:hover::before {
            left: 100%;
        }

        .sidebar-menu-item i {
            margin-right: 12px;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
            color: #6b7280;
        }

        .sidebar-menu-item:hover {
            background: #f9fafb;
            border-left: 4px solid #2563eb;
            color: #2563eb;
        }

        .sidebar-menu-item:hover i {
            color: #2563eb;
        }

        .sidebar-menu-item.active {
            background: #f0f7ff;
            border-left: 4px solid #2563eb;
            color: #2563eb;
            font-weight: 600;
        }

        .sidebar-menu-item.active i {
            color: #2563eb;
        }

        /* Submenu Estilizado */
        .submenu {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #f9fafb;
        }

        .submenu.open {
            max-height: 500px;
        }

        .submenu-item {
            display: flex;
            align-items: center;
            padding: 12px 25px 12px 60px;
            color: #4b5563;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
        }

        .submenu-item::before {
            content: '';
            position: absolute;
            left: 45px;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #9ca3af;
            transition: var(--transition);
        }

        .submenu-item:hover {
            color: #2563eb;
            background: #f0f7ff;
        }

        .submenu-item:hover::before {
            background: #2563eb;
        }

        .submenu-item i {
            margin-right: 10px;
            font-size: 1rem;
        }

        /* Efeitos de animação */
        .animate-bounce-in {
            animation: bounceIn 0.6s;
        }

        /* Estilos específicos para a página de serviços */
        .service-card {
            transition: all 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .platform-logo {
            height: 50px;
            object-fit: contain;
            margin: 0 auto;
            display: block;
            filter: grayscale(30%);
            transition: all 0.3s ease;
        }
        
        .platform-logo:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }
        
        .process-step {
            position: relative;
            padding-left: 40px;
            margin-bottom: 30px;
        }
        
        .process-step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 30px;
            height: 30px;
            background: #2563eb;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            #topbar {
                padding: 0 20px;
                height: 80px;
            }
            
            #company-name {
                font-size: 22px;
                margin-left: 15px;
            }
            
            #menu-button i {
                font-size: 20px;
            }

            #sidebar {
                width: 280px;
                left: -280px;
            }
        }
        /* Estilos específicos para a página de cursos */
.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-answer {
    transition: max-height 0.3s ease;
    overflow: hidden;
}

/* Efeito de hover nos cards de curso */
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Estilo para o formulário */
#curso-form input,
#curso-form select,
#curso-form textarea {
    transition: all 0.3s ease;
}

#curso-form input:focus,
#curso-form select:focus,
#curso-form textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .course-feature {
        padding: 1.5rem;
    }
    
    .course-feature-icon {
        margin-bottom: 1rem;
    }
}