
/* ==================== GERAIS ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #f5f5f5; color: #333; }

/* ==================== LOGIN ==================== */
.login-body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: linear-gradient(135deg, #071f3f, #0a2d5e); }
.login-box { background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); width: 400px; }
.login-box h1 { text-align: center; color: #071f3f; margin-bottom: 30px; }

/* ==================== ADMIN LAYOUT ==================== */
.admin-container { display: flex; min-height: 100vh; }
.sidebar { width: 250px; background: #071f3f; color: #fff; padding: 20px; position: fixed; height: 100vh; }
.sidebar h2 { color: #f5790f; font-size: 1.3em; text-align: center; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar ul { list-style: none; margin-top: 20px; }
.sidebar ul li { margin-bottom: 5px; }
.sidebar ul li a { color: #fff; text-decoration: none; padding: 12px 15px; display: block; border-radius: 5px; transition: all 0.3s; }
.sidebar ul li a:hover { background: rgba(245, 121, 15, 0.2); color: #f5790f; }
.content { flex: 1; margin-left: 250px; padding: 30px; min-height: 100vh; }

/* ==================== CARDS DASHBOARD ==================== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 30px 0; }
.card { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); text-align: center; border-top: 4px solid #f5790f; }
.card h3 { font-size: 2.2em; color: #071f3f; }
.card p { color: #666; margin-top: 5px; font-size: 14px; }
.card-success { border-top-color: #28a745; }
.card-success h3 { color: #28a745; }
.card-info { border-top-color: #17a2b8; }
.card-info h3 { color: #17a2b8; }

/* ==================== FORMULÁRIOS ==================== */
.form { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); max-width: 800px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: #333; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px; transition: border 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #f5790f; box-shadow: 0 0 0 3px rgba(245, 121, 15, 0.15); }
.form-group textarea { resize: vertical; }

/* ==================== BOTÕES ==================== */
.btn { display: inline-block; padding: 10px 22px; border: none; border-radius: 5px; cursor: pointer; text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.3s; }
.btn-primary { background: #071f3f; color: #fff; }
.btn-primary:hover { background: #0a2d5e; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-secondary:hover { background: #fff; color: #071f3f; }
.btn-orange { background: #f5790f; color: #fff; }
.btn-orange:hover { background: #d6670a; transform: translateY(-1px); }
.btn-danger { background: #dc3545; color: #fff; }
.btn-danger:hover { background: #c82333; }
.btn-sm { padding: 5px 12px; font-size: 12px; }
.btn-lg { padding: 15px 40px; font-size: 16px; }

/* ==================== TABELAS ==================== */
.table { width: 100%; background: #fff; border-collapse: collapse; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.table th, .table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #eee; }
.table th { background: #071f3f; color: #fff; font-weight: 600; }
.table tr:hover { background: #fef6ed; } /* laranja bem claro */

/* ==================== ALERTAS ==================== */
.alert { padding: 15px 20px; border-radius: 5px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }
.alert-info { background: #e3f2fd; color: #0d47a1; border: 1px solid #90caf9; }

/* ==================== HEADER PÚBLICO ==================== */
.site-header { background: #fff; padding: 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.site-header .container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.logo img { height: 60px; padding: 10px 0; }

/* Navegação principal */
.main-nav ul { list-style: none; display: flex; gap: 5px; }
.main-nav ul li a { color: #071f3f; text-decoration: none; padding: 25px 15px; display: block; transition: all 0.3s; font-weight: 500; }
.main-nav ul li a:hover { background: rgba(245, 121, 15, 0.2); color: #f5790f; }

/* Menu ativo */
.main-nav ul li a.active { background: rgba(245, 121, 15, 0.25); color: #f5790f; font-weight: 700; border-bottom: 3px solid #f5790f; }
.main-nav ul li a.active:hover { background: rgba(245, 121, 15, 0.3); }

/* Dropdown */
.dropdown { position: relative; }
.submenu { display: none !important; position: absolute; top: 100%; left: 0; background: #fff; min-width: 220px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); border-radius: 0 0 8px 8px; z-index: 200; }
.dropdown:hover .submenu { display: block !important; }
.submenu li { list-style: none; }
.submenu li a { color: #333 !important; padding: 12px 20px !important; border-bottom: 1px solid #eee; white-space: nowrap; font-weight: 400 !important; }
.submenu li a:hover { background: #fef6ed !important; color: #f5790f !important; }
.submenu li a.active { background: #fef6ed !important; color: #f5790f !important; font-weight: 700 !important; }

/* ==================== HERO ==================== */
.hero { background: linear-gradient(135deg, #071f3f, #0a2d5e); color: #fff; padding: 80px 0; text-align: center; }
.hero h1 { font-size: 2.5em; margin-bottom: 15px; }
.hero h1 span { color: #f5790f; }
.hero p { font-size: 1.2em; opacity: 0.9; margin-bottom: 30px; }
.hero-links { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ==================== SEÇÕES ==================== */
.section { padding: 60px 0; }
.section-gray { background: #f5f5f5; }
.section h2 { text-align: center; margin-bottom: 40px; color: #071f3f; font-size: 1.8em; position: relative; padding-bottom: 15px; }
.section h2::after { content: ''; display: block; width: 60px; height: 3px; background: #f5790f; margin: 10px auto 0; border-radius: 2px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==================== CURSOS GRID ==================== */
.cursos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; margin-top: 30px; }
.curso-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.curso-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.curso-card img { width: 100%; height: 200px; object-fit: cover; }
.curso-card h3 { padding: 15px 15px 5px; color: #071f3f; }
.curso-card p { padding: 0 15px 15px; color: #666; font-size: 14px; }
.curso-info { padding: 0 15px 15px; display: flex; gap: 15px; font-size: 13px; color: #555; flex-wrap: wrap; }
.curso-card .btn { margin: 0 15px 15px; background: #071f3f; color: #fff; display: inline-block; }
.curso-card .btn:hover { background: #f5790f; }

/* ==================== NOTÍCIAS ==================== */
.noticias-grid, .noticias-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 25px; }
.noticia-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: transform 0.3s; }
.noticia-card:hover { transform: translateY(-3px); }
.noticia-card img { width: 100%; height: 200px; object-fit: cover; }
.noticia-body { padding: 20px; }
.noticia-data { color: #f5790f; font-size: 13px; font-weight: 600; }
.noticia-body h3 { margin: 10px 0; color: #071f3f; }
.noticia-body p { color: #666; margin-bottom: 15px; font-size: 14px; }
.noticia-body .btn { background: #071f3f; color: #fff; }
.noticia-body .btn:hover { background: #f5790f; }

/* ==================== TABS (filtro cursos) ==================== */
.tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.tab { padding: 10px 25px; background: #eee; border-radius: 25px; text-decoration: none; color: #333; font-weight: 500; transition: all 0.3s; }
.tab.active, .tab:hover { background: #f5790f; color: #fff; }

/* ==================== BREADCRUMB ==================== */
.breadcrumb { margin-bottom: 30px; font-size: 14px; color: #666; }
.breadcrumb a { color: #071f3f; text-decoration: none; }
.breadcrumb a:hover { color: #f5790f; text-decoration: underline; }
.breadcrumb span { color: #333; font-weight: 500; }

/* ==================== DETALHE DO CURSO ==================== */
.curso-detalhe { background: #fff; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); overflow: hidden; }
.curso-detalhe-header { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px; }
.curso-detalhe-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; max-height: 400px; }
.curso-detalhe-info { display: flex; flex-direction: column; justify-content: center; }
.curso-tipo-badge { display: inline-block; background: #fef6ed; color: #f5790f; padding: 5px 15px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 15px; width: fit-content; border: 1px solid #f5790f; }
.curso-detalhe-info h1 { font-size: 2em; color: #071f3f; margin-bottom: 25px; }
.curso-meta { display: grid; gap: 15px; margin-bottom: 30px; }
.meta-item { display: flex; align-items: center; gap: 12px; }
.meta-icon { font-size: 24px; }
.meta-item strong { display: block; font-size: 13px; color: #666; }
.meta-item p { margin: 0; color: #333; font-weight: 500; }
.curso-detalhe-body { padding: 0 40px 40px; }
.curso-detalhe-body h2 { color: #071f3f; margin-bottom: 20px; font-size: 1.5em; }
.curso-descricao { line-height: 1.8; color: #444; text-align: justify !important; }

/* ==================== FOOTER ==================== */
.site-footer { background: #071f3f; color: #fff; padding: 60px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-col h4 { margin-bottom: 20px; font-size: 1.1em; color: #f5790f; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aab; text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: #f5790f; }
.footer-col p { color: #aab; margin-bottom: 8px; }
.social-links { display: flex; gap: 15px; }
.social-links a { color: #aab; text-decoration: none; transition: color 0.3s; }
.social-links a:hover { color: #f5790f; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 40px; text-align: center; }
.footer-bottom .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-bottom p { color: #667; font-size: 14px; }

/* ==================== PAGINAÇÃO ==================== */
.paginacao { display: flex; justify-content: center; gap: 5px; margin-top: 40px; }
.page-link { padding: 8px 16px; border-radius: 5px; text-decoration: none; color: #071f3f; background: #eee; font-weight: 500; transition: all 0.3s; }
.page-link.active, .page-link:hover { background: #f5790f; color: #fff; }

/* ==================== MENU MOBILE ==================== */
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .main-nav { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: #071f3f; }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; }
    .main-nav ul li a { padding: 15px 20px; }
    .submenu { position: static; box-shadow: none; background: rgba(255,255,255,0.05); border-radius: 0; }
    .submenu li a { color: #ccc !important; padding-left: 40px !important; }
    .site-header .container { flex-wrap: wrap; position: relative; }
    .sidebar { position: relative; width: 100%; height: auto; }
    .content { margin-left: 0; }
    .form-row { grid-template-columns: 1fr; }
    .curso-detalhe-header { grid-template-columns: 1fr; padding: 20px; }
    .curso-detalhe-body { padding: 0 20px 20px; }
    .curso-detalhe-info h1 { font-size: 1.5em; }
}

/* ==================== UTILITÁRIOS ==================== */
.empty-msg { text-align: center; padding: 60px 0; color: #666; font-size: 1.1em; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }


/* ==================== ADMIN - PÁGINAS INTERNAS ==================== */

/* Cabeçalho da página */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.page-header h1 {
    color: #071f3f;
    font-size: 1.5em;
}

/* Botão secundário admin */
.btn-secondary-admin {
    background: #6c757d;
    color: #fff;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-secondary-admin:hover {
    background: #5a6268;
}

/* Preview de imagem */
.imagem-atual {
    margin-top: 10px;
}
.imagem-atual p {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}
.preview-img {
    max-width: 200px;
    max-height: 120px;
    border-radius: 5px;
    border: 1px solid #ddd;
    object-fit: cover;
}

/* Checkbox estilizado */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    margin-top: 30px;
}
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #f5790f;
}

/* Actions do formulário */
.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Ajuste na sidebar para conteúdo ocupar espaço certo */
.admin-container {
    display: flex;
    min-height: 100vh;
}
.sidebar {
    width: 250px;
    background: #071f3f;
    color: #fff;
    padding: 20px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}
.sidebar h2 {
    color: #f5790f;
    font-size: 1.3em;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar ul {
    list-style: none;
    margin-top: 20px;
}
.sidebar ul li {
    margin-bottom: 5px;
}
.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s;
}
.sidebar ul li a:hover {
    background: rgba(245, 121, 15, 0.2);
    color: #f5790f;
}
.content {
    flex: 1;
    margin-left: 250px;
    padding: 30px;
    min-height: 100vh;
    background: #f5f5f5;
}

/* Formulário admin */
.form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 900px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 5px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border 0.3s;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f5790f;
    box-shadow: 0 0 0 3px rgba(245, 121, 15, 0.15);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Responsivo admin */
@media (max-width: 768px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
    }
    .content {
        margin-left: 0;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .page-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}


/* ===== HERO DO CURSO ===== */
.curso-hero { padding: 50px 0; color: #fff; }
.curso-hero .breadcrumb.light a { color: rgba(255,255,255,0.7); }
.curso-hero .breadcrumb.light a:hover { color: #f5790f; }
.curso-hero .breadcrumb.light span { color: #f5790f; }
.curso-hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 30px; }
.hero-badge { display: inline-block; background: #f5790f; color: #fff; padding: 5px 20px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.curso-hero-text h1 { font-size: 2.8em; margin-bottom: 20px; line-height: 1.1; }
.hero-info { display: flex; gap: 25px; margin-bottom: 30px; flex-wrap: wrap; }
.hero-info-item { display: flex; align-items: center; gap: 8px; font-size: 16px; background: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 8px; }
.hero-info-icon { font-size: 20px; }
.curso-hero-image img { width: 100%; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); max-height: 400px; object-fit: cover; }
.hero-img-placeholder { width: 100%; height: 350px; background: rgba(255,255,255,0.1); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 80px; }

/* ===== SEÇÃO TITLE ===== */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { color: #071f3f; font-size: 1.8em; margin-bottom: 10px; }
.section-title h2::after { content: ''; display: block; width: 60px; height: 3px; background: #f5790f; margin: 10px auto 0; border-radius: 2px; }
.section-title p { color: #666; font-size: 16px; }

/* ===== SOBRE ===== */
.sobre-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.sobre-texto p { line-height: 1.8; color: #444; margin-bottom: 15px; text-align: justify !important; }
.sobre-diferenciais { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.diferencial-card { background: #fff; padding: 20px; border-radius: 10px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.08); border-bottom: 3px solid #f5790f; }
.dif-icon { font-size: 36px; margin-bottom: 10px; }
.diferencial-card h4 { color: #071f3f; margin-bottom: 8px; font-size: 14px; }
.diferencial-card p { color: #666; font-size: 13px; }

/* ===== MATRIZ CURRICULAR ===== */
.matriz-tabs { display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; justify-content: center; }
.matriz-tab { padding: 10px 20px; background: #fff; border: 2px solid #ddd; border-radius: 8px; cursor: pointer; font-weight: 600; color: #333; transition: all 0.3s; font-size: 13px; }
.matriz-tab:hover { border-color: #f5790f; color: #f5790f; }
.matriz-tab.active { background: #071f3f; color: #fff; border-color: #071f3f; }
.matriz-content { background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.semestre-content h3 { color: #071f3f; margin-bottom: 20px; font-size: 1.2em; border-left: 4px solid #f5790f; padding-left: 15px; }
.disciplinas-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 8px; }
.disciplinas-list li { padding: 10px 15px; background: #f8f9fa; border-radius: 5px; color: #444; font-size: 14px; border-left: 3px solid #f5790f; }
.disciplinas-list li::before { content: '📖 '; }

/* ===== MÉDIA SALARIAL ===== */
.salarios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.salario-card { background: #fff; border-radius: 10px; padding: 30px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: transform 0.3s; }
.salario-card:hover { transform: translateY(-5px); }
.salario-icon { font-size: 40px; margin-bottom: 15px; }
.salario-card h4 { color: #071f3f; margin-bottom: 10px; }
.salario-valor { font-size: 1.8em; font-weight: 700; color: #f5790f; margin-bottom: 5px; }
.salario-card p { color: #666; font-size: 13px; }
.salario-fonte { text-align: center; color: #999; font-size: 13px; margin-top: 20px; }

/* ===== ÁREA DE ATUAÇÃO ===== */
.area-texto p { line-height: 1.8; color: #444; margin-bottom: 20px; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; margin-bottom: 20px; }
.area-item { display: flex; align-items: center; gap: 12px; background: #fff; padding: 15px 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.area-item span:first-child { font-size: 24px; }
.area-item span:last-child { color: #444; font-weight: 500; }
.area-descricao { color: #666; font-style: italic; font-size: 15px; }

/* ===== PERFIL ===== */
.perfil-content { text-align: center; max-width: 700px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.perfil-icon { font-size: 60px; margin-bottom: 20px; }
.perfil-content p { line-height: 1.8; color: #444; font-size: 16px; }

/* ===== MERCADO ===== */
.mercado-content { max-width: 800px; margin: 0 auto; }
.mercado-content p { line-height: 1.8; color: #444; margin-bottom: 15px; }

/* ===== INFRAESTRUTURA ===== */
.infra-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.infra-item { border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); background: #fff; }
.infra-placeholder { width: 100%; height: 180px; background: #e8eaf6; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.infra-item p { padding: 12px 15px; font-weight: 600; color: #071f3f; text-align: center; }

/* ===== NEWSLETTER ===== */
.newsletter-section { padding: 60px 0; }
.newsletter-box { background: linear-gradient(135deg, #071f3f, #0a2d5e); border-radius: 15px; padding: 50px; text-align: center; color: #fff; }
.newsletter-box h2 { font-size: 1.8em; margin-bottom: 15px; }
.newsletter-box p { opacity: 0.9; margin-bottom: 30px; }
.newsletter-inputs { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; max-width: 700px; margin: 0 auto; }
.newsletter-inputs input { flex: 1; min-width: 200px; padding: 15px 20px; border: none; border-radius: 8px; font-size: 15px; }
.newsletter-inputs input:focus { outline: 2px solid #f5790f; }
.newsletter-inputs .btn { padding: 15px 30px; font-size: 15px; font-weight: 600; }

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .curso-hero-content { grid-template-columns: 1fr; }
    .curso-hero-text h1 { font-size: 2em; }
    .hero-info { flex-direction: column; gap: 10px; }
    .sobre-content { grid-template-columns: 1fr; }
    .disciplinas-list { grid-template-columns: 1fr; }
    .newsletter-box { padding: 30px 20px; }
    .newsletter-inputs { flex-direction: column; }
    .newsletter-inputs input { min-width: auto; }
    .salarios-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .salarios-grid { grid-template-columns: 1fr; }
    .sobre-diferenciais { grid-template-columns: 1fr; }
}

/* Seções do formulário */
.form-section-title {
    color: #071f3f;
    font-size: 1.2em;
    margin: 30px 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f5790f;
}
.form-section-desc {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

/* Linhas de matriz e salário */
.matriz-row, .salario-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}
.semestre-select {
    width: 130px !important;
    flex-shrink: 0;
}
.disciplina-input {
    flex: 1;
}
.cargo-input {
    flex: 1;
}
.valor-input {
    width: 160px !important;
    flex-shrink: 0;
}
.matriz-row .btn, .salario-row .btn {
    flex-shrink: 0;
}

/* ===== INFRAESTRUTURA CARROSSEL ===== */
.infra-carrossel { position: relative; display: flex; align-items: center; gap: 10px; margin-top: 30px; }
.infra-track-container { overflow: hidden; width: 100%; border-radius: 10px; }
.infra-track { display: flex; transition: transform 0.5s ease; }
.infra-slide { min-width: calc(100% / 3); padding: 0 8px; box-sizing: border-box; }
.infra-slide img { width: 100%; height: 220px; object-fit: cover; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: transform 0.3s; }
.infra-slide img:hover { transform: scale(1.03); }
.infra-legenda { text-align: center; margin-top: 8px; font-size: 14px; color: #444; font-weight: 500; }

/* Botões navegação */
.infra-nav { background: #071f3f; color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 22px; cursor: pointer; transition: all 0.3s; flex-shrink: 0; display: flex; align-items: center; justify-content: center; line-height: 1; }
.infra-nav:hover { background: #f5790f; transform: scale(1.1); }

/* Dots */
.infra-dots { text-align: center; margin-top: 20px; display: flex; justify-content: center; gap: 8px; }
.infra-dot { width: 12px; height: 12px; border-radius: 50%; background: #ccc; cursor: pointer; transition: all 0.3s; display: inline-block; }
.infra-dot.active { background: #f5790f; transform: scale(1.3); }

/* Responsivo */
@media (max-width: 768px) {
    .infra-slide { min-width: 100%; }
    .infra-slide img { height: 200px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .infra-slide { min-width: 50%; }
}

/* ===== ACCORDION ===== */
.accordion-container { max-width: 900px; margin: 0 auto; }
.accordion-item { background: #fff; border-radius: 10px; margin-bottom: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); overflow: hidden; }
.accordion-header { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; background: #071f3f; color: #fff; border: none; cursor: pointer; font-size: 16px; font-weight: 600; text-align: left; transition: background 0.3s; }
.accordion-header:hover { background: #0a2d5e; }
.accordion-header.active { background: #f5790f; }
.accordion-icon { font-size: 22px; font-weight: 700; transition: transform 0.3s; }
.accordion-body { max-height: 0; overflow: hidden; padding: 0 25px; transition: max-height 0.4s ease, padding 0.3s ease; background: #fff; }
.accordion-text { text-align: justify; line-height: 1.8; color: #444; padding: 10px 0; }


