/* ============================================ */
/* RESET BÁSICO E VARIÁVEIS GLOBAIS */
/* ============================================ */

:root {
    --primary-dark: #0c2b4d;
    --primary-light: #1a3f66;
    --gold: #FFD700;
    --gold-dark: #e6c200;
    --gray-bg: #f4f6f9;
    --gray-light: #f8f9fc;
    --gray-border: #eaeef2;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ff9800;
    --danger: #dc3545;
    --info: #17a2b8;
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2rem;
    --shadow-sm: 0 0.125rem 0.5rem rgba(0,0,0,0.05);
    --shadow-md: 0 0.5rem 1.25rem rgba(0,0,0,0.08);
    --shadow-lg: 0 1.25rem 2.5rem rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Apple Color Emoji', 'Noto Color Emoji', 'Android Emoji', 'EmojiOne Color', 'Twemoji Mozilla', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gray-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.5;
}

/* ============================================ */
/* HEADER - TOTALMENTE RESPONSIVO */
/* ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 5%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    min-height: clamp(4rem, 10vw, 6.25rem);
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: auto;
    max-height: clamp(3rem, 8vw, 5rem);
    max-width: clamp(12rem, 30vw, 17.5rem);
    object-fit: contain;
}

/* Menu Hambúrguer */
.menu-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.625rem;
    z-index: 1001;
}

.menu-hamburger span {
    display: block;
    width: 1.5625rem;
    height: 0.1875rem;
    background: var(--primary-dark);
    margin: 0.3125rem 0;
    transition: var(--transition);
    border-radius: 0.1875rem;
}

.menu {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 1.5625rem);
    flex-wrap: wrap;
    transition: var(--transition);
}

.menu > a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    padding: 0.5rem 0;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.menu > a:hover,
.menu > a.ativo {
    color: var(--gold);
    border-bottom: 0.125rem solid var(--gold);
}

/* Botões Login/Cadastro */
.btn-login,
.btn-cadastro {
    padding: 0.375rem 1rem;
    border-radius: 1.875rem;
    font-size: clamp(0.75rem, 2vw, 0.8125rem);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    color: var(--primary-dark);
    border: 0.0625rem solid #d0d5dd;
}

.btn-login:hover,
.btn-cadastro:hover {
    background: var(--gray-light);
    border-color: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-0.0625rem);
}

/* Menu Usuário Logado */
.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-menu .btn-perfil {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem 0.375rem 0.5rem;
    background: var(--gray-light);
    border: 0.0625rem solid var(--gray-border);
    border-radius: 2.5rem;
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: var(--transition);
}

.user-menu .btn-perfil:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.user-menu .avatar-mini {
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: bold;
    overflow: hidden;
}

.user-menu .avatar-mini img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-menu .btn-sair {
    padding: 0.375rem 0.875rem;
    background: transparent;
    border: 0.0625rem solid #e0e0e0;
    border-radius: 1.875rem;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.75rem;
    transition: var(--transition);
}

.user-menu .btn-sair:hover {
    background: #fee2e2;
    border-color: var(--danger);
    color: var(--danger);
}

/* Tradutor */
.tradutor {
    position: relative;
    display: inline-block;
}

.tradutor-btn {
    background: #f0f0f0;
    color: var(--primary-dark);
    border: none;
    padding: 0.5rem 0.9375rem;
    border-radius: 1.875rem;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.tradutor-btn:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.tradutor-btn .flag-icon {
    font-size: 1.125rem;
    border-radius: 0.1875rem;
}

.seta {
    font-size: 0.75rem;
    margin-left: 0.3125rem;
}

.tradutor-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: var(--white);
    min-width: 11.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
    border-radius: 0.5rem;
    z-index: 1;
    margin-top: 0.3125rem;
    overflow: hidden;
}

.tradutor-dropdown a {
    color: var(--primary-dark);
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    border-bottom: 0.0625rem solid #f0f0f0;
    transition: var(--transition);
}

.tradutor-dropdown a:last-child {
    border-bottom: none;
}

.tradutor-dropdown a:hover {
    background: var(--gray-light);
    color: var(--gold);
}

.tradutor:hover .tradutor-dropdown {
    display: block;
}

/* ============================================ */
/* HERO - PÁGINA INICIAL */
/* ============================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    margin-top: clamp(5rem, 12vw, 6.25rem);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 43, 77, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 56.25rem;
    padding: 0 5%;
    text-align: center;
}

.hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.8125rem);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    color: var(--white);
}

.hero h1 .destaque {
    color: var(--gold);
    font-weight: bold;
    font-size: clamp(1.25rem, 5vw, 2.1875rem);
}

.hero p {
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    line-height: 1.6;
    max-width: 43.75rem;
    margin: 0 auto;
    color: var(--white);
}

.hero-buttons {
    margin-top: 1.875rem;
    display: flex;
    justify-content: center;
    gap: 0.9375rem;
    flex-wrap: wrap;
}

/* Botões principais */
.btn-primary,
.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    border-radius: 0.3125rem;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
}

.btn-primary:hover,
.btn-secondary:hover {
    background: #f0f0f0;
    box-shadow: 0 0.3125rem 0.9375rem rgba(0,0,0,0.2);
}

/* Container */
.container {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 5%;
}

/* ============================================ */
/* SEÇÃO VMV (VISÃO, MISSÃO, VALORES) */
/* ============================================ */

.vmv-section {
    padding: clamp(3rem, 8vw, 5rem) 5%;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 3.75rem);
}

.section-header h2 {
    color: var(--primary-dark);
    font-size: clamp(1.5rem, 5vw, 2.625rem);
    margin-bottom: 0.9375rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -0.625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.1875rem;
    background: var(--gold);
}

.section-subtitle {
    color: var(--text-light);
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    max-width: 37.5rem;
    margin: 1.25rem auto 0;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.875rem;
    margin-bottom: 3.75rem;
}

.vmv-card {
    background: var(--white);
    padding: clamp(1.5rem, 5vw, 2.5rem);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 0.0625rem solid rgba(12, 43, 77, 0.05);
}

.vmv-card:hover {
    transform: translateY(-0.625rem);
    box-shadow: var(--shadow-lg);
}

.vmv-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
}

.vmv-card.missao:before {
    background: linear-gradient(90deg, var(--primary-dark), var(--gold));
}

.vmv-card.visao:before {
    background: linear-gradient(90deg, var(--gold), var(--primary-dark));
}

.vmv-card.valores:before {
    background: linear-gradient(90deg, var(--primary-dark), var(--gold), var(--primary-dark));
}

.vmv-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(12, 43, 77, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5625rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.vmv-card:hover .vmv-icon {
    background: linear-gradient(135deg, var(--primary-dark), var(--gold));
    color: var(--white);
    transform: rotateY(180deg);
}

.vmv-card h3 {
    color: var(--primary-dark);
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.vmv-card p {
    color: #555;
    line-height: 1.8;
    font-size: clamp(0.75rem, 2.5vw, 1rem);
}

/* ============================================ */
/* SEÇÃO DIFERENCIAIS */
/* ============================================ */

.diferenciais {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-radius: 1.25rem;
    color: var(--white);
}

.diferenciais h3 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.diferenciais h3:after {
    content: '';
    position: absolute;
    bottom: -0.625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.75rem;
    height: 0.1875rem;
    background: var(--gold);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.875rem;
}

.diferencial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.9375rem;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.diferencial-item:hover {
    transform: translateY(-0.3125rem);
    background: rgba(255, 255, 255, 0.15);
}

.diferencial-numero {
    font-size: clamp(2rem, 6vw, 2.625rem);
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.625rem;
}

.diferencial-texto {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

/* ============================================ */
/* SEÇÃO ÁREAS DE ATUAÇÃO */
/* ============================================ */

.areas-atuacao {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5625rem;
    margin: 3.125rem 0 2.5rem;
}

.area-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.875rem 1.5625rem;
    box-shadow: var(--shadow-sm);
    border: 0.0625rem solid var(--gray-border);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.area-icon {
    width: 4.375rem;
    height: 4.375rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5625rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.area-card:hover .area-icon {
    background: var(--gold);
    color: var(--primary-dark);
}

.area-card h3 {
    color: var(--primary-dark);
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 0.9375rem;
}

.area-card p {
    color: #555;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.area-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    transition: var(--transition);
}

.area-link:hover {
    color: var(--gold);
    gap: 0.5rem;
}

/* ============================================ */
/* BREADCRUMB */
/* ============================================ */

.breadcrumb {
    position: absolute;
    top: 1.25rem;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 0.625rem 0;
    z-index: 20;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================================ */
/* HERO SERVIÇOS / SOBRE / CONTACTOS */
/* ============================================ */

.hero-servicos,
.hero-sobre,
.hero-contactos {
    position: relative;
    min-height: clamp(18.75rem, 50vh, 31.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: clamp(5rem, 12vw, 6.25rem);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-servicos::before,
.hero-sobre::before,
.hero-contactos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 43, 77, 0.6);
    z-index: 1;
}

.hero-servicos-content,
.hero-sobre-content,
.hero-contactos-content {
    position: relative;
    z-index: 2;
    max-width: 56.25rem;
    margin: 0 auto;
    padding: 2.5rem 5%;
}

.hero-servicos h1,
.hero-sobre-content h1,
.hero-contactos h1 {
    font-size: clamp(1.75rem, 6vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 0.9375rem;
    text-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.3);
}

.hero-servicos .destaque-servicos,
.hero-sobre-content .destaque-sobre,
.hero-contactos .destaque-contacto {
    color: var(--gold);
    font-weight: 700;
}

.hero-servicos p,
.hero-sobre-texto,
.hero-contactos p {
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    max-width: 43.75rem;
    margin: 0 auto;
}

/* ============================================ */
/* PESQUISA DE SERVIÇOS */
/* ============================================ */

.pesquisa-servicos {
    padding: 3.75rem 0;
    background: var(--white);
}

.pesquisa-wrapper {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
}

.pesquisa-wrapper h2 {
    color: var(--primary-dark);
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    margin-bottom: 1.875rem;
    font-weight: 600;
}

.pesquisa-box {
    display: flex;
    gap: 0.9375rem;
    margin-bottom: 1.25rem;
    background: var(--gray-light);
    padding: 0.3125rem;
    border-radius: 3.125rem;
    border: 0.0625rem solid var(--gray-border);
}

.pesquisa-input {
    flex: 1;
    padding: 0.9375rem 1.5625rem;
    border: none;
    background: transparent;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    outline: none;
}

.pesquisa-input::placeholder {
    color: #999;
}

.pesquisa-btn {
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.9375rem 2.1875rem;
    border-radius: 3.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: var(--transition);
}

.pesquisa-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-0.125rem);
}

.ver-todos-btn {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    font-weight: 500;
    border-bottom: 0.125rem solid var(--gold);
    padding-bottom: 0.3125rem;
    transition: var(--transition);
}

.ver-todos-btn:hover {
    color: var(--gold);
}

/* ============================================ */
/* CATEGORIAS E CURSOS */
/* ============================================ */

.categorias-destaque {
    padding: 3.75rem 0;
    background: var(--gray-light);
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.875rem;
}

.categoria-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2.5rem 1.875rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 0.0625rem solid var(--gray-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.categoria-card:not(.destaque):hover {
    transform: translateY(-0.3125rem);
    border-color: var(--gold);
    box-shadow: 0 0.9375rem 1.875rem rgba(255, 215, 0, 0.1);
}

.categoria-card.destaque {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    transform: scale(1.02);
    border: none;
    box-shadow: var(--shadow-lg);
}

.categoria-card.destaque .categoria-icon {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

.categoria-card.destaque h3 {
    color: var(--white);
}

.categoria-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5625rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.categoria-card h3 {
    color: var(--primary-dark);
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 0.9375rem;
}

.categoria-cursos-lista {
    list-style: none;
    padding: 0;
    margin: 0.9375rem 0 1.25rem;
    text-align: left;
}

.categoria-cursos-lista li {
    color: #555;
    font-size: 0.8125rem;
    padding: 0.375rem 0 0.375rem 1.25rem;
    position: relative;
    border-bottom: 0.0625rem dashed var(--gray-border);
}

.categoria-cursos-lista li::before {
    content: "•";
    color: var(--gold);
    font-size: 1rem;
    position: absolute;
    left: 0.3125rem;
    top: 0.3125rem;
}

.categoria-card.destaque .categoria-cursos-lista li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Grid de Cursos */
.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5625rem;
    margin-top: 1.875rem;
}

.curso-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.1);
    border-left: 0.25rem solid #1a4b8c;
    transition: var(--transition);
}

.curso-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(0,0,0,0.15);
}

.curso-card .codigo {
    display: inline-block;
    background: #e9ecef;
    padding: 0.1875rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-family: monospace;
    margin-bottom: 0.625rem;
}

.curso-card h3 {
    color: #1a4b8c;
    margin-bottom: 0.625rem;
    font-size: 1rem;
    font-weight: 600;
}

.curso-info {
    display: flex;
    gap: 0.9375rem;
    margin: 0.625rem 0;
    font-size: 0.85rem;
    color: #555;
}

.categoria-badge {
    display: inline-block;
    background: #1a4b8c;
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
    font-size: 0.75rem;
    margin-top: 0.3125rem;
}

.btn-curso {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: #1a4b8c;
    color: var(--white);
    text-decoration: none;
    border-radius: 0.375rem;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-curso:hover {
    background: #0f3a6b;
    transform: translateY(-0.125rem);
}

/* ============================================ */
/* FORMULÁRIOS (CADASTRO, LOGIN, INSCRIÇÃO) */
/* ============================================ */

.cadastro-section,
.login-section,
.pre-inscricao-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: var(--gray-light);
}

.cadastro-wrapper,
.login-wrapper {
    max-width: 50rem;
    margin: 0 auto;
}

.cadastro-card,
.login-card,
.form-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    box-shadow: var(--shadow-sm);
    border: 0.0625rem solid var(--gray-border);
}

.cadastro-header,
.login-header {
    text-align: center;
    margin-bottom: 1.875rem;
}

.cadastro-header h2,
.login-header h2 {
    color: var(--primary-dark);
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    margin-bottom: 0.625rem;
}

.form-row {
    margin-bottom: 1.25rem;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.9375rem;
    border: 0.0625rem solid var(--gray-border);
    border-radius: 0.625rem;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    transition: var(--transition);
    background: var(--gray-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 0.1875rem rgba(255, 215, 0, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.checkbox-group input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
}

.checkbox-group label {
    color: var(--text-light);
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
}

.btn-enviar {
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.9375rem 1.875rem;
    border-radius: 3.125rem;
    font-weight: 600;
    font-size: clamp(0.875rem, 3vw, 1rem);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-enviar:hover {
    background: var(--gold-dark);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(255, 215, 0, 0.3);
}

/* ============================================ */
/* NOTIFICAÇÕES */
/* ============================================ */

.notification {
    position: fixed;
    top: 7.5rem;
    right: 1.25rem;
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    padding: 1.25rem;
    min-width: 20rem;
    max-width: 25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9375rem;
    z-index: 1000;
    animation: slideInRight 0.3s ease;
    border-left: 0.25rem solid;
}

.notification-success {
    border-left-color: var(--success);
}

.notification-error {
    border-left-color: var(--danger);
}

.notification-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.notification-success .notification-icon {
    background: #e8f5e9;
    color: var(--success);
}

.notification-error .notification-icon {
    background: #ffebee;
    color: var(--danger);
}

.notification-content {
    flex: 1;
}

.notification-content h4 {
    margin-bottom: 0.3125rem;
    color: var(--text-dark);
}

.notification-content p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #999;
    padding: 0;
}

/* ============================================ */
/* ÁREA DO ALUNO */
/* ============================================ */

.area-aluno-section {
    padding: 3.75rem 0;
    background: var(--gray-light);
}

.area-aluno-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.875rem;
}

@media (max-width: 992px) {
    .area-aluno-grid {
        grid-template-columns: 1fr;
    }
}

.menu-lateral {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.875rem;
    box-shadow: var(--shadow-sm);
    border: 0.0625rem solid var(--gray-border);
    position: sticky;
    top: 7.5rem;
}

@media (max-width: 992px) {
    .menu-lateral {
        position: static;
        margin-bottom: 1.875rem;
    }
}

.perfil-resumo {
    text-align: center;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 0.0625rem solid var(--gray-border);
}

.perfil-resumo .avatar {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.9375rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    overflow: hidden;
}

.perfil-resumo h4 {
    color: var(--primary-dark);
    margin-bottom: 0.3125rem;
}

.perfil-resumo p {
    font-size: 0.75rem;
    color: var(--text-light);
    word-break: break-all;
}

.menu-aluno {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.menu-aluno a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9375rem;
    border-radius: 0.75rem;
    color: #555;
    text-decoration: none;
    transition: var(--transition);
}

.menu-aluno a:hover,
.menu-aluno a.ativo {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-dark);
    border-left: 0.1875rem solid var(--gold);
}

.menu-aluno a.logout {
    margin-top: 1.25rem;
    border-top: 0.0625rem solid var(--gray-border);
    padding-top: 0.9375rem;
    color: var(--danger);
}

.conteudo-aluno {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.875rem;
    box-shadow: var(--shadow-sm);
    border: 0.0625rem solid var(--gray-border);
}

.secao-aluno {
    display: none;
}

.secao-aluno.ativa {
    display: block;
    animation: fadeIn 0.3s ease;
}

.secao-aluno h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5625rem;
    padding-bottom: 0.9375rem;
    border-bottom: 0.125rem solid var(--gold);
    display: inline-block;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
}

/* Inscrições Cards */
.inscricoes-lista {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.inscricao-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.25rem;
    border: 0.0625rem solid var(--gray-border);
    position: relative;
    transition: var(--transition);
}

.inscricao-status {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.3125rem 0.75rem;
    border-radius: 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .inscricao-status {
        position: static;
        display: inline-block;
        margin-bottom: 0.9375rem;
    }
}

.status-pre_inscricao {
    background: #fff3e0;
    color: var(--warning);
}

.status-aguardando_pagamento {
    background: #e3f2fd;
    color: var(--info);
}

.status-confirmado,
.status-em_andamento {
    background: #e8f5e9;
    color: var(--success);
}

.status-concluido {
    background: #2e7d32;
    color: var(--white);
}

/* ============================================ */
/* PÁGINA DE CONTACTOS */
/* ============================================ */

.contactos-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: var(--gray-light);
}

.contactos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.info-card,
.form-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 0.0625rem solid var(--gray-border);
    height: 100%;
}

.info-card h3,
.form-card h3 {
    color: var(--primary-dark);
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    margin-bottom: 1.875rem;
    position: relative;
    padding-bottom: 0.9375rem;
}

.info-card h3::after,
.form-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3.75rem;
    height: 0.1875rem;
    background: var(--gold);
}

.info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.875rem;
    padding-bottom: 1.25rem;
    border-bottom: 0.0625rem solid var(--gray-border);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 3.125rem;
    height: 3.125rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p,
.info-content a {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--gold);
}

/* Redes Sociais */
.social-media {
    margin-top: 1.875rem;
}

.social-media h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 0.9375rem;
}

.social-icons {
    display: flex;
    gap: 0.9375rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: var(--transition);
    border: 0.0625rem solid var(--gray-border);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-0.1875rem);
}

/* Mapa */
.mapa-section {
    padding: 3.75rem 0 5rem;
    background: var(--white);
}

.mapa-container {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.mapa-container iframe {
    width: 100%;
    height: clamp(18.75rem, 40vh, 28.125rem);
    border: 0;
}

/* ============================================ */
/* PÁGINA SOBRE */
/* ============================================ */

.citacao-card {
    background: linear-gradient(135deg, rgba(12, 43, 77, 0.92) 0%, rgba(26, 63, 102, 0.92) 100%);
    backdrop-filter: blur(0.1875rem);
    border-radius: 1.5rem;
    padding: clamp(1.875rem, 6vw, 2.8125rem);
    color: var(--white);
    position: relative;
    box-shadow: 0 1.5625rem 2.8125rem rgba(0,0,0,0.25);
    border: 0.0625rem solid rgba(255, 215, 0, 0.3);
    transition: var(--transition);
}

.aspas-grandes {
    font-size: clamp(4rem, 10vw, 6.875rem);
    line-height: 0.8;
    color: rgba(255, 215, 0, 0.25);
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 1.25rem;
}

.citacao-texto {
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    line-height: 1.8;
    margin-bottom: 1.875rem;
    font-style: italic;
}

.citacao-divider {
    width: 3.75rem;
    height: 0.125rem;
    background: linear-gradient(90deg, var(--gold), rgba(255, 215, 0, 0.3));
    margin: 1.5625rem 0 1.25rem;
}

.citacao-nome {
    font-size: clamp(1.125rem, 4vw, 1.375rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3125rem;
}

/* ============================================ */
/* PARCERIAS - BANDEIRAS */
/* ============================================ */

.parcerias-mundo {
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3.75rem);
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.paises-lista-bandeiras {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9375rem;
    margin: 3.125rem 0 0;
}

.pais-item-bandeira {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9375rem;
    background: var(--white);
    border: 0.0625rem solid var(--gray-border);
    border-radius: 3.125rem;
    transition: var(--transition);
    box-shadow: 0 0.1875rem 0.625rem rgba(0,0,0,0.02);
}

.pais-flag-icon {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
}

.pais-nome-bandeira {
    font-size: clamp(0.75rem, 2.5vw, 0.9375rem);
    font-weight: 500;
    color: var(--primary-dark);
}

/* ============================================ */
/* SEÇÃO NÚMEROS */
/* ============================================ */

.numeros-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: var(--white);
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.875rem;
    text-align: center;
}

.numero-item {
    padding: 2.1875rem 1.5625rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-radius: 1.5rem;
    border: 0.0625rem solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.numero-item:hover {
    transform: translateY(-0.625rem);
}

.numero-valor {
    display: block;
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.numero-rotulo {
    display: block;
    font-size: clamp(0.75rem, 3vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.09375rem;
}

/* ============================================ */
/* SEÇÃO CTA */
/* ============================================ */

.cta-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    color: var(--primary-dark);
    margin-bottom: 0.9375rem;
}

.cta-content p {
    font-size: clamp(0.875rem, 3vw, 1.125rem);
    color: var(--text-light);
    margin-bottom: 1.875rem;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================ */
/* PARCERIAS INDEX */
/* ============================================ */

.parcerias {
    padding: 3.75rem 5%;
    text-align: center;
    background: #e9eef3;
}

.parcerias h2 {
    color: var(--primary-dark);
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.parcerias h2::after {
    content: '';
    position: absolute;
    bottom: -0.625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.75rem;
    height: 0.1875rem;
    background: var(--gold);
}

.parcerias p {
    max-width: 50rem;
    margin: 1.875rem auto 0;
    line-height: 1.8;
    color: #555;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
}

/* ============================================ */
/* FOOTER */
/* ============================================ */

.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 1.25rem 0 0.9375rem;
    font-size: 0.8125rem;
}

.footer-contactos {
    background: rgba(255, 215, 0, 0.08);
    padding: 0.75rem 0;
    margin-bottom: 0.9375rem;
    border-bottom: 0.0625rem solid rgba(255, 215, 0, 0.15);
    border-top: 0.0625rem solid rgba(255, 215, 0, 0.15);
}

.contactos-wrapper-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.25rem, 5vw, 2.5rem);
    flex-wrap: wrap;
    max-width: 62.5rem;
    margin: 0 auto;
    padding: 0 5%;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.7rem, 2vw, 0.8125rem);
}

.contacto-icone {
    font-size: 1rem;
}

.contacto-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.contacto-item a:hover {
    color: var(--gold);
}

.footer p {
    margin: 0.3125rem 0;
    opacity: 0.8;
    padding: 0 5%;
    font-size: 0.75rem;
}

/* ============================================ */
/* ANIMAÇÕES */
/* ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-1.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(0.625rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================================ */
/* RESPONSIVIDADE GERAL */
/* ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .inscricao-grid {
        grid-template-columns: 1fr;
    }
    
    .info-curso .curso-destaque-card {
        position: static;
        margin-bottom: 1.875rem;
    }
    
    .vmv-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .categorias-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .qualidade-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .numeros-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .categoria-card.destaque {
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        padding: 0.625rem 5%;
    }
    
    .menu-hamburger {
        display: block;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 18.75rem;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6.25rem 1.875rem 1.875rem;
        gap: 1.25rem;
        box-shadow: -0.3125rem 0 0.9375rem rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu > a {
        font-size: 1rem;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 0.0625rem solid var(--gray-border);
    }
    
    .btn-login,
    .btn-cadastro {
        width: 100%;
        justify-content: center;
        padding: 0.625rem;
    }
    
    .user-menu {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .user-menu .btn-perfil {
        width: 100%;
        justify-content: center;
        padding: 0.625rem;
    }
    
    .user-menu .btn-sair {
        width: 100%;
        text-align: center;
        padding: 0.625rem;
    }
    
    .tradutor {
        width: 100%;
        margin-top: 0.625rem;
    }
    
    .tradutor-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tradutor-dropdown {
        right: auto;
        left: 0;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.625rem;
    }
    
    .hero-buttons a {
        width: 80%;
        text-align: center;
    }
    
    .pesquisa-box {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0 5%;
    }
    
    .pesquisa-input {
        background: var(--gray-light);
        border-radius: 3.125rem;
        border: 0.0625rem solid var(--gray-border);
        margin-bottom: 0.625rem;
    }
    
    .pesquisa-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contactos-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        gap: 0.625rem;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.625rem;
    }
    
    .cta-buttons a {
        width: 80%;
        text-align: center;
    }
    
    .footer-contactos {
        padding: 0.625rem 0;
    }
    
    .contactos-wrapper-footer {
        flex-direction: column;
        gap: 0.625rem;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero h1 .destaque {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .vmv-card h3 {
        font-size: 1.375rem;
    }
    
    .area-card h3 {
        font-size: 1.125rem;
    }
    
    .servico-item {
        padding: 1.5625rem 1.25rem;
    }
    
    .servico-content h3 {
        font-size: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .btn-enviar {
        padding: 0.75rem 1.5625rem;
        font-size: 0.875rem;
    }
    
    .citacao-card {
        padding: 1.5625rem 1.25rem;
    }
    
    .aspas-grandes {
        font-size: 3.125rem;
    }
    
    .citacao-texto {
        font-size: 0.875rem;
    }
    
    .citacao-nome {
        font-size: 1rem;
    }
}

/* ============================================ */
/* ESTILOS ESPECÍFICOS DO BANCO (DADOS BANCÁRIOS) */
/* ============================================ */

.bank-full-container {
    max-width: 50rem;
    margin: 9.375rem auto 0;
    padding: 0 5%;
}

.bank-full-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: clamp(1.25rem, 5%, 1.875rem);
    box-shadow: var(--shadow-md);
}

.bank-full-info-curso {
    background: #f0f8ff;
    padding: clamp(1rem, 4%, 1.25rem);
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
}

.bank-full-dados {
    background: #f9f9f9;
    padding: clamp(1rem, 4%, 1.25rem);
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
    overflow-x: auto;
}

.bank-full-dados table {
    width: 100%;
    min-width: 18.75rem;
}

.bank-full-dados td {
    padding: 0.5rem 0;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
}

.bank-full-dados td:first-child {
    width: 35%;
    font-weight: bold;
}

.bank-full-instrucoes {
    background: #fff3cd;
    padding: clamp(1rem, 4%, 1.25rem);
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
}

.bank-full-instrucoes ol {
    margin-left: 1.25rem;
}

.bank-full-form-group {
    margin-bottom: 1.25rem;
}

.bank-full-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
}

.bank-full-form-group input {
    width: 100%;
    padding: 0.625rem;
    border: 0.0625rem solid #ddd;
    border-radius: 0.5rem;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
}

.bank-full-checkbox-group {
    margin: 1.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.bank-full-btn-enviar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.75rem 1.875rem;
    border: none;
    border-radius: 1.875rem;
    cursor: pointer;
    font-size: clamp(0.875rem, 3vw, 1rem);
    width: 100%;
    transition: var(--transition);
}

.bank-full-btn-enviar:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

/* ============================================ */
/* ESTILOS ADMIN (PAINEL ADMINISTRATIVO) */
/* ============================================ */

.admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 16.25rem;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 1.25rem 0;
    overflow-y: auto;
    z-index: 100;
}

.admin-main-content {
    margin-left: 16.25rem;
    padding: 1.25rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.875rem;
}

.admin-stat-card {
    background: var(--white);
    padding: 1.5625rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.admin-table-container {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.875rem;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 37.5rem;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 0.0625rem solid var(--gray-border);
}

.admin-table th {
    background: var(--gray-light);
    font-weight: 600;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .admin-main-content {
        margin-left: 0;
    }
    
    .admin-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* ============================================ */
/* UTILITÁRIOS */
/* ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.hidden { display: none; }
.visible { display: block; }

@media print {
    body {
        background: white;
        padding: 0;
        margin: 0;
    }
    .no-print,
    .btn-print,
    .menu-hamburger,
    .footer,
    .header {
        display: none;
    }
}

/* ============================================ */
/* CORREÇÕES DE CORES - DADOS BANCÁRIOS */
/* ============================================ */

/* Card do curso em destaque - fundo azul gradiente */
.curso-destaque-card,
.bank-curso-destaque-card {
    background: linear-gradient(135deg, #0c2b4d 0%, #1a3f66 100%) !important;
    border-radius: 1.25rem;
    padding: 1.875rem;
    color: white;
}

/* Título do curso em destaque - dourado */
.curso-destaque-card h3,
.bank-curso-titulo {
    color: #FFD700 !important;
    margin-bottom: 1.25rem;
}

/* Labels dentro do card - dourado */
.curso-destaque-card .info-label,
.bank-info-label {
    color: #FFD700 !important;
    font-weight: 600;
}

/* Valores dentro do card - branco */
.curso-destaque-card .info-value,
.bank-info-value {
    color: white !important;
}

/* Card do formulário - fundo branco */
.form-card,
.bank-form-card {
    background: white !important;
    border-radius: 1.25rem;
    padding: 1.875rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.08);
}

/* Título do formulário - azul escuro */
.form-card h3,
.bank-form-titulo {
    color: #0c2b4d !important;
}

/* Informações do curso - fundo azul claro */
.info-curso,
.bank-full-info-curso {
    background: #f0f8ff !important;
    padding: 1.25rem;
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
}

/* Dados bancários - fundo cinza claro */
.dados-bancarios,
.bank-full-dados {
    background: #f9f9f9 !important;
    padding: 1.25rem;
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
}

/* Instruções - fundo amarelo */
.instrucoes,
.bank-full-instrucoes {
    background: #fff3cd !important;
    padding: 1.25rem;
    border-radius: 0.625rem;
    margin-bottom: 1.25rem;
    border-left: 0.25rem solid #ff9800;
}

/* Título das instruções - laranja */
.instrucoes h3,
.bank-full-instrucoes h3 {
    color: #856404 !important;
}

/* Contato - fundo azul claro */
.contato,
.bank-full-contato {
    background: #e8f4fd !important;
    padding: 1.25rem;
    border-radius: 0.625rem;
    text-align: center;
    margin-top: 1.25rem;
}

/* Botão Voltar - cinza */
.btn-voltar,
.bank-btn-voltar {
    background: #6c757d !important;
    color: white !important;
    padding: 0.75rem 1.875rem;
    border-radius: 1.875rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-voltar:hover,
.bank-btn-voltar:hover {
    background: #5a6268 !important;
    transform: translateY(-0.125rem);
}

/* Botão Enviar Comprovante - verde */
.btn-enviar-comprovante,
.bank-btn-enviar {
    background: #28a745 !important;
    color: white !important;
    padding: 0.75rem 1.875rem;
    border-radius: 1.875rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-enviar-comprovante:hover,
.bank-btn-enviar:hover {
    background: #218838 !important;
    transform: translateY(-0.125rem);
}

/* Botão Já Transferi - verde */
.btn-enviar {
    background: #28a745 !important;
    color: white !important;
    border: none;
    padding: 0.75rem 1.875rem;
    border-radius: 1.875rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    background: #218838 !important;
    transform: translateY(-0.125rem);
}

/* Botão Confirmar Pré-inscrição - dourado/azul */
.btn-primary {
    background: #FFD700 !important;
    color: #0c2b4d !important;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 0.3125rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e6c200 !important;
    transform: translateY(-0.125rem);
}

/* Container flex para botões */
.recibo-actions {
    display: flex;
    gap: 0.9375rem;
    justify-content: center;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

/* Botão recibo */
.btn-recibo {
    background: #FFD700 !important;
    color: #0c2b4d !important;
    border: none;
    padding: 0.75rem 1.5625rem;
    border-radius: 1.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.3s ease;
}

.btn-recibo:hover {
    background: #e6c200 !important;
    transform: translateY(-0.125rem);
}

/* Botão recibo pequeno */
.btn-recibo-pequeno {
    background: #6c757d !important;
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-size: 0.8125rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-recibo-pequeno:hover {
    background: #5a6268 !important;
    transform: translateY(-0.125rem);
}

/* Status badges */
.status-pre_inscricao {
    background: #fff3e0 !important;
    color: #ff9800 !important;
}

.status-aguardando_pagamento {
    background: #e3f2fd !important;
    color: #2196f3 !important;
}

.status-confirmado,
.status-em_andamento {
    background: #e8f5e9 !important;
    color: #4caf50 !important;
}

.status-concluido {
    background: #2e7d32 !important;
    color: white !important;
}

/* Grid de inscrição */
.inscricao-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .inscricao-grid {
        grid-template-columns: 1fr;
    }
}

/* Etapas do processo */
.processo-etapas {
    margin-top: 1.875rem;
    padding-top: 1.25rem;
    border-top: 0.0625rem solid rgba(255,255,255,0.2);
}

.processo-etapas h4 {
    color: #FFD700 !important;
    font-size: 0.875rem;
    margin-bottom: 0.9375rem;
}

.etapas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.625rem;
}

.etapa {
    text-align: center;
    flex: 1;
}

.etapa-numero {
    width: 1.875rem;
    height: 1.875rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 0.875rem;
    font-weight: bold;
}

.etapa.ativa .etapa-numero {
    background: #FFD700 !important;
    color: #0c2b4d;
}

.etapa.completed .etapa-numero {
    background: #28a745 !important;
    color: white;
}

.etapa-texto {
    font-size: 0.625rem;
    text-transform: uppercase;
    display: block;
    color: rgba(255,255,255,0.7);
}

.etapa.ativa .etapa-texto {
    color: #FFD700 !important;
}

.etapa-linha {
    flex: 1;
    height: 0.125rem;
    background: rgba(255,255,255,0.2);
}

.etapa-linha.active {
    background: #FFD700 !important;
}

/* Benefícios */
.beneficios-pre-inscricao {
    margin-top: 1.875rem;
    padding-top: 1.25rem;
    border-top: 0.0625rem solid rgba(255,255,255,0.2);
}

.beneficios-pre-inscricao h4 {
    color: #FFD700 !important;
    font-size: 1rem;
    margin-bottom: 0.9375rem;
}

.beneficios-pre-inscricao ul {
    list-style: none;
    padding: 0;
}

.beneficios-pre-inscricao ul li {
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
}

/* Info item */
.info-item {
    display: flex;
    padding: 0.625rem 0;
    border-bottom: 0.0625rem solid rgba(255,255,255,0.1);
}

.info-label {
    width: 8.125rem;
    font-weight: 600;
    color: #FFD700 !important;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.info-value {
    flex: 1;
    color: white !important;
    font-size: 1rem;
    font-weight: 500;
}

/* Código de referência */
code {
    background: #FFD700 !important;
    color: #0c2b4d !important;
    padding: 0.3125rem 0.625rem;
    border-radius: 0.3125rem;
    font-weight: bold;
}    

/* ============================================ */
/* CARDS DE QUALIDADE/DIFERENCIAL - PÁGINA SOBRE */
/* ============================================ */

.qualidade-section {
    padding: 4rem 0;
    background: #ffffff;
}

.diferenciais-titulo {
    text-align: center;
    margin-bottom: 3rem;
}

.diferenciais-titulo h3 {
    color: #0c2b4d;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.diferenciais-titulo h3:after {
    content: '';
    position: absolute;
    bottom: -0.625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.75rem;
    height: 0.1875rem;
    background: #FFD700;
}

.qualidade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
    margin-top: 2rem;
}

.qualidade-item {
    background: #f8f9fc;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 0.0625rem solid #eaeef2;
}

.qualidade-item:hover {
    transform: translateY(-0.3125rem);
    border-color: #FFD700;
    box-shadow: 0 0.625rem 1.5625rem rgba(255, 215, 0, 0.1);
}

.qualidade-icon {
    width: 4.375rem;
    height: 4.375rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: #0c2b4d;
    transition: all 0.3s ease;
}

.qualidade-item:hover .qualidade-icon {
    background: #FFD700;
    color: #0c2b4d;
}

.qualidade-item h4 {
    color: #0c2b4d;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.qualidade-item p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .qualidade-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .qualidade-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* CORREÇÃO PARA PÁGINAS DE LOGIN-OU-CADASTRO E PRÉ-INSCRIÇÃO */
/* ============================================ */

/* Garantir que o breadcrumb não atrapalhe o layout */
.breadcrumb {
    position: relative;
    top: 0;
    background: rgba(12, 43, 77, 0.7);
    margin-top: 6.25rem;
    padding: 0.625rem 0;
    z-index: 10;
}

/* Ajuste do hero para páginas sem imagem definida */
.hero-servicos {
    margin-top: 0;
    min-height: 18.75rem;
}

/* Container principal das páginas */
.auth-choice-section,
.pre-inscricao-section {
    padding: 3rem 0;
    background: #f8f9fc;
    min-height: calc(100vh - 300px);
}

/* Cards de curso em destaque */
.curso-destaque-card {
    background: linear-gradient(135deg, #0c2b4d 0%, #1a3f66 100%);
    border-radius: 1.25rem;
    padding: 1.875rem;
    color: white;
    height: 100%;
}

.curso-destaque-card h3 {
    color: #FFD700;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

/* Informações do curso */
.curso-info-detalhe {
    margin: 1.25rem 0;
}

.curso-info-detalhe .info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    border-bottom: 0.0625rem solid rgba(255,255,255,0.1);
}

.curso-info-detalhe .info-label {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.curso-info-detalhe .info-value {
    color: white;
    font-weight: 500;
}

/* Etapas do processo */
.processo-etapas {
    margin-top: 1.875rem;
    padding-top: 1.25rem;
    border-top: 0.0625rem solid rgba(255,255,255,0.2);
}

.processo-etapas h4 {
    color: #FFD700;
    font-size: 0.875rem;
    margin-bottom: 0.9375rem;
}

.etapas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.625rem;
}

.etapa {
    text-align: center;
    flex: 1;
}

.etapa-numero {
    width: 1.875rem;
    height: 1.875rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
}

.etapa.ativa .etapa-numero {
    background: #FFD700;
    color: #0c2b4d;
}

.etapa-texto {
    font-size: 0.625rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.etapa.ativa .etapa-texto {
    color: #FFD700;
}

.etapa-linha {
    flex: 1;
    height: 0.125rem;
    background: rgba(255,255,255,0.2);
}

/* Formulário */
.form-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.875rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.08);
}

.form-card h3 {
    color: #0c2b4d;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Grid responsivo */
.inscricao-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .inscricao-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .curso-destaque-card {
        position: static;
        margin-bottom: 1.25rem;
    }
}

/* Notificações */
.notification {
    position: fixed;
    top: 7.5rem;
    right: 1.25rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.15);
    padding: 1rem 1.25rem;
    min-width: 18.75rem;
    max-width: 25rem;
    z-index: 1000;
    border-left: 0.25rem solid;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-icon {
    width: 2rem;
    height: 2rem;
    background: #f0f0f0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.btn-recibo {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 1.875rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-recibo:hover {
    transform: translateY(-0.125rem);
}

/* ============================================ */
/* ESTILOS PARA PÁGINA DO CURSO (curso.php) */
/* ============================================ */

/* Container principal do curso */
.curso-container {
    margin-top: 7.5rem;
    padding: 0 5%;
}

/* Título do curso */
.curso-container h1 {
    color: var(--primary-dark);
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1rem;
    text-align: center;
}

/* Descrição do curso */
.curso-container > p {
    color: var(--text-light);
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 2rem auto;
    font-size: clamp(0.875rem, 3vw, 1rem);
}

/* Progresso do curso */
.progresso-wrapper {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 0.0625rem solid var(--gray-border);
}

.progresso-wrapper h3 {
    color: var(--primary-dark);
    font-size: clamp(0.875rem, 3vw, 1rem);
    margin-bottom: 0.75rem;
}

.progresso-bar-container {
    background: #e0e0e0;
    border-radius: 0.625rem;
    height: 0.75rem;
    overflow: hidden;
    margin: 0.75rem 0;
}

.progresso-bar-fill {
    background: var(--gold);
    height: 0.75rem;
    border-radius: 0.625rem;
    transition: width 0.5s ease;
}

.progresso-texto {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Lista de aulas */
.aulas-lista {
    margin-top: 2rem;
}

.aulas-lista h2 {
    color: var(--primary-dark);
    font-size: clamp(1.125rem, 4vw, 1.25rem);
    margin-bottom: 1.25rem;
}

/* Card de aula */
.aula-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    border: 0.0625rem solid var(--gray-border);
    transition: var(--transition);
}

.aula-card:hover {
    transform: translateY(-0.1875rem);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

/* Cabeçalho da aula */
.aula-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.aula-header h3 {
    color: var(--primary-dark);
    font-size: clamp(0.875rem, 3vw, 1rem);
    margin: 0;
}

/* Status da aula */
.aula-status-concluido {
    background: #d4edda;
    color: #155724;
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.aula-status-pendente {
    background: #fff3cd;
    color: #856404;
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Descrição da aula */
.aula-descricao {
    color: var(--text-light);
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Container do vídeo */
.video-container {
    margin: 1rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    border-radius: 0.5rem;
}

/* Placeholder quando não há vídeo */
.video-placeholder {
    background: #f0f0f0;
    padding: 2rem;
    text-align: center;
    border-radius: 0.5rem;
    margin: 1rem 0;
    color: var(--text-light);
}

/* Botão concluir aula */
.btn-concluir-aula {
    background: var(--success);
    color: var(--white);
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 1.875rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    margin-top: 0.75rem;
}

.btn-concluir-aula:hover {
    background: #218838;
    transform: translateY(-0.125rem);
}

/* Certificado */
.certificado-area {
    text-align: center;
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 1.25rem;
    color: var(--white);
}

.certificado-area h2 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.btn-certificado-curso {
    background: var(--gold);
    color: var(--primary-dark);
    padding: 0.75rem 1.875rem;
    border-radius: 1.875rem;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-certificado-curso:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(255, 215, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .curso-container {
        margin-top: 6rem;
    }
    
    .aula-card {
        padding: 1rem;
    }
    
    .aula-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .video-placeholder {
        padding: 1rem;
    }
    
    .certificado-area {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
}

/* ============================================ */
/* ESTILOS PARA O CURSO.PHP (AULAS) */
/* ============================================ */

/* Progresso */
.progresso-wrapper {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 0.0625rem solid var(--gray-border);
}

.progresso-wrapper h3 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.progresso-bar-container {
    background: #e0e0e0;
    border-radius: 0.625rem;
    height: 0.75rem;
    overflow: hidden;
    margin: 0.75rem 0;
}

.progresso-bar-fill {
    background: var(--gold);
    height: 0.75rem;
    border-radius: 0.625rem;
    transition: width 0.5s ease;
}

.progresso-texto {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Lista de aulas */
.aulas-lista {
    margin-top: 2rem;
}

.aulas-lista h2 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Card de aula */
.aula-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    border: 0.0625rem solid var(--gray-border);
    transition: var(--transition);
}

.aula-card:hover {
    transform: translateY(-0.1875rem);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.aula-card.aula-concluida {
    border-left: 0.25rem solid var(--success);
    opacity: 0.85;
}

/* Cabeçalho da aula */
.aula-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.aula-titulo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.aula-ordem {
    background: var(--primary-dark);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

.aula-header h3 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin: 0;
}

/* Status da aula */
.aula-status-concluido {
    background: #d4edda;
    color: #155724;
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.aula-status-pendente {
    background: #fff3cd;
    color: #856404;
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Descrição da aula */
.aula-descricao {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Placeholder do YouTube */
.youtube-placeholder {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 1rem;
    padding: 2rem 1.25rem;
    text-align: center;
    margin: 1rem 0;
}

.youtube-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.youtube-placeholder h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Botão Assistir no YouTube */
.btn-assistir-youtube {
    display: inline-block;
    background: #ff0000;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 1.875rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.875rem;
    transition: var(--transition);
    margin: 0.5rem 0;
}

.btn-assistir-youtube:hover {
    background: #cc0000;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(255, 0, 0, 0.3);
}

.youtube-hint {
    color: #888;
    font-size: 0.7rem;
    margin-top: 0.75rem;
}

/* Placeholder de vídeo em breve */
.video-placeholder {
    background: #f0f0f0;
    padding: 1.5rem;
    text-align: center;
    border-radius: 0.5rem;
    margin: 1rem 0;
    color: var(--text-light);
}

/* Botão concluir aula */
.btn-concluir-aula {
    background: var(--success);
    color: var(--white);
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 1.875rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    margin-top: 0.75rem;
}

.btn-concluir-aula:hover {
    background: #218838;
    transform: translateY(-0.125rem);
}

/* Certificado */
.certificado-area {
    text-align: center;
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 1.25rem;
    color: var(--white);
}

.certificado-area h2 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.btn-certificado-curso {
    background: var(--gold);
    color: var(--primary-dark);
    padding: 0.75rem 1.875rem;
    border-radius: 1.875rem;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-certificado-curso:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.3125rem 0.9375rem rgba(255, 215, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .aula-card {
        padding: 1rem;
    }
    
    .aula-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .aula-titulo {
        flex-wrap: wrap;
    }
    
    .youtube-placeholder {
        padding: 1.5rem 1rem;
    }
    
    .btn-assistir-youtube {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* Mensagem para assistir primeiro */
.mensagem-assista-primeiro {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    margin-top: 0.75rem;
    text-align: center;
}

/* Ações da aula */
.aula-actions {
    margin-top: 1rem;
}

.aviso-conclusao {
    font-size: 0.7rem;
    color: #ff9800;
    margin: 0.5rem 0 0 0;
    padding: 0.5rem 0.75rem;
    background: #fff3cd;
    border-radius: 0.5rem;
    display: inline-block;
}

/* Botão assistir */
.btn-assistir-youtube {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1.875rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-assistir-youtube:hover {
    background: #cc0000;
    transform: translateY(-0.125rem);
}

/* Botão concluir */
.btn-concluir-aula {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 1.875rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-concluir-aula:hover {
    background: #218838;
    transform: translateY(-0.125rem);
}

/* ============================================ */
/* CURSO PROFISSIONAL - LAYOUT MODERNO */
/* ============================================ */

.curso-profissional {
    padding: 3rem 0;
    background: #f8fafc;
    min-height: calc(100vh - 300px);
}

/* Progresso */
.progresso-wrapper {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.progresso-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progresso-label {
    font-weight: 600;
    color: #1a2a3a;
    font-size: 0.875rem;
}

.progresso-percentual {
    font-weight: 700;
    color: #FFD700;
    font-size: 1rem;
}

.progresso-bar-container {
    background: #e2e8f0;
    border-radius: 0.5rem;
    height: 0.5rem;
    overflow: hidden;
}

.progresso-bar-fill {
    background: #FFD700;
    height: 100%;
    border-radius: 0.5rem;
    transition: width 0.5s ease;
}

.progresso-texto {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Grid do curso */
.curso-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

@media (max-width: 992px) {
    .curso-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Player de vídeo */
.player-area {
    background: #0f172a;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.video-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    background: #000;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Navegação do player */
.player-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #1e293b;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nav-btn {
    background: #334155;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: #475569;
    transform: translateY(-1px);
}

.btn-marcar-concluido {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-marcar-concluido:hover {
    background: #059669;
    transform: translateY(-1px);
}

.aula-concluida-badge {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Playlist */
.playlist-area {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.playlist-area h3 {
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-bottom: 1px solid #eef2f6;
    font-size: 1rem;
    font-weight: 600;
    color: #1a2a3a;
    margin: 0;
}

.playlist {
    max-height: 500px;
    overflow-y: auto;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    text-decoration: none;
    border-bottom: 1px solid #f0f2f5;
    transition: all 0.3s;
}

.playlist-item:hover {
    background: #f8fafc;
}

.playlist-item.ativo {
    background: #fef9e6;
    border-left: 3px solid #FFD700;
}

.playlist-item.concluido {
    opacity: 0.7;
}

.playlist-numero {
    width: 2rem;
    height: 2rem;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
}

.playlist-item.ativo .playlist-numero {
    background: #FFD700;
    color: #1a2a3a;
}

.playlist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.playlist-modulo {
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.playlist-titulo {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a2a3a;
}

.playlist-item.ativo .playlist-titulo {
    color: #0f2b3d;
    font-weight: 600;
}

.playlist-status .status-concluido {
    color: #10b981;
    font-weight: bold;
}

/* Placeholder */
.video-placeholder {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-placeholder h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.video-placeholder p {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Certificado */
.certificado-area {
    margin-top: 2rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0f2b3d, #1a3a4f);
    border-radius: 1rem;
    color: white;
}

.certificado-area h2 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.btn-certificado-curso {
    display: inline-block;
    background: #FFD700;
    color: #0f2b3d;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-certificado-curso:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

/* Mensagem de assistir */
.assistir-mensagem {
    background: #fef9e6;
    color: #b45309;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Botão concluir */
.btn-marcar-concluido {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-marcar-concluido:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* ============================================ */
/* ADMIN - PAINEL ADMINISTRATIVO */
/* ============================================ */

/* Seção principal do admin */
.admin-section {
    padding: 2rem 0 4rem;
    background: #f8fafc;
    min-height: calc(100vh - 400px);
}

/* Grid de estatísticas */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Cards de estatísticas */
.admin-stat-card {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.05);
    border: 0.0625rem solid #eef2f6;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.1);
}

.admin-stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #0c2b4d, #1a3f66);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFD700;
}

.admin-stat-info {
    flex: 1;
}

.admin-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0c2b4d;
    line-height: 1.2;
}

.admin-stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ações do admin */
.admin-actions {
    margin-bottom: 2.5rem;
}

.admin-actions h2 {
    font-size: 1.25rem;
    color: #0c2b4d;
    margin-bottom: 1rem;
}

/* Grid de menu */
.admin-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .admin-menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Cards do menu */
.admin-menu-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    border: 0.0625rem solid #eef2f6;
    transition: all 0.3s ease;
}

.admin-menu-card:hover {
    transform: translateX(0.3125rem);
    border-color: #FFD700;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.05);
}

.menu-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.menu-info {
    flex: 1;
}

.menu-info h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0c2b4d;
    margin-bottom: 0.25rem;
}

.menu-info p {
    font-size: 0.7rem;
    color: #666;
}

.menu-arrow {
    color: #999;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.admin-menu-card:hover .menu-arrow {
    color: #FFD700;
    transform: translateX(0.1875rem);
}

/* ============================================ */
/* ADMIN - PAINEL ADMINISTRATIVO */
/* ============================================ */

/* Seção principal do admin */
.admin-section {
    padding: 2rem 0 4rem;
    background: #f8fafc;
    min-height: calc(100vh - 400px);
}

/* Grid de estatísticas */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Cards de estatísticas */
.admin-stat-card {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.05);
    border: 0.0625rem solid #eef2f6;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.1);
}

.admin-stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #0c2b4d, #1a3f66);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFD700;
}

.admin-stat-info {
    flex: 1;
}

.admin-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0c2b4d;
    line-height: 1.2;
}

.admin-stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ações do admin */
.admin-actions {
    margin-bottom: 2.5rem;
}

.admin-actions h2 {
    font-size: 1.25rem;
    color: #0c2b4d;
    margin-bottom: 1rem;
}

/* Grid de menu */
.admin-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .admin-menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Cards do menu */
.admin-menu-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    border: 0.0625rem solid #eef2f6;
    transition: all 0.3s ease;
}

.admin-menu-card:hover {
    transform: translateX(0.3125rem);
    border-color: #FFD700;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.05);
}

.menu-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.menu-info {
    flex: 1;
}

.menu-info h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0c2b4d;
    margin-bottom: 0.25rem;
}

.menu-info p {
    font-size: 0.7rem;
    color: #666;
}

.menu-arrow {
    color: #999;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.admin-menu-card:hover .menu-arrow {
    color: #FFD700;
    transform: translateX(0.1875rem);
}

/* Tabela admin */
.admin-table-wrapper {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 0.0625rem solid #eef2f6;
    margin-top: 1.5rem;
}

.admin-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-bottom: 0.0625rem solid #eef2f6;
}

.admin-table-header h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #0c2b4d;
    margin: 0;
}

.ver-todas {
    font-size: 0.75rem;
    color: #FFD700;
    text-decoration: none;
}

.ver-todas:hover {
    text-decoration: underline;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 0.0625rem solid #f0f2f5;
}

.admin-table th {
    background: #fafbfc;
    font-weight: 600;
    color: #0c2b4d;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    font-size: 0.8rem;
    color: #333;
}

@media (max-width: 768px) {
    .admin-table {
        display: block;
        overflow-x: auto;
    }
}

/* Badges de status */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.status-pre {
    background: #fef9e6;
    color: #b45309;
}

.status-pendente {
    background: #fff3cd;
    color: #856404;
}

.status-confirmado {
    background: #d4edda;
    color: #155724;
}

.status-outro {
    background: #e2e8f0;
    color: #333;
}

/* Badge de tipo de usuário */
.badge-tipo {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.badge-tipo.admin {
    background: #0c2b4d;
    color: white;
}

.badge-tipo.aluno {
    background: #e2e8f0;
    color: #333;
}

/* Status do usuário */
.status-ativo {
    background: #d4edda;
    color: #155724;
}

.status-inativo {
    background: #f8d7da;
    color: #721c24;
}

.status-bloqueado {
    background: #fff3cd;
    color: #856404;
}

/* Ações da tabela */
.actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-aprovar {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-aprovar:hover {
    background: #218838;
    transform: translateY(-0.0625rem);
}

.btn-recusar {
    background: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-recusar:hover {
    background: #c82333;
    transform: translateY(-0.0625rem);
}

.ver-comprovante {
    color: #0c2b4d;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
}

.ver-comprovante:hover {
    color: #FFD700;
}

.sem-comprovante {
    color: #999;
    font-size: 0.7rem;
}

.sem-registros {
    text-align: center;
    padding: 3rem;
    color: #666;
}

/* Botão recibo */
.btn-recibo {
    background: #FFD700;
    color: #0c2b4d;
    border: none;
    padding: 0.75rem 1.5625rem;
    border-radius: 1.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.3s ease;
}

.btn-recibo:hover {
    background: #e6c200;
    transform: translateY(-0.125rem);
}

/* Botão continuar */
.btn-continuar {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #FFD700;
    color: #0c2b4d;
}

.btn-continuar:hover {
    transform: translateY(-0.125rem);
}

/* Botão concluir aula */
.btn-concluir-aula {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.btn-concluir-aula:hover {
    background: #218838;
    transform: translateY(-0.125rem);
}

/* ============================================ */
/* ADMIN - GESTÃO DE CURSOS E AULAS */
/* ============================================ */

/* Botões de ação */
.btn-adicionar {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-adicionar:hover {
    background: #218838;
    transform: translateY(-0.125rem);
}

/* Botões da tabela */
.btn-editar {
    background: #FFD700;
    color: #0c2b4d;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.7rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-editar:hover {
    background: #e6c200;
    transform: translateY(-0.0625rem);
}

.btn-toggle {
    background: #17a2b8;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.7rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-toggle:hover {
    background: #138496;
    transform: translateY(-0.0625rem);
}

.btn-excluir {
    background: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.7rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-excluir:hover {
    background: #c82333;
    transform: translateY(-0.0625rem);
}

/* Filtro de aulas */
.filtro-aulas {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 0.0625rem solid #eef2f6;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filtro-aulas label {
    font-weight: 600;
    color: #0c2b4d;
}

.filtro-select {
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 0.0625rem solid #ddd;
    background: white;
}

/* Alertas */
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Formulário centralizado */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    margin-bottom: 1.5rem;
    color: #0c2b4d;
}

/* Ações do formulário */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.btn-cancelar {
    background: #6c757d;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-cancelar:hover {
    background: #5a6268;
    transform: translateY(-0.125rem);
}

.btn-salvar {
    background: #FFD700;
    color: #0c2b4d;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-salvar:hover {
    background: #e6c200;
    transform: translateY(-0.125rem);
}

/* Checkbox */
.checkbox-label {
    margin-left: 0.5rem;
    cursor: pointer;
}

/* Sem registros */
.sem-registros {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.sem-registros .btn-primary {
    margin-top: 1rem;
    display: inline-block;
}

/* ============================================ */
/* ESTILOS NOVOS - INSPIRADO NA ABOVE MOÇAMBIQUE */
/* ============================================ */

/* Seção de Filtros */
.filtros-cursos {
    padding: 2rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #eef2f6;
}
.filtros-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.filtro-btn {
    background: transparent;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #475569;
}
.filtro-btn:hover, .filtro-btn.active {
    background: #0c2b4d;
    border-color: #0c2b4d;
    color: white;
}

/* Grid de Cursos (melhoria) */
.grade-cursos {
    padding: 3rem 0 5rem;
    background: #f8fafc;
}

/* Cards de Curso (estilo profissional) */
.curso-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    display: block;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
}
.curso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.curso-card-inner {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.curso-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.badge-online {
    background: #dbeafe;
    color: #1e40af;
}
.badge-presencial {
    background: #dcfce7;
    color: #166534;
}
.curso-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.curso-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}
.curso-categoria {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.curso-descricao {
    color: #475569;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.curso-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    color: #334155;
}
.curso-preco {
    margin-bottom: 1.5rem;
}
.preco {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}
.sob-consulta {
    font-size: 1rem;
    color: #f59e0b;
}
.btn-curso {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-curso:hover {
    background: #FFD700;
    color: #0f172a;
}
/* Badge Híbrido */
.badge-hibrido {
    background: #fef3c7;
    color: #92400e;
}

/* ============================================ */
/* CARDS DE CURSOS ESTILO ABOVE MOÇAMBIQUE */
/* ============================================ */

/* Seção de Filtros */
.filtros-cursos {
    padding: 2rem 0;
    background: #ffffff;
    border-bottom: 1px solid #eef2f6;
    position: sticky;
    top: 80px;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.filtros-wrapper {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filtro-btn {
    background: transparent;
    border: 1.5px solid #e2e8f0;
    padding: 0.625rem 1.5rem;
    border-radius: 2.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #475569;
    font-family: inherit;
}

.filtro-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.filtro-btn.active {
    background: #0c2b4d;
    border-color: #0c2b4d;
    color: white;
    box-shadow: 0 4px 12px rgba(12, 43, 77, 0.2);
}

/* Grid de Cursos */
.grade-cursos {
    padding: 3rem 0 5rem;
    background: #f8fafc;
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

/* Card do Curso - Estilo Above Moçambique */
.curso-card {
    background: #ffffff;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    display: block;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.curso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 40px -16px rgba(12, 43, 77, 0.25);
}

.curso-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Imagem do Curso */
.curso-imagem {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #1a2a3a;
}

.curso-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.curso-card:hover .curso-imagem img {
    transform: scale(1.05);
}

/* Badge sobre a imagem */
.curso-imagem .curso-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
}

.badge-online {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: white;
}

.badge-presencial {
    background: linear-gradient(135deg, #166534, #22c55e);
    color: white;
}

.badge-hibrido {
    background: linear-gradient(135deg, #92400e, #f59e0b);
    color: white;
}

/* Conteúdo do Card */
.curso-conteudo {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.curso-conteudo h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
    line-height: 1.4;
}

.curso-categoria {
    font-size: 0.7rem;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    width: fit-content;
}

.curso-descricao {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.curso-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: #475569;
}

.curso-info-row span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.curso-carga {
    font-size: 0.75rem;
    color: #475569;
    margin-bottom: 1rem;
    background: #f8fafc;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
}

.curso-preco {
    margin-bottom: 1.25rem;
}

.preco {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c2b4d;
}

.sob-consulta {
    font-size: 1rem;
    color: #f59e0b;
    font-weight: 600;
}

/* Botão do Curso */
.btn-curso {
    background: #0c2b4d;
    color: white;
    text-align: center;
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.btn-curso:hover {
    background: #FFD700;
    color: #0c2b4d;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .cursos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .curso-imagem {
        height: 200px;
    }
    
    .curso-conteudo {
        padding: 1.25rem;
    }
    
    .filtros-wrapper {
        gap: 0.5rem;
    }
    
    .filtro-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .filtros-cursos {
        top: 70px;
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .curso-conteudo h3 {
        font-size: 1.125rem;
    }
    
    .preco {
        font-size: 1.25rem;
    }
    
    .btn-curso {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* Placeholder de imagem */
.curso-imagem img[src*="placeholder"] {
    object-fit: contain;
    padding: 2rem;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
}

/* ============================================ */
/* CARDS DE CURSOS - ESTILO ABOVE MOÇAMBIQUE */
/* ============================================ */

/* Seção de Filtros */
.filtros-cursos {
    padding: 2rem 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 98;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* Título das Modalidades */
.modalidades-titulo {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
}

/* Filtro por Modalidade */
.filtros-wrapper {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eef2f6;
}

.filtro-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 0.625rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #475569;
    font-family: inherit;
}

.filtro-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0c2b4d;
}

.filtro-btn.active {
    background: #0c2b4d;
    border-color: #0c2b4d;
    color: white;
    box-shadow: 0 2px 8px rgba(12, 43, 77, 0.15);
}

/* Título das Categorias */
.categorias-titulo {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
}

/* Filtro por Categoria - Estilo diferente */
.categoria-filtro-wrapper {
    margin-bottom: 1.5rem;
}

.categoria-select {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.categoria-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.813rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #475569;
    font-family: inherit;
}

.categoria-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0c2b4d;
}

.categoria-btn.active {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #0c2b4d;
    font-weight: 600;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

/* BARRA DE PESQUISA */
.busca-wrapper {
    margin-bottom: 1.5rem;
}

.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    font-size: 0.875rem;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: #0c2b4d;
    box-shadow: 0 0 0 3px rgba(12, 43, 77, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.875rem;
    pointer-events: none;
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1rem;
    display: none;
    padding: 0;
}

.search-clear:hover {
    color: #dc2626;
}

/* Resultado da busca */
.resultado-busca {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.813rem;
    color: #64748b;
}

.resultado-busca span {
    font-weight: 700;
    color: #0c2b4d;
}

/* Grade de Cursos */
.grade-cursos {
    padding: 3rem 0 5rem;
    background: #f8fafc;
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

/* Card do Curso */
.curso-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f6;
}

.curso-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.12);
}

.curso-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Imagem do Curso */
.curso-imagem {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #0c2b4d, #1a3f66);
}

.curso-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.curso-card:hover .curso-imagem img {
    transform: scale(1.05);
}

/* Badges */
.curso-badge {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    backdrop-filter: blur(4px);
}

.badge-online {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.badge-presencial {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
}

.badge-hibrido {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

/* Conteúdo do Card */
.curso-conteudo {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.curso-conteudo h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
    line-height: 1.35;
}

.curso-categoria {
    font-size: 0.65rem;
    color: #0c2b4d;
    background: rgba(12, 43, 77, 0.08);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    width: fit-content;
}

.curso-descricao {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.813rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Informações do Curso */
.curso-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0.875rem;
}

.curso-info-row span {
    font-size: 0.7rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

.curso-carga {
    font-size: 0.7rem;
    color: #475569;
    margin-bottom: 0.875rem;
    background: #f8fafc;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    width: fit-content;
}

/* Preço */
.curso-preco {
    margin-bottom: 1rem;
}

.preco {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0c2b4d;
}

.sob-consulta {
    font-size: 0.75rem;
    color: #f59e0b;
    font-weight: 700;
    background: #fef3c7;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    display: inline-block;
}

/* Botão do Curso */
.btn-curso {
    background: #0c2b4d;
    color: white;
    text-align: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.813rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.btn-curso:hover {
    background: #FFD700;
    color: #0c2b4d;
    transform: translateY(-2px);
}

/* Mensagem de nenhum curso */
.nenhum-curso {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 1rem;
    margin: 2rem 0;
    grid-column: 1/-1;
}

.nenhum-curso p {
    color: #64748b;
    font-size: 1rem;
}

/* Animações */
.curso-card {
    animation: fadeInUp 0.4s ease backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.curso-card:nth-child(1) { animation-delay: 0.05s; }
.curso-card:nth-child(2) { animation-delay: 0.1s; }
.curso-card:nth-child(3) { animation-delay: 0.15s; }
.curso-card:nth-child(4) { animation-delay: 0.2s; }
.curso-card:nth-child(5) { animation-delay: 0.25s; }
.curso-card:nth-child(6) { animation-delay: 0.3s; }
.curso-card:nth-child(7) { animation-delay: 0.35s; }
.curso-card:nth-child(8) { animation-delay: 0.4s; }
.curso-card:nth-child(9) { animation-delay: 0.45s; }
.curso-card:nth-child(10) { animation-delay: 0.5s; }

/* Responsividade */
@media (max-width: 768px) {
    .cursos-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .curso-imagem {
        height: 160px;
    }
    
    .curso-conteudo {
        padding: 1rem;
    }
    
    .filtro-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .categoria-btn {
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
    }
    
    .search-box {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .curso-conteudo h3 {
        font-size: 1rem;
    }
    
    .preco {
        font-size: 1.125rem;
    }
    
    .btn-curso {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Estilo adicional para o filtro de categorias */
.categoria-filtro-wrapper {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eef2f6;
}

.categoria-select {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.categoria-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.813rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #475569;
    font-family: inherit;
}

.categoria-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0c2b4d;
}

.categoria-btn.active {
    background: #0c2b4d;
    border-color: #0c2b4d;
    color: white;
}

.nenhum-curso {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 1rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .categoria-btn {
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
    }
}

/* ============================================ */
/* SEÇÃO DE FILTROS - SEM STICKY (NÃO FIXA) */
/* ============================================ */

.filtros-cursos {
    padding: 2rem 0;
    background: #ffffff;
    border-bottom: 1px solid #eef2f6;
    /* REMOVA a linha position: sticky e top */
    position: relative;
    top: auto;
    z-index: 1;
}

/* Título das Modalidades */
.modalidades-titulo {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
}

/* Filtro por Modalidade */
.filtros-wrapper {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eef2f6;
}

.filtro-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 0.625rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #475569;
    font-family: inherit;
}

.filtro-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0c2b4d;
}

.filtro-btn.active {
    background: #0c2b4d;
    border-color: #0c2b4d;
    color: white;
    box-shadow: 0 2px 8px rgba(12, 43, 77, 0.15);
}

/* Título das Categorias */
.categorias-titulo {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
}

/* Filtro por Categoria */
.categoria-filtro-wrapper {
    margin-bottom: 1.5rem;
}

.categoria-select {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.categoria-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.813rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #475569;
    font-family: inherit;
}

.categoria-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0c2b4d;
}

.categoria-btn.active {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #0c2b4d;
    font-weight: 600;
}

/* BARRA DE PESQUISA */
.busca-wrapper {
    margin-bottom: 1.5rem;
}

.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    font-size: 0.875rem;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: #0c2b4d;
    box-shadow: 0 0 0 3px rgba(12, 43, 77, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.875rem;
    pointer-events: none;
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1rem;
    display: none;
    padding: 0;
}

.search-clear:hover {
    color: #dc2626;
}

/* Resultado da busca */
.resultado-busca {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.813rem;
    color: #64748b;
}

.resultado-busca span {
    font-weight: 700;
    color: #0c2b4d;
}

/* Responsividade */
@media (max-width: 768px) {
    .filtro-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .categoria-btn {
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
    }
    
    .search-box {
        max-width: 100%;
    }
}

/* ============================================ */
/* PÁGINA DE IDENTIFICAÇÃO (LOGIN/CADASTRO) */
/* ============================================ */

/* Seção principal */
.auth-choice-section {
    padding: 4rem 0;
    background: #f8fafc;
    min-height: calc(100vh - 400px);
}

.auth-choice-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Card do curso selecionado */
.auth-curso-info-mini {
    margin-bottom: 2rem;
    text-align: center;
}

.auth-curso-info-mini h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.auth-curso-mini-card {
    background: white;
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.auth-curso-nome {
    font-weight: 700;
    color: #0c2b4d;
    font-size: 0.875rem;
}

.auth-curso-codigo {
    font-size: 0.75rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
}

/* Card principal */
.auth-choice-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
}

.auth-choice-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c2b4d;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-subtitulo {
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

/* Botões de escolha */
.auth-choice-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.auth-btn-choice {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.auth-btn-choice:hover {
    background: #ffffff;
    border-color: #0c2b4d;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.auth-choice-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.auth-btn-choice:hover .auth-choice-icon {
    background: #0c2b4d;
}

.auth-choice-content {
    flex: 1;
}

.auth-choice-title {
    display: block;
    font-weight: 700;
    color: #0c2b4d;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.auth-choice-desc {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
}

.auth-choice-arrow {
    color: #94a3b8;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.auth-btn-choice:hover .auth-choice-arrow {
    color: #0c2b4d;
    transform: translateX(4px);
}

/* Benefícios */
.auth-beneficios-choice {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid #eef2f6;
}

.auth-beneficios-choice h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 1rem;
    text-align: center;
}

.auth-beneficios-choice ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-beneficios-choice li {
    font-size: 0.813rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-beneficios-choice li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 0.875rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .auth-choice-section {
        padding: 2rem 0;
    }
    
    .auth-choice-card {
        padding: 1.5rem;
    }
    
    .auth-choice-card h2 {
        font-size: 1.125rem;
    }
    
    .auth-btn-choice {
        padding: 1rem;
    }
    
    .auth-choice-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
    
    .auth-choice-title {
        font-size: 0.875rem;
    }
    
    .auth-choice-desc {
        font-size: 0.7rem;
    }
    
    .auth-beneficios-choice ul {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .auth-beneficios-choice li {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .auth-curso-mini-card {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .auth-btn-choice {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
    
    .auth-choice-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .auth-choice-content {
        text-align: center;
    }
    
    .auth-choice-arrow {
        display: none;
    }
}
/* ============================================ */
/* INFORMAÇÃO BÁSICA IATRE - INDEX */
/* ============================================ */

.info-iatre {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #eef2f6;
}

.info-iatre-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-iatre-texto {
    font-size: clamp(0.875rem, 3vw, 1rem);
    line-height: 1.6;
    color: #334155;
    margin-bottom: 1.25rem;
}

.info-iatre-texto strong {
    color: #0c2b4d;
    font-weight: 700;
}

.info-iatre-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.info-iatre-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.3s ease;
}

.info-iatre-badges .badge:hover {
    border-color: #0c2b4d;
    background: #f8fafc;
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 0.875rem;
}

/* ============================================ */
/* BOTÕES DE AUTENTICAÇÃO (Entrar + Criar Conta) */
/* ============================================ */

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-login,
.btn-cadastro {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.btn-login {
    background: transparent;
    color: #0c2b4d;
    border: 1px solid #cbd5e1;
}

.btn-login:hover {
    background: #f8fafc;
    border-color: #0c2b4d;
    transform: translateY(-2px);
}

.btn-cadastro {
    background: #0c2b4d;
    color: white;
    border: 1px solid #0c2b4d;
}

.btn-cadastro:hover {
    background: #1a3f66;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 43, 77, 0.2);
}

/* ============================================ */
/* FOOTER MODERNO */
/* ============================================ */

.footer {
    background: #0a1a2e;
    color: #94a3b8;
    padding: 3rem 0 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-col h4 {
    color: #FFD700;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 0.125rem;
    background: #FFD700;
}

.footer-logo img {
    max-height: 3.5rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-descricao {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    color: #cbd5e1;
}

.social-icon:hover {
    background: #FFD700;
    color: #0a1a2e;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 0.25rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
}

.contact-icon {
    font-size: 0.875rem;
}

.footer-contact-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #FFD700;
}

.newsletter-text {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    color: #94a3b8;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.7rem;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    width: 2rem;
    height: 2rem;
    background: #FFD700;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    background: #e6c200;
}

.footer-bottom {
    text-align: center;
    padding: 1.25rem 0;
    font-size: 0.7rem;
    color: #94a3b8;
}

.footer-bottom p {
    margin: 0.25rem 0;
}

/* ============================================ */
/* AJUSTE RESPONSIVO PARA BOTÕES AUTH */
/* ============================================ */

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 18.75rem;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 6.25rem 1.5rem 1.5rem;
        gap: 1rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu > a {
        font-size: 0.875rem;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid #eef2f6;
    }
    
    .auth-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .btn-login,
    .btn-cadastro {
        width: 100%;
        justify-content: center;
        padding: 0.625rem;
    }
    
    .user-menu {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .user-menu .btn-perfil {
        width: 100%;
        justify-content: center;
    }
    
    .tradutor {
        width: 100%;
    }
    
    .tradutor-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/* AJUSTE HERO OVERLAY */
/* ============================================ */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 43, 77, 0.8) 0%, rgba(12, 43, 77, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
/* ============================================ */
/* FOOTER PROFISSIONAL */
/* ============================================ */

.footer {
    background: #0a1a2e;
    color: #94a3b8;
    padding: 3rem 0 0;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 0.125rem;
    background: #FFD700;
}

.footer-descricao {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 0.25rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.footer-contact .atuacao {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0.25rem 0;
    font-size: 0.75rem;
    color: #94a3b8;
}

.footer-bottom .excelencia {
    color: #FFD700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
}

/* ============================================ */
/* INFORMAÇÃO IATRE COM TÍTULO */
/* ============================================ */

.info-iatre {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.info-iatre-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-iatre-texto {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
}

.info-iatre-texto strong {
    color: #0c2b4d;
    font-weight: 700;
}

/* ============================================ */
/* CARDS DE CURSOS UNIFORMES E PROFISSIONAIS */
/* ============================================ */

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
    margin: 2rem 0;
}

.curso-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.curso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.12);
    border-color: #FFD700;
}

.curso-imagem {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #0c2b4d, #1a3f66);
}

.curso-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.curso-card:hover .curso-imagem img {
    transform: scale(1.05);
}

.curso-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-online {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.badge-presencial {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
}

.badge-hibrido {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.curso-conteudo {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.curso-conteudo h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
    line-height: 1.35;
}

.curso-categoria {
    font-size: 0.65rem;
    color: #0c2b4d;
    background: rgba(12, 43, 77, 0.08);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    width: fit-content;
}

.curso-descricao {
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.curso-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
}

.curso-info-row span {
    font-size: 0.7rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.curso-carga {
    font-size: 0.7rem;
    color: #475569;
    margin-bottom: 1rem;
    background: #f8fafc;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
}

.curso-preco {
    margin-bottom: 1.25rem;
}

.preco {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0c2b4d;
}

.sob-consulta {
    font-size: 0.75rem;
    color: #f59e0b;
    font-weight: 700;
    background: #fef3c7;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    display: inline-block;
}

.btn-curso {
    background: #0c2b4d;
    color: white;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.btn-curso:hover {
    background: #FFD700;
    color: #0c2b4d;
    transform: translateY(-2px);
}

/* Nenhum curso encontrado */
.nenhum-curso {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 1rem;
    margin: 2rem 0;
    grid-column: 1/-1;
}

/* Animações dos cards */
.curso-card {
    animation: fadeInUp 0.4s ease backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.curso-card:nth-child(1) { animation-delay: 0.05s; }
.curso-card:nth-child(2) { animation-delay: 0.1s; }
.curso-card:nth-child(3) { animation-delay: 0.15s; }
.curso-card:nth-child(4) { animation-delay: 0.2s; }
.curso-card:nth-child(5) { animation-delay: 0.25s; }
.curso-card:nth-child(6) { animation-delay: 0.3s; }

/* Responsividade */
@media (max-width: 768px) {
    .cursos-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .curso-imagem {
        height: 180px;
    }
    
    .curso-conteudo {
        padding: 1.2rem;
    }
    
    .curso-conteudo h3 {
        font-size: 1rem;
    }
    
    .preco {
        font-size: 1.1rem;
    }
    
    .btn-curso {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .curso-info-row {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* ============================================ */
/* BOTÕES AUTH (Entrar + Criar Conta) */
/* ============================================ */

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-login,
.btn-cadastro {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.btn-login {
    background: transparent;
    color: #0c2b4d;
    border: 1px solid #cbd5e1;
}

.btn-login:hover {
    background: #f8fafc;
    border-color: #0c2b4d;
    transform: translateY(-2px);
}

.btn-cadastro {
    background: #0c2b4d;
    color: white;
    border: 1px solid #0c2b4d;
}

.btn-cadastro:hover {
    background: #1a3f66;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 43, 77, 0.2);
}

/* Responsividade para botões auth */
@media (max-width: 768px) {
    .auth-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .btn-login,
    .btn-cadastro {
        width: 100%;
        justify-content: center;
        padding: 0.6rem;
    }
}
/* ============================================ */
/* IMPORTAÇÃO DE FONTES */
/* ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* ============================================ */
/* RESET BÁSICO E VARIÁVEIS GLOBAIS */
/* ============================================ */

:root {
    --primary-dark: #0c2b4d;
    --primary-light: #1a3f66;
    --gold: #FFD700;
    --gold-dark: #e6c200;
    --gray-bg: #f4f6f9;
    --gray-light: #f8f9fc;
    --gray-border: #eaeef2;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2rem;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Apple Color Emoji', 'Noto Color Emoji', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gray-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.5;
}

/* ============================================ */
/* TÍTULOS GLOBAIS - FONTE PLAYFAIR DISPLAY */
/* ============================================ */

h1, h2, h3, h4, h5, h6,
.section-header h2,
.hero h1,
.hero h1 .destaque,
.porque-iatre-header h2,
.modalidade-card h3,
.area-card h3,
.curso-card h3,
.curso-conteudo h3,
.parcerias h2,
.footer-col h3,
.footer-col h4,
.menu > a,
.diferenciais-titulo h3,
.qualidade-item h4,
.citacao-nome,
.numero-rotulo,
.cta-content h2,
.info-card h3,
.form-card h3,
.cadastro-header h2,
.login-header h2,
.admin-stat-number,
.admin-table-header h2,
.menu-info h3,
.playlist-area h3,
.certificado-area h2,
.curso-container h1,
.aulas-lista h2,
.progresso-wrapper h3,
.vmv-card h3,
.categoria-card h3,
.pesquisa-wrapper h2,
.auth-choice-card h2,
.modalidades-titulo,
.categorias-titulo,
.breadcrumb a,
.breadcrumb span {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* Textos comuns - Segoe UI */
p, span, li, a, button, input, textarea, select,
.curso-descricao,
.area-card p,
.modalidade-card p,
.section-subtitle,
.hero-buttons a,
.btn-primary, .btn-secondary, .btn-curso,
.footer-descricao,
.footer-links a,
.footer-contact li,
.parcerias-texto,
.curso-info-row span,
.curso-categoria,
.badge,
.area-link,
.info-content p,
.info-content a,
.social-icon,
.newsletter-form input,
.newsletter-form button,
.auth-choice-desc,
.auth-beneficios-choice li,
.pais-item,
.parcerias-subtitulo,
.hero-sobre-description,
.hero-sobre-texto,
.sobre-descricao p,
.mensagem-texto,
.assinatura,
.cargo,
.qualidade-item p,
.numero-valor,
.cta-content p,
.form-group label,
.form-group input,
.checkbox-group label,
.btn-enviar,
.btn-login, .btn-cadastro,
.tradutor-btn,
.tradutor-dropdown a,
.user-menu .btn-perfil,
.user-menu .btn-sair,
.notification-content p,
.secao-aluno h2,
.inscricao-status,
.status-badge,
.aula-descricao,
.aula-header h3,
.video-placeholder p,
.btn-assistir-youtube,
.btn-concluir-aula,
.playlist-titulo,
.playlist-modulo,
.nav-btn,
.btn-marcar-concluido,
.curso-badge,
.curso-preco .preco,
.sob-consulta,
.admin-stat-label,
.admin-table th,
.admin-table td,
.ver-todas,
.btn-editar, .btn-excluir, .btn-toggle,
.bank-full-dados td,
.breadcrumb {
    font-family: 'Segoe UI', 'Apple Color Emoji', 'Noto Color Emoji', Tahoma, Geneva, Verdana, sans-serif;
}

/* ============================================ */
/* HEADER */
/* ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    min-height: clamp(4rem, 10vw, 5rem);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    max-height: 3.5rem;
    width: auto;
}

.menu-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-hamburger span {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background: var(--primary-dark);
    margin: 0.25rem 0;
    transition: var(--transition);
}

.menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu > a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.menu > a:hover,
.menu > a.ativo {
    color: var(--gold);
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-login,
.btn-cadastro {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-login {
    background: transparent;
    color: var(--primary-dark);
    border: 1px solid #cbd5e1;
}

.btn-login:hover {
    background: var(--gray-light);
    border-color: var(--primary-dark);
}

.btn-cadastro {
    background: var(--primary-dark);
    color: white;
    border: 1px solid var(--primary-dark);
}

.btn-cadastro:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.tradutor {
    position: relative;
}

.tradutor-btn {
    background: var(--gray-light);
    color: var(--primary-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tradutor-dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    min-width: 10rem;
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
    overflow: hidden;
    z-index: 1;
}

.tradutor:hover .tradutor-dropdown {
    display: block;
}

.tradutor-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.75rem;
    transition: var(--transition);
}

.tradutor-dropdown a:hover {
    background: var(--gray-light);
    color: var(--gold);
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */

.hero, .hero-servicos, .hero-sobre, .hero-contactos {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 5rem;
}

.hero-overlay,
.hero-servicos::before,
.hero-sobre::before,
.hero-contactos::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 43, 77, 0.65), rgba(12, 43, 77, 0.5));
    z-index: 1;
}

.hero-content,
.hero-servicos-content,
.hero-sobre-content,
.hero-contactos-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 5%;
}

.hero h1,
.hero-servicos h1,
.hero-sobre-content h1,
.hero-contactos h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 1px;
}

.hero h1 .destaque,
.hero-servicos .destaque-servicos,
.hero-sobre-content .destaque-sobre,
.hero-contactos .destaque-contacto {
    color: var(--gold);
    font-size: clamp(1rem, 4vw, 1.5rem);
    display: block;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(12, 43, 77, 0.7);
    padding: 0.75rem 0;
    margin-top: 5rem;
    z-index: 10;
    position: relative;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.75rem;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
    font-size: 0.75rem;
}

/* ============================================ */
/* CONTAINER */
/* ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ============================================ */
/* SEÇÃO POR QUE IATRE */
/* ============================================ */

.porque-iatre {
    padding: 5rem 0;
    background: white;
}

.porque-iatre-header {
    text-align: center;
    margin-bottom: 3rem;
}

.porque-iatre-header h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.porque-iatre-header .subtitulo {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.porque-iatre-header .linha-dourada {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
}

.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.modalidade-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-border);
}

.modalidade-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.modalidade-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.modalidade-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.modalidade-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================ */
/* SEÇÃO ÁREAS DE ATUAÇÃO */
/* ============================================ */

.areas-atuacao {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 0.875rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.area-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid var(--gray-border);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.area-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(12, 43, 77, 0.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.area-card:hover .area-icon {
    background: var(--gold);
    color: var(--primary-dark);
}

.area-icon svg {
    width: 2rem;
    height: 2rem;
}

.area-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.area-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.area-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

.area-link:hover {
    color: var(--gold);
    gap: 0.5rem;
}

.areas-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================ */
/* SEÇÃO PARCERIAS */
/* ============================================ */

.parcerias {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
    border-top: 1px solid rgba(12, 43, 77, 0.08);
    border-bottom: 1px solid rgba(12, 43, 77, 0.08);
}

.parcerias h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    color: var(--primary-dark);
}

.parcerias h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.parcerias-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.875rem;
    margin: 2.5rem auto;
    max-width: 900px;
}

.pais-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 2.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.pais-item:hover {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.parcerias-texto {
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
    border-top: 1px dashed #e2e8f0;
    padding-top: 1.5rem;
}

/* ============================================ */
/* SEÇÃO SOBRE (PÁGINA SOBRE) */
/* ============================================ */

.sobre {
    padding: 4rem 0;
    background: white;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.sobre-conteudo h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.sobre-descricao p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.destaque-paragrafo {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.mensagem-diretor-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    position: relative;
}

.aspas {
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: Georgia, serif;
}

.mensagem-texto {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.assinatura-wrapper {
    text-align: right;
}

.assinatura {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.cargo {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ============================================ */
/* SEÇÃO QUALIDADE/DIFERENCIAIS */
/* ============================================ */

.qualidade-section {
    padding: 4rem 0;
    background: #ffffff;
}

.diferenciais-titulo {
    text-align: center;
    margin-bottom: 3rem;
}

.diferenciais-titulo h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.diferenciais-titulo h3:after {
    content: '';
    position: absolute;
    bottom: -0.625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.75rem;
    height: 0.1875rem;
    background: var(--gold);
}

.qualidade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
    margin-top: 2rem;
}

.qualidade-item {
    background: #f8f9fc;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 0.0625rem solid #eaeef2;
}

.qualidade-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 0.625rem 1.5625rem rgba(255, 215, 0, 0.1);
}

.qualidade-icon {
    width: 4.375rem;
    height: 4.375rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.qualidade-item:hover .qualidade-icon {
    background: var(--gold);
    color: var(--primary-dark);
}

.qualidade-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: var(--primary-dark);
}

.qualidade-item p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ============================================ */
/* SEÇÃO NÚMEROS */
/* ============================================ */

.numeros-section {
    padding: 4rem 0;
    background: var(--white);
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
    text-align: center;
}

.numero-item {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-radius: 1rem;
    border: 0.0625rem solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.numero-item:hover {
    transform: translateY(-5px);
}

.numero-valor {
    display: block;
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.numero-rotulo {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* SEÇÃO CTA */
/* ============================================ */

.cta-section {
    padding: 4rem 0;
    background: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================ */
/* CARDS DE CURSOS */
/* ============================================ */

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.curso-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.curso-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.curso-imagem {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.curso-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.curso-card:hover .curso-imagem img {
    transform: scale(1.05);
}

.curso-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-online {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.badge-presencial {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
}

.curso-conteudo {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.curso-conteudo h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    line-height: 1.35;
}

.curso-categoria {
    font-size: 0.65rem;
    color: var(--primary-dark);
    background: rgba(12, 43, 77, 0.08);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    width: fit-content;
}

.curso-descricao {
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.curso-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
}

.curso-info-row span {
    font-size: 0.7rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.curso-preco {
    margin-bottom: 1.25rem;
}

.preco {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.btn-curso {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
    cursor: pointer;
    border: none;
}

.btn-curso:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================ */
/* FOOTER */
/* ============================================ */

.footer {
    background: #0a1a2e;
    color: #94a3b8;
    padding: 3rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--gold);
}

.footer-descricao {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.25rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.footer-contact .atuacao {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.75rem;
    margin: 0.25rem 0;
}

.footer-bottom .excelencia {
    color: var(--gold);
    font-size: 0.7rem;
}

/* ============================================ */
/* PÁGINA DE CONTACTOS */
/* ============================================ */

.contactos-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.contactos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.info-card,
.form-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 0.0625rem solid var(--gray-border);
}

.info-card h3,
.form-card h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.info-card h3::after,
.form-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 0.1875rem;
    background: var(--gold);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 0.0625rem solid var(--gray-border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.info-content p,
.info-content a {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: none;
}

.info-content a:hover {
    color: var(--gold);
}

/* ============================================ */
/* RESPONSIVIDADE */
/* ============================================ */

@media (max-width: 992px) {
    .areas-grid,
    .qualidade-grid,
    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-hamburger {
        display: block;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 1.5rem 1.5rem;
        gap: 1rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu > a {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--gray-border);
    }
    
    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-login,
    .btn-cadastro {
        width: 100%;
        justify-content: center;
    }
    
    .modalidades-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid,
    .qualidade-grid,
    .numeros-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cursos-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons a {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.area-card, .modalidade-card, .curso-card, .qualidade-item, .numero-item {
    animation: fadeInUp 0.5s ease backwards;
}

.area-card:nth-child(1) { animation-delay: 0.05s; }
.area-card:nth-child(2) { animation-delay: 0.1s; }
.area-card:nth-child(3) { animation-delay: 0.15s; }
.area-card:nth-child(4) { animation-delay: 0.2s; }
/* ============================================ */
/* HERO SECTION - SEM BARRA BRANCA */
/* ============================================ */

.hero, .hero-servicos, .hero-sobre, .hero-contactos {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 0; /* Remove a margem superior */
    padding-top: 5rem; /* Compensa o header fixo */
}

.hero-overlay,
.hero-servicos::before,
.hero-sobre::before,
.hero-contactos::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 43, 77, 0.65), rgba(12, 43, 77, 0.5));
    z-index: 1;
    content: '';
}

.hero-content,
.hero-servicos-content,
.hero-sobre-content,
.hero-contactos-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 5%;
}

.hero h1,
.hero-servicos h1,
.hero-sobre-content h1,
.hero-contactos h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 1px;
}

.hero h1 .destaque,
.hero-servicos .destaque-servicos,
.hero-sobre-content .destaque-sobre,
.hero-contactos .destaque-contacto {
    color: var(--gold);
    font-weight: 700;
}

.hero-sobre-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.hero-sobre-texto {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
}

/* ============================================ */
/* BREADCRUMB - CORRIGIDO SEM ESPAÇO BRANCO */
/* ============================================ */

.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
    margin-top: 0;
    z-index: 10;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.75rem;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
    font-size: 0.75rem;
}

/* ============================================ */
/* HEADER - FIXO NO TOPO */
/* ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    min-height: clamp(4rem, 10vw, 5rem);
}
/* ============================================ */
/* HERO SECTION - PÁGINAS SOBRE, SERVIÇOS, CONTACTOS */
/* ============================================ */

.hero-servicos,
.hero-sobre,
.hero-contactos {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding-top: 5rem;
}

.hero-servicos::before,
.hero-sobre::before,
.hero-contactos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 43, 77, 0.65);
    z-index: 1;
}

.hero-servicos-content,
.hero-sobre-content,
.hero-contactos-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.hero-servicos h1,
.hero-sobre-content h1,
.hero-contactos h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 1px;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* Palavra destacada ao lado (inline) */
.hero-servicos .destaque-servicos,
.hero-sobre-content .destaque-sobre,
.hero-contactos .destaque-contacto {
    color: var(--gold);
    font-weight: 800;
    font-size: inherit;
    display: inline;
}

.hero-sobre-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.hero-sobre-texto,
.hero-servicos p,
.hero-contactos p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 1rem auto 0;
    color: rgba(255,255,255,0.85);
    font-family: 'Segoe UI', sans-serif;
}
/* ============================================ */
/* HERO CORRIGIDO - MESMO TAMANHO E TRANSPARÊNCIA */
/* ============================================ */

.hero-servicos,
.hero-sobre,
.hero-contactos {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding-top: 5rem;
}

.hero-servicos::before,
.hero-sobre::before,
.hero-contactos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 43, 77, 0.65);
    z-index: 1;
}

.hero-servicos-content,
.hero-sobre-content,
.hero-contactos-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Palavra destacada ao lado (inline) e mesmo tamanho */
.hero-servicos .destaque-servicos,
.hero-sobre-content .destaque-sobre,
.hero-contactos .destaque-contacto {
    color: var(--gold);
    font-weight: 800;
    font-size: inherit;
    display: inline;
}

.hero-servicos h1,
.hero-sobre-content h1,
.hero-contactos h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.hero-sobre-description,
.hero-servicos p,
.hero-contactos p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.hero-sobre-texto {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
}
/* ============================================ */
/* SEÇÃO DIFERENCIAIS - MESMO ESTILO DA HOME */
/* ============================================ */

.diferenciais-home {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.diferenciais-home .modalidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.diferenciais-home .modalidade-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-border);
}

.diferenciais-home .modalidade-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.diferenciais-home .modalidade-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.diferenciais-home .modalidade-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.diferenciais-home .modalidade-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .diferenciais-home .modalidades-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ============================================ */
/* VMV CARDS (MISSÃO, VISÃO, VALORES) */
/* ============================================ */

.vmv-section {
    padding: 4rem 0;
    background: white;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vmv-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-border);
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vmv-card:hover::before {
    transform: scaleX(1);
}

.vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vmv-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.vmv-card:hover .vmv-icon {
    background: var(--gold);
    color: var(--primary-dark);
    transform: rotateY(180deg);
}

.vmv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.vmv-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* ============================================ */
/* HERO CORRIGIDO - IMAGENS MAIORES */
/* ============================================ */

.hero-servicos,
.hero-sobre,
.hero-contactos {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding-top: 5rem;
}

.hero-servicos::before,
.hero-sobre::before,
.hero-contactos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 43, 77, 0.65);
    z-index: 1;
}

.hero-servicos-content,
.hero-sobre-content,
.hero-contactos-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-servicos .destaque-servicos,
.hero-sobre-content .destaque-sobre,
.hero-contactos .destaque-contacto {
    color: var(--gold);
    font-weight: 800;
    font-size: inherit;
    display: inline;
}

.hero-servicos h1,
.hero-sobre-content h1,
.hero-contactos h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.hero-sobre-description,
.hero-servicos p,
.hero-contactos p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.hero-sobre-texto {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,0.85);
}
/* ============================================ */
/* NÚMEROS CENTRALIZADOS - APENAS 2 CARDS */
/* ============================================ */

.numeros-section-central {
    padding: 4rem 0;
    background: var(--white);
}

.numeros-grid-central {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.numero-item-central {
    flex: 1;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-radius: 1rem;
    border: 0.0625rem solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    text-align: center;
}

.numero-item-central:hover {
    transform: translateY(-5px);
}

.numero-item-central .numero-valor {
    display: block;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.numero-item-central .numero-rotulo {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .numeros-grid-central {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 300px;
    }
    
    .numero-item-central {
        width: 100%;
    }
}

/* ============================================ */
/* BOTÃO CTA VISÍVEL - REFORÇADO */
/* ============================================ */

.cta-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.cta-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #FFD700;
    color: #0c2b4d;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-buttons .btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #0c2b4d;
    border: 2px solid #0c2b4d;
    padding: 0.875rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-buttons .btn-secondary:hover {
    background: #0c2b4d;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 80%;
        text-align: center;
    }
}
/* ============================================ */
/* HERO COM BARRA DE PESQUISA */
/* ============================================ */

.hero-servicos {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding-top: 5rem;
}

.hero-servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 43, 77, 0.7);
    z-index: 1;
}

.hero-servicos-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-servicos h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.hero-servicos .destaque-servicos {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

/* Barra de pesquisa no hero */
.hero-search {
    max-width: 500px;
    margin: 1.5rem auto 0;
}

.search-box-hero {
    position: relative;
    width: 100%;
}

.search-input-hero {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    border-radius: 3rem;
    font-size: 1rem;
    background: white;
    outline: none;
    transition: all 0.3s ease;
}

.search-input-hero:focus {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.search-box-hero .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #999;
}

.search-clear-hero {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
    display: none;
}

.search-clear-hero:hover {
    color: #dc3545;
}

/* ============================================ */
/* LAYOUT CATÁLOGO - FILTROS LATERAL + CURSOS */
/* ============================================ */

.catalogo-section {
    padding: 3rem 0;
    background: #f8fafc;
}

.catalogo-layout {
    display: flex;
    gap: 2.5rem;
}

/* Sidebar de filtros */
.filtros-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    height: fit-content;
    position: sticky;
    top: 5rem;
}

.filtros-sidebar h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.filtro-grupo {
    margin-bottom: 1.5rem;
}

.filtro-grupo h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filtro-lista {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filtro-cat-btn,
.filtro-modalidade-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 0.75rem;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    font-family: 'Segoe UI', sans-serif;
}

.filtro-cat-btn:hover,
.filtro-modalidade-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-dark);
}

.filtro-cat-btn.active,
.filtro-modalidade-btn.active {
    background: var(--gold);
    color: var(--primary-dark);
    font-weight: 600;
}

.resultado-contador {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
}

.resultado-contador span {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 800;
}

/* Container de cursos */
.cursos-container {
    flex: 1;
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Nenhum curso encontrado */
.nenhum-curso {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 1rem;
    grid-column: 1/-1;
}

.nenhum-curso p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.nenhum-curso-hint {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
}

/* Responsividade */
@media (max-width: 992px) {
    .catalogo-layout {
        flex-direction: column;
    }
    
    .filtros-sidebar {
        width: 100%;
        position: static;
    }
    
    .filtro-lista {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .filtro-cat-btn,
    .filtro-modalidade-btn {
        padding: 0.4rem 1rem;
        border-radius: 2rem;
        background: var(--gray-light);
    }
    
    .filtro-cat-btn.active,
    .filtro-modalidade-btn.active {
        background: var(--gold);
    }
}

@media (max-width: 768px) {
    .cursos-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-servicos {
        min-height: 60vh;
    }
    
    .hero-search {
        max-width: 90%;
    }
}
/* ============================================ */
/* CARDS DE CURSOS - DESIGN MODERNO */
/* ============================================ */

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.curso-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.curso-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.curso-imagem {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.curso-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.curso-card:hover .curso-imagem img {
    transform: scale(1.05);
}

.curso-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}

.badge-online {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.badge-presencial {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
}

.badge-hibrido {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.curso-conteudo {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.curso-conteudo h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    line-height: 1.35;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.curso-categoria {
    font-size: 0.65rem;
    color: var(--gold-dark);
    background: rgba(255, 215, 0, 0.12);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    width: fit-content;
}

.curso-descricao {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.curso-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0.75rem;
}

.curso-info-row span {
    font-size: 0.7rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.curso-carga {
    font-size: 0.7rem;
    color: #475569;
    margin-bottom: 0.75rem;
    background: #f8fafc;
    padding: 0.35rem 0.7rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    width: fit-content;
}

.curso-preco {
    margin-bottom: 1rem;
}

.preco {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: 'Segoe UI', sans-serif;
}

.preco small {
    font-size: 0.7rem;
    font-weight: 400;
    color: #64748b;
}

.sob-consulta {
    font-size: 0.75rem;
    color: #f59e0b;
    font-weight: 700;
    background: #fef3c7;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    display: inline-block;
}

.btn-curso {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 0.7rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-curso:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Nenhum curso encontrado */
.nenhum-curso {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 1rem;
    grid-column: 1/-1;
    border: 1px dashed #cbd5e1;
}

.nenhum-curso p:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.nenhum-curso-hint {
    font-size: 0.8rem !important;
    color: #64748b !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .cursos-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .curso-imagem {
        height: 160px;
    }
    
    .curso-conteudo h3 {
        font-size: 1rem;
    }
    
    .preco {
        font-size: 1.1rem;
    }
}
/* ============================================ */
/* FILTROS LATERAIS - ESTILO IMAGEM */
/* ============================================ */

.filtros-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    height: fit-content;
    position: sticky;
    top: 5rem;
}

.filtros-sidebar h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c2b4d;
    margin-bottom: 1.25rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* GRUPO DE FILTROS */
.filtro-grupo {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eef2f6;
}

.filtro-grupo:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filtro-grupo h4 {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* LISTA DE FILTROS EM COLUNAS */
.filtro-lista {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

/* ITENS DE FILTRO */
.filtro-cat-btn,
.filtro-modalidade-btn {
    background: transparent;
    border: none;
    padding: 0.4rem 0;
    text-align: left;
    font-size: 0.85rem;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
}

.filtro-cat-btn:hover,
.filtro-modalidade-btn:hover {
    color: #FFD700;
}

.filtro-cat-btn.active,
.filtro-modalidade-btn.active {
    color: #FFD700;
    font-weight: 600;
}

/* ITEM ESPECIAL COM PONTO (ex: Contabilidade, Gestão na mesma linha) */
.filtro-item-com-ponto {
    position: relative;
    padding-left: 1rem;
}

.filtro-item-com-ponto::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #cbd5e1;
    font-size: 0.8rem;
}

/* Separador visual entre seções */
.filtro-divider {
    height: 1px;
    background: #eef2f6;
    margin: 0.75rem 0;
}

/* Resultado contador */
.resultado-contador {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eef2f6;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0c2b4d;
    text-align: center;
}

.resultado-contador span {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 800;
}
/* ============================================ */
/* TOP BAR - CONTACTOS E REDES SOCIAIS */
/* ============================================ */

.top-bar {
    background: #0a1a2e;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-contacts {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
}

.top-bar-contact i {
    font-size: 0.7rem;
    color: var(--gold);
}

.top-bar-contact:hover {
    color: var(--gold);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.top-bar-social-link:hover {
    background: var(--gold);
    color: #0a1a2e;
    transform: translateY(-2px);
}

/* ============================================ */
/* AJUSTE DO HEADER COM TOP BAR */
/* ============================================ */

.header {
    position: fixed;
    top: 2.5rem; /* Altura da top bar */
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    min-height: clamp(4rem, 10vw, 5rem);
}

/* Ajuste do hero para compensar a top bar */
.hero, .hero-servicos, .hero-sobre, .hero-contactos {
    margin-top: 0;
    padding-top: calc(5rem + 2.5rem);
}

/* Ajuste do breadcrumb */
.breadcrumb {
    top: calc(5rem + 2.5rem);
}

/* Responsividade */
@media (max-width: 768px) {
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .top-bar-contacts {
        justify-content: center;
        gap: 1rem;
    }
    
    .header {
        top: 4rem;
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(5rem + 4rem);
    }
    
    .breadcrumb {
        top: calc(5rem + 4rem);
    }
}

@media (max-width: 480px) {
    .top-bar-contacts {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .header {
        top: 5rem;
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(5rem + 5rem);
    }
}
/* ============================================ */
/* TOP BAR + HEADER COM EFEITO SCROLL */
/* ============================================ */

/* Top bar - também vai desaparecer junto com o header */
.top-bar {
    background: #0a1a2e;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Header posicionado abaixo da top bar */
.header {
    position: fixed;
    top: 2.5rem; /* Altura aproximada da top bar */
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    min-height: clamp(4rem, 10vw, 5rem);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Classe para esconder top bar e header juntos */
.top-bar-hidden {
    transform: translateY(-100%);
}

.header-hidden {
    transform: translateY(-100%);
}

/* Top bar visível */
.top-bar-visible {
    transform: translateY(0);
}

.header-visible {
    transform: translateY(0);
}

/* Ajuste do hero para compensar top bar + header */
.hero, .hero-servicos, .hero-sobre, .hero-contactos {
    margin-top: 0;
    padding-top: calc(5rem + 2.5rem);
    transition: padding-top 0.3s ease;
}

/* Quando ambos estão escondidos */
body:has(.top-bar-hidden) .hero,
body:has(.top-bar-hidden) .hero-servicos,
body:has(.top-bar-hidden) .hero-sobre,
body:has(.top-bar-hidden) .hero-contactos {
    padding-top: 0;
}

/* Ajuste do breadcrumb */
.breadcrumb {
    position: absolute;
    top: calc(5rem + 2.5rem);
    left: 0;
    right: 0;
    z-index: 10;
    transition: top 0.3s ease;
}

body:has(.top-bar-hidden) .breadcrumb {
    top: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        top: 4rem;
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(5rem + 4rem);
    }
    
    .breadcrumb {
        top: calc(5rem + 4rem);
    }
    
    body:has(.top-bar-hidden) .hero,
    body:has(.top-bar-hidden) .hero-servicos,
    body:has(.top-bar-hidden) .hero-sobre,
    body:has(.top-bar-hidden) .hero-contactos {
        padding-top: 0;
    }
    
    body:has(.top-bar-hidden) .breadcrumb {
        top: 0;
    }
}

@media (max-width: 480px) {
    .header {
        top: 5rem;
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(5rem + 5rem);
    }
    
    .breadcrumb {
        top: calc(5rem + 5rem);
    }
    
    body:has(.top-bar-hidden) .hero,
    body:has(.top-bar-hidden) .hero-servicos,
    body:has(.top-bar-hidden) .hero-sobre,
    body:has(.top-bar-hidden) .hero-contactos {
        padding-top: 0;
    }
    
    body:has(.top-bar-hidden) .breadcrumb {
        top: 0;
    }
}
/* ============================================ */
/* TOP BAR + HEADER COM EFEITO SCROLL */
/* ============================================ */

/* Top bar - fixa no topo */
.top-bar {
    background: #0a1a2e;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Header posicionado abaixo da top bar */
.header {
    position: fixed;
    top: 2.5rem;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    min-height: clamp(4rem, 10vw, 5rem);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Classes para esconder/mostrar */
.top-bar-hidden {
    transform: translateY(-100%);
}

.header-hidden {
    transform: translateY(-100%);
}

.top-bar-visible {
    transform: translateY(0);
}

.header-visible {
    transform: translateY(0);
}

/* Ajuste do hero para compensar top bar + header */
.hero, .hero-servicos, .hero-sobre, .hero-contactos {
    margin-top: 0;
    padding-top: calc(5rem + 2.5rem);
    transition: padding-top 0.3s ease;
}

/* Quando ambos estão escondidos */
body:has(.top-bar-hidden) .hero,
body:has(.top-bar-hidden) .hero-servicos,
body:has(.top-bar-hidden) .hero-sobre,
body:has(.top-bar-hidden) .hero-contactos {
    padding-top: 0;
}

/* Breadcrumb */
.breadcrumb {
    position: absolute;
    top: calc(5rem + 2.5rem);
    left: 0;
    right: 0;
    z-index: 10;
    transition: top 0.3s ease;
}

body:has(.top-bar-hidden) .breadcrumb {
    top: 0;
}

/* Top bar contacts */
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-contacts {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.top-bar-contact i {
    font-size: 0.7rem;
    color: var(--gold);
}

.top-bar-contact:hover {
    color: var(--gold);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.top-bar-social-link:hover {
    background: var(--gold);
    color: #0a1a2e;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        top: 4rem;
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(5rem + 4rem);
    }
    
    .breadcrumb {
        top: calc(5rem + 4rem);
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .top-bar-contacts {
        justify-content: center;
    }
    
    body:has(.top-bar-hidden) .hero,
    body:has(.top-bar-hidden) .hero-servicos,
    body:has(.top-bar-hidden) .hero-sobre,
    body:has(.top-bar-hidden) .hero-contactos {
        padding-top: 0;
    }
    
    body:has(.top-bar-hidden) .breadcrumb {
        top: 0;
    }
}

@media (max-width: 480px) {
    .header {
        top: 5rem;
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(5rem + 5rem);
    }
    
    .breadcrumb {
        top: calc(5rem + 5rem);
    }
    
    .top-bar-contacts {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    body:has(.top-bar-hidden) .hero,
    body:has(.top-bar-hidden) .hero-servicos,
    body:has(.top-bar-hidden) .hero-sobre,
    body:has(.top-bar-hidden) .hero-contactos {
        padding-top: 0;
    }
    
    body:has(.top-bar-hidden) .breadcrumb {
        top: 0;
    }
}
/* ============================================ */
/* TOP BAR + HEADER + BREADCRUMB COM EFEITO SCROLL */
/* ============================================ */

/* Top bar - fixa no topo */
.top-bar {
    background: #0a1a2e;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Header posicionado abaixo da top bar */
.header {
    position: fixed;
    top: 2.5rem;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    z-index: 1001;
    box-shadow: var(--shadow-md);
    min-height: clamp(4rem, 10vw, 5rem);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Breadcrumb - também vai se mover */
.breadcrumb {
    position: fixed;
    top: calc(2.5rem + 70px); /* altura da top bar + header */
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 43, 77, 0.85);
    padding: 0.5rem 0;
    transition: top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Classes para esconder/mostrar */
.top-bar-hidden {
    transform: translateY(-100%);
}

.header-hidden {
    transform: translateY(-100%);
}

/* Quando o header esconde, o breadcrumb sobe */
.header-hidden + .breadcrumb,
body:has(.header-hidden) .breadcrumb {
    top: 0;
}

.top-bar-visible {
    transform: translateY(0);
}

.header-visible {
    transform: translateY(0);
}

/* Hero sections - ajuste de padding */
.hero, .hero-servicos, .hero-sobre, .hero-contactos {
    margin-top: 0;
    padding-top: calc(2.5rem + 70px + 40px); /* top bar + header + breadcrumb */
    transition: padding-top 0.3s ease;
}

/* Quando header está escondido, ajusta hero */
body:has(.header-hidden) .hero,
body:has(.header-hidden) .hero-servicos,
body:has(.header-hidden) .hero-sobre,
body:has(.header-hidden) .hero-contactos {
    padding-top: 40px; /* só breadcrumb */
}

/* Quando top bar e header estão escondidos */
body:has(.top-bar-hidden) .hero,
body:has(.top-bar-hidden) .hero-servicos,
body:has(.top-bar-hidden) .hero-sobre,
body:has(.top-bar-hidden) .hero-contactos {
    padding-top: 0;
}

body:has(.top-bar-hidden) .breadcrumb {
    top: 0;
}

/* Top bar contacts - estilos */
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-contacts {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.top-bar-contact i {
    font-size: 0.7rem;
    color: var(--gold);
}

.top-bar-contact:hover {
    color: var(--gold);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.top-bar-social-link:hover {
    background: var(--gold);
    color: #0a1a2e;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        top: 4rem;
    }
    
    .breadcrumb {
        top: calc(4rem + 60px);
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(4rem + 60px + 40px);
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .top-bar-contacts {
        justify-content: center;
    }
    
    body:has(.header-hidden) .hero,
    body:has(.header-hidden) .hero-servicos,
    body:has(.header-hidden) .hero-sobre,
    body:has(.header-hidden) .hero-contactos {
        padding-top: 40px;
    }
    
    body:has(.top-bar-hidden) .hero,
    body:has(.top-bar-hidden) .hero-servicos,
    body:has(.top-bar-hidden) .hero-sobre,
    body:has(.top-bar-hidden) .hero-contactos {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .header {
        top: 5rem;
    }
    
    .breadcrumb {
        top: calc(5rem + 60px);
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(5rem + 60px + 40px);
    }
    
    .top-bar-contacts {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    body:has(.header-hidden) .hero,
    body:has(.header-hidden) .hero-servicos,
    body:has(.header-hidden) .hero-sobre,
    body:has(.header-hidden) .hero-contactos {
        padding-top: 40px;
    }
    
    body:has(.top-bar-hidden) .hero,
    body:has(.top-bar-hidden) .hero-servicos,
    body:has(.top-bar-hidden) .hero-sobre,
    body:has(.top-bar-hidden) .hero-contactos {
        padding-top: 0;
    }
}
/* ============================================ */
/* TOP BAR + HEADER COM BREADCRUMB TRANSPARENTE */
/* ============================================ */

/* Top bar - fixa no topo */
.top-bar {
    background: #0a1a2e;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Header posicionado abaixo da top bar */
.header {
    position: fixed;
    top: 2.5rem;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    z-index: 1001;
    box-shadow: var(--shadow-md);
    min-height: clamp(4rem, 10vw, 5rem);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-wrap: wrap;
}

/* Classes para esconder/mostrar */
.top-bar-hidden {
    transform: translateY(-100%);
}

.header-hidden {
    transform: translateY(-100%);
}

.top-bar-visible {
    transform: translateY(0);
}

.header-visible {
    transform: translateY(0);
}

/* Breadcrumb dentro do header - SEM FUNDO BRANCO */
.breadcrumb-header {
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    /* REMOVER fundo branco e borda */
    background: transparent;
    border-top: none;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
}

.breadcrumb-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content a:hover {
    color: var(--gold);
}

.breadcrumb-content .separator {
    color: var(--text-light);
}

.breadcrumb-content .current-page {
    color: var(--gold);
    font-weight: 600;
}

/* Hero sections - ajuste de padding */
.hero, .hero-servicos, .hero-sobre, .hero-contactos {
    margin-top: 0;
    padding-top: calc(2.5rem + 80px);
    transition: padding-top 0.3s ease;
}

/* Quando header está escondido, hero sobe */
body:has(.header-hidden) .hero,
body:has(.header-hidden) .hero-servicos,
body:has(.header-hidden) .hero-sobre,
body:has(.header-hidden) .hero-contactos {
    padding-top: 0;
}

/* Top bar contacts - estilos */
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-contacts {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.top-bar-contact i {
    font-size: 0.7rem;
    color: var(--gold);
}

.top-bar-contact:hover {
    color: var(--gold);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.top-bar-social-link:hover {
    background: var(--gold);
    color: #0a1a2e;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        top: 4rem;
        padding: 0.5rem 5%;
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(4rem + 60px);
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .top-bar-contacts {
        justify-content: center;
    }
    
    body:has(.header-hidden) .hero,
    body:has(.header-hidden) .hero-servicos,
    body:has(.header-hidden) .hero-sobre,
    body:has(.header-hidden) .hero-contactos {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .header {
        top: 5rem;
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(5rem + 60px);
    }
    
    .top-bar-contacts {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .breadcrumb-content {
        justify-content: center;
    }
}
/* ============================================ */
/* CORREÇÕES FINAIS - REMOVER FUNDOS BRANCOS */
/* ============================================ */

/* Forçar top bar transparente/cor escura */
.top-bar {
    background: #0a1a2e !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1002 !important;
    padding: 0.5rem 0 !important;
}

/* Header com fundo branco (normal) */
.header {
    background: var(--white) !important;
    position: fixed !important;
    top: 2.5rem !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1001 !important;
}

/* Breadcrumb dentro do header - SEM FUNDO BRANCO */
.breadcrumb-header {
    background: transparent !important;
    border-top: none !important;
    margin-top: 0.5rem !important;
    padding-top: 0.5rem !important;
    width: 100% !important;
}

.breadcrumb-content {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.7rem !important;
}

.breadcrumb-content a {
    color: var(--text-light) !important;
    text-decoration: none !important;
}

.breadcrumb-content a:hover {
    color: var(--gold) !important;
}

.breadcrumb-content .separator {
    color: var(--text-light) !important;
}

.breadcrumb-content .current-page {
    color: var(--gold) !important;
    font-weight: 600 !important;
}

/* Remover breadcrumb antigo que pode estar aparecendo */
.breadcrumb:not(.breadcrumb-header) {
    display: none !important;
}

/* Ajuste do hero para compensar top bar + header */
.hero, .hero-servicos, .hero-sobre, .hero-contactos {
    padding-top: calc(2.5rem + 80px) !important;
    margin-top: 0 !important;
}

/* Esconder top bar e header ao scroll */
.top-bar-hidden {
    transform: translateY(-100%) !important;
}

.header-hidden {
    transform: translateY(-100%) !important;
}

.top-bar-visible {
    transform: translateY(0) !important;
}

.header-visible {
    transform: translateY(0) !important;
}

/* Ajuste do padding do hero quando header escondido */
body:has(.header-hidden) .hero,
body:has(.header-hidden) .hero-servicos,
body:has(.header-hidden) .hero-sobre,
body:has(.header-hidden) .hero-contactos {
    padding-top: 0 !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        top: 4rem !important;
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(4rem + 60px) !important;
    }
}

@media (max-width: 480px) {
    .header {
        top: 5rem !important;
    }
    
    .hero, .hero-servicos, .hero-sobre, .hero-contactos {
        padding-top: calc(5rem + 60px) !important;
    }
}
/* ============================================ */
/* PÁGINA CURSOS - LAYOUT PROFISSIONAL */
/* ============================================ */

/* Hero com busca */
.hero-servicos {
    min-height: 50vh;
    padding-top: 8rem;
}

.hero-search {
    max-width: 500px;
    margin: 2rem auto 0;
}

.search-box {
    position: relative;
}

.search-box .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    border-radius: 3rem;
    font-size: 0.9rem;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    outline: none;
}

.search-box input:focus {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

/* Filtros em linha */
.filtros-linha {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #eef2f6;
}

.filtros-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.filtro-group {
    flex: 1;
    min-width: 250px;
}

.filtro-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.filtro-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filtro-btn, .filtro-modalidade {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtro-btn:hover, .filtro-modalidade:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.filtro-btn.active, .filtro-modalidade.active {
    background: #0c2b4d;
    border-color: #0c2b4d;
    color: white;
}

.resultado-info {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eef2f6;
    font-size: 0.85rem;
    color: #64748b;
}

.resultado-info span {
    font-weight: 700;
    color: #0c2b4d;
    font-size: 1.1rem;
}

/* Grade de cursos */
.cursos-profissionais {
    padding: 3rem 0 5rem;
    background: #f8fafc;
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Card do curso */
.curso-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.curso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
    border-color: #FFD700;
}

.curso-imagem {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.curso-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.curso-card:hover .curso-imagem img {
    transform: scale(1.05);
}

.curso-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.badge-online {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.badge-presencial {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
}

.badge-hibrido {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.curso-info {
    padding: 1.25rem;
}

.curso-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0c2b4d;
    font-family: 'Playfair Display', serif;
}

.curso-categoria {
    font-size: 0.65rem;
    color: #0c2b4d;
    background: rgba(12, 43, 77, 0.08);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

.curso-descricao {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.curso-detalhes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.detalhe {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: #475569;
}

.detalhe i {
    font-size: 0.7rem;
    color: #94a3b8;
}

.curso-preco {
    margin-bottom: 1rem;
}

.preco {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0c2b4d;
}

.sob-consulta {
    font-size: 0.8rem;
    color: #f59e0b;
    font-weight: 700;
    background: #fef3c7;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    display: inline-block;
}

.btn-curso {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: #0c2b4d;
    color: white;
    padding: 0.7rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-curso:hover {
    background: #FFD700;
    color: #0c2b4d;
    transform: translateY(-2px);
}

/* Nenhum resultado */
.no-results {
    text-align: center;
    padding: 4rem;
    background: white;
    border-radius: 1rem;
    margin: 2rem 0;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.no-results i {
    font-size: 3rem;
    color: #cbd5e1;
}

.no-results h3 {
    font-size: 1.2rem;
    color: #0c2b4d;
}

.no-results p {
    color: #64748b;
}

/* Responsividade */
@media (max-width: 768px) {
    .filtros-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filtro-group {
        min-width: 100%;
    }
    
    .filtro-buttons {
        justify-content: center;
    }
    
    .cursos-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-servicos {
        min-height: 40vh;
        padding-top: 7rem;
    }
}
/* ============================================ */
/* HERO - MESMO TAMANHO PARA TODAS AS PÁGINAS */
/* ============================================ */

.hero-servicos,
.hero-sobre,
.hero-contactos {
    position: relative;
    min-height: 75vh;  /* Mesmo tamanho para todas */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding-top: 5rem;
}

.hero-servicos::before,
.hero-sobre::before,
.hero-contactos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 43, 77, 0.65);
    z-index: 1;
}

.hero-servicos-content,
.hero-sobre-content,
.hero-contactos-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-servicos h1,
.hero-sobre-content h1,
.hero-contactos h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.hero-servicos .destaque-servicos,
.hero-sobre-content .destaque-sobre,
.hero-contactos .destaque-contacto {
    color: var(--gold);
    font-weight: 800;
    font-size: inherit;
    display: inline;
}

.hero-servicos p,
.hero-sobre-description,
.hero-contactos p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}