/*
Theme Name: CEGE 2026
Theme URI: cegeufmg.com.br
Author: Rangel R Morais
Author URI: rangel.dev.br
Description: Tema desenvolvido para o CEGE UFMG
Version: 1.0
License: 
Text Domain: cege2026
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #fafafc;
    --primary-color: #3d23a3; /* Roxo principal */
    --primary-hover: #2a157d;
    --primary-light: #f3f0fd; /* Lilás bem claro para fundos */
    --primary-icon-bg: #ece7fb; /* Fundo do ícone dos cards */
    --bg-dark-section: #1b0c4d; /* Índigo profundo para infraestrutura */
    --text-title: #2a157d; /* Títulos em roxo escuro/índigo */
    --text-muted: #5e6475; /* Cinza para descrição */
    --card-shadow: 0 10px 30px rgba(61, 35, 163, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
    --card-shadow-hover: 0 20px 40px rgba(61, 35, 163, 0.08), 0 4px 16px rgba(61, 35, 163, 0.03);
    --border-radius-card: 20px;
    --border-radius-pill: 30px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: #333333;
    font-size: 1.2rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ==========================================================================
   HEADER / NAVBAR (REUTILIZÁVEL)
   ========================================================================== */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    padding: 0.85rem 0;
    transition: all 0.3s ease;
}

.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-text-main {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-text-sub {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.custom-navbar .nav-link {
    color: #333333;
    font-weight: 200;
    font-size: 1.1rem;
    padding: 0.5rem 1.1.1rem !important;
    transition: color 0.25s ease;
    position: relative;
}

.custom-navbar .nav-link:hover {
    color: var(--primary-color);
}

/* Indicador deslizante (border-bottom) para os itens do menu */
.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; /* Alinhamento sutil logo abaixo do texto */
    left: 1rem; /* Alinhado exatamente com o início do texto (ignora preenchimento do hover) */
    right: 1rem; /* Alinhado exatamente com o fim do texto */
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: center;
}

.custom-navbar .nav-link:hover::after {
    transform: scaleX(1);
}

/* Estado Ativo: Fixa o indicador para a página atual (current page) */
.custom-navbar .nav-link.active,
.custom-navbar .active > .nav-link,
.custom-navbar .current-menu-item > .nav-link,
.custom-navbar .current_page_item > .nav-link,
.custom-navbar .current-menu-ancestor > .nav-link {
    color: var(--primary-color) !important;
}

.custom-navbar .nav-link.active::after,
.custom-navbar .active > .nav-link::after,
.custom-navbar .current-menu-item > .nav-link::after,
.custom-navbar .current_page_item > .nav-link::after,
.custom-navbar .current-menu-ancestor > .nav-link::after {
    transform: scaleX(1) !important;
}

.btn-nav-aluno {
    background-color: var(--primary-color);
    color: #ffffff !important;
    border-radius: var(--border-radius-pill);
    padding: 0.55rem 1.5rem !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(61, 35, 163, 0.15);
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.btn-nav-aluno:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(61, 35, 163, 0.25);
    color: #ffffff !important;
    text-decoration: none !important;
}

.navbar-social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}

.navbar-social-icon:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.08);
}

.navbar-social-icon svg {
    width: 14px;
    height: 14px;
}

.navbar-expand-lg .navbar-nav {
    gap: 1rem;
}
/* ==========================================================================
   HERO / CAROUSEL (GRADIENTE CORAL-ROXO EXATO)
   ========================================================================== */
.hero-carousel-container {
    background: linear-gradient(90deg, #d35967 0%, #3a158b 100%);
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content-box {
    padding: 3rem 0;
    color: #ffffff;
}

.hero-badge-box {
    border: 1px solid #ffffff;
    background-color: transparent;
    display: inline-block;
    padding: 0.35rem 1.1rem;
    border-radius: 0;
    margin-bottom: 1.75rem;
}

.hero-badge-text {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    color: #ffffff;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.btn-hero {
    background-color: #2b146f;
    color: #ffffff;
    border-radius: var(--border-radius-pill);
    padding: 0.8rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-img-container {
    height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}

.hero-img-container img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom right;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%),
                linear-gradient(to top, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%),
                        linear-gradient(to top, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
}

/* Controles do Carrossel Finos */
.carousel-control-prev, .carousel-control-next {
    width: 60px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-image: none;
    background-color: transparent;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev-icon svg, .carousel-control-next-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease, transform 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon svg,
.carousel-control-next:hover .carousel-control-next-icon svg {
    color: #ffffff;
    transform: scale(1.1);
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    border: 1.5px solid #ffffff;
    margin: 0 6px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #ffffff;
    opacity: 1;
    border: 1.5px solid #ffffff;
}

/* ==========================================================================
   CARDS INSTITUCIONAIS (CONCILIAR TRADIÇÃO E INOVAÇÃO)
   ========================================================================== */
.section-container {
    padding: 80px 0;
}

.custom-card {
    border: none;
    border-radius: var(--border-radius-card);
    background-color: #ffffff;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-card:hover .card-img-wrapper img {
    transform: scale(1.04);
}

.card-body-custom {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-header-flex {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--primary-icon-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-card:hover .icon-box {
    background-color: var(--primary-light);
    transform: rotate(3deg) scale(1.05);
}

.icon-box svg {
    width: 26px;
    height: 26px;
    color: var(--primary-color);
}

.card-title-custom {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-title);
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-divider {
    width: 45px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.custom-card:hover .custom-divider {
    width: 65px;
}

.card-desc {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.action-banner {
    background-color: var(--primary-light);
    border-radius: 16px;
    padding: 1.75rem 2.5rem;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(61, 35, 163, 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid rgba(61, 35, 163, 0.05);
    transition: box-shadow 0.3s ease;
}

.action-banner:hover {
    box-shadow: 0 10px 30px rgba(61, 35, 163, 0.06);
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.banner-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon-box svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.banner-text-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.banner-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-title);
    margin: 0;
    letter-spacing: 0.5px;
}

.banner-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin: 0;
}

.btn-saiba-mais {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: var(--border-radius-pill);
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(61, 35, 163, 0.15);
}

.btn-saiba-mais:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 35, 163, 0.25);
}

.btn-saiba-mais svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-saiba-mais:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   SEÇÃO "SOBRE O CEGE" (TITULO INLINE-BLOCK FIEL)
   ========================================================================== */
.sobre-title-wrapper {
    margin-bottom: 2rem;
}

.sobre-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color) !important;
    display: block;
    margin-bottom: 0.25rem;
}

.sobre-heading-box {
    background-color: var(--primary-color);
    color: #ffffff;
    display: inline-block; /* Fundo roxo se ajusta à palavra */
    padding: 0.4rem 1.75rem;
    font-weight: 800;
    font-size: 2.2rem;
    border-radius: 4px;
    margin: 0;
}

.sobre-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.sobre-img-container {
    position: relative;
    padding: 0 15px 15px 0;
}

.sobre-img-shadow-box {
    position: absolute;
    top: 25px;
    left: 25px;
    right: -10px;
    bottom: -10px;
    border: 3px dashed var(--primary-color);
    border-radius: var(--border-radius-card);
    z-index: 1;
}

.sobre-img-container img {
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow-hover);
    position: relative;
    z-index: 2;
    width: 100%;
}

.sobre-logos-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(61, 35, 163, 0.1);
}

/* ==========================================================================
   SEÇÃO INFRAESTRUTURA (FIDEDIGNA E CENTRALIZADA)
   ========================================================================== */
.infra-section {
    background-color: var(--bg-dark-section);
    padding: 90px 0;
    color: #ffffff;
}

.infra-badge-box {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.infra-badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.infra-badge-text svg {
    width: 16px;
    height: 16px;
    margin-top: -2px;
}

.infra-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.infra-subtitle {
    font-size: 1.05rem;
    opacity: 0.75;
    margin-bottom: 4rem;
}

/* Cards de Infraestrutura Fidedignos */
.infra-card {
    background-color: #ffffff;
    border: none;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.infra-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.infra-icon-wrapper {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.infra-icon-wrapper svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.infra-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1e095c;
    margin-bottom: 1.1rem;
    line-height: 1.35;
}

.infra-card-divider {
    width: 32px;
    height: 2px;
    background-color: var(--primary-color);
    margin-bottom: 1.25rem;
    border-radius: 1px;
}

.infra-card-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.infra-association-text {
    font-size: 0.82rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0.75rem;
    display: block;
}

/* Galeria de Fotos da Infraestrutura */
.infra-gallery-row {
    margin-top: 5rem;
}

.infra-gallery-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    height: 350px;
    position: relative;
}

.infra-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.infra-gallery-card:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   SEÇÃO "FALE CONOSCO" (TITULO INLINE E FORM COM ÍCONES INTERNOS)
   ========================================================================== */
.fale-section {
    padding: 90px 0;
    background-color: #fcfcff;
}

.fale-title-wrapper {
    margin-bottom: 4rem;
}

.fale-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.fale-heading-custom {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.fale-heading-box {
    background-color: var(--primary-color);
    color: #ffffff;
    display: inline-block; /* Fundo roxo estrito para "CONOSCO" */
    padding: 0.4rem 1.75rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.fale-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
}

/* Cards de Fale Conosco */
.contact-block-card {
    background-color: #ffffff;
    border: none;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 3rem;
    height: 100%;
}

.contact-block-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-block-title svg {
    width: 24px;
    height: 24px;
}

/* Inputs Modernos com Ícones Embutidos */
.form-group-custom {
    margin-bottom: 1.5rem;
}

.form-label-custom {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.input-icon-wrapper {
    position: relative;
    display: block;
}

.input-icon-wrapper svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    pointer-events: none;
    stroke-width: 2;
}

/* Especial para o Textarea (Ícone posicionado no topo) */
.input-icon-wrapper.textarea-icon-wrapper svg {
    top: 18px;
    transform: none;
}

.input-icon-wrapper .form-control {
    border: 1px solid #e1dcfa;
    background-color: #fcfcff;
    border-radius: 10px;
    padding: 0.85rem 1.25rem 0.85rem 3rem; /* Espaço para o ícone na esquerda */
    font-size: 0.95rem;
    color: #333333;
    transition: all 0.3s ease;
}

.input-icon-wrapper .form-control:focus {
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(61, 35, 163, 0.1);
}

.btn-enviar-mensagem {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: var(--border-radius-pill);
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(61, 35, 163, 0.15);
}

.btn-enviar-mensagem:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 35, 163, 0.25);
}

.btn-enviar-mensagem svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-enviar-mensagem:hover svg {
    transform: translateX(4px);
}

/* Lista de Informações de Contato */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-info-icon-box {
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon-box {
    background-color: var(--primary-color);
    color: #ffffff;
}

.contact-info-icon-box svg {
    width: 20px;
    height: 20px;
}

.contact-info-text-box h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 0.35rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-text-box p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Aviso LGPD */
.lgpd-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3.5rem;
    padding: 1.25rem;
    border-radius: 12px;
    background-color: rgba(61, 35, 163, 0.03);
    border: 1px solid rgba(61, 35, 163, 0.05);
}

.lgpd-banner svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.lgpd-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   PÁGINA DO CURSO (CURSO.HTML) - NOVAS SEÇÕES
   ========================================================================== */

/* Hero Estático (Página do Curso) */
.hero-static-container {
    background: linear-gradient(90deg, #d35967 0%, #3a158b 100%);
    position: relative;
    overflow: hidden;
}

.hero-scroll-chevron {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.hero-scroll-chevron svg {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.hero-scroll-chevron:hover svg {
    color: #ffffff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

/* Seção Por Que Gestão de Negócios e Impacto */
.section-porque {
    padding: 90px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.porque-title-container {
    position: relative;
    margin-bottom: 4rem;
}

.porque-top-line {
    width: 50px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.porque-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1a1a1a;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.porque-title-badge {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.4rem 1.5rem;
    border-radius: 4px;
    font-weight: 800;
}

.porque-subtitle {
    font-size: 1.15rem;
    color: #555555;
    margin-top: 1.25rem;
}

.porque-subtitle-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Container de Imagem Decorado */
.porque-image-wrapper {
    position: relative;
    padding: 20px 0 0 20px;
    display: inline-block;
    width: 100%;
}

.porque-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(circle, #e1dafa 25%, transparent 25%);
    background-size: 18px 18px;
    z-index: 0;
}

.porque-image-wrapper img {
    border-radius: 8px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-shadow: 0 15px 35px rgba(61, 35, 163, 0.06);
    object-fit: cover;
}

/* Lado Direito */
.porque-intro-text {
    font-size: 1.05rem;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.porque-intro-highlight {
    color: var(--primary-color);
    font-weight: 800;
}

.porque-list-container {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.porque-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.porque-item-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ece7fb; /* Lavender background */
    border: none; /* No borders */
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.porque-list-item:hover .porque-item-circle {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.06);
}

.porque-item-circle svg {
    width: 18px;
    height: 18px;
}

.porque-item-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.porque-item-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Ribbon de Destaque no Fundo */
.porque-ribbon-card {
    background-color: #f7f6fc;
    border: 1px solid rgba(61, 35, 163, 0.06);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    margin-top: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.porque-ribbon-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.porque-ribbon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e8e2fa;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.porque-ribbon-circle svg {
    width: 18px;
    height: 18px;
}

.porque-ribbon-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.porque-ribbon-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.porque-ribbon-divider {
    width: 1px;
    height: 50px;
    background-color: #d1c9f0;
    flex-shrink: 0;
}

.porque-ribbon-right {
    flex-grow: 1;
    max-width: 520px;
}

.porque-ribbon-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.porque-ribbon-text-highlight {
    color: var(--primary-color);
    font-weight: 800;
}

/* Variação do Indicador Live para a fase de Pré-Inscrição (Âmbar/Dourado) */
.alert-bar-fixed.fase-pre .alert-bar-live-circle {
    background-color: #ffb300;
}
.alert-bar-fixed.fase-pre .alert-bar-live-circle::after {
    border-color: #ffb300;
}
.alert-bar-fixed.fase-pre .alert-bar-live-box {
    background-color: rgba(255, 179, 0, 0.1);
    border-color: rgba(255, 179, 0, 0.25);
}


@media (max-width: 767.98px) {
    .porque-ribbon-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .porque-ribbon-divider {
        display: none;
    }
    
    .porque-ribbon-left {
        width: 100%;
    }
    
    .porque-ribbon-right {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .porque-title {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Seção Grade Curricular */
.grade-section {
    background-color: #fafafc;
    padding: 95px 0;
    position: relative;
}

.grade-header-container {
    margin-bottom: 4.5rem;
}

.grade-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color); /* Atualizado para roxo escuro coerente */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.grade-section-title-badge {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.35rem 1.5rem;
    border-radius: 6px; /* Bordas levemente arredondadas e limpas */
    font-weight: 800;
}

.grade-section-line {
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1.1rem auto;
    border-radius: 2px;
}

.grade-section-subtitle {
    font-size: 1.1.1rem;
    color: var(--text-muted);
    margin: 0;
}

/* Contêiner de alinhamento de altura para a coluna esquerda */
.grade-left-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
}

@media (min-width: 992px) {
    .grade-left-wrapper {
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem; /* Espaçamento constante entre os cards no desktop */
    }
    
    .grade-left-wrapper .grade-info-card {
        flex: 1 1 0%; /* Faz com que os 3 cards cresçam igualmente para preencher a altura total */
    }
    
    .grade-left-wrapper .grade-dashed-divider {
        display: none; /* Esconde os divisores pontilhados no desktop */
    }
}

/* Coluna Esquerda: Cards brancos */
.grade-info-card {
    background-color: #ffffff;
    border: 1px solid #f1f0f7; /* subtle lavender border */
    border-radius: 24px;
    padding: 2rem 2.25rem;
    box-shadow: 0 10px 30px rgba(61, 35, 163, 0.02), 0 2px 8px rgba(0, 0, 0, 0.01); /* soft modern shadows */
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grade-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.grade-info-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #ece7fb; /* light lavender background */
    border: none; /* removed border to match mockup */
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.grade-info-icon-box svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
}

.grade-info-text-box h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 0.4rem 0;
    letter-spacing: 0.5px;
}

.grade-info-text-box p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.grade-info-highlight {
    color: var(--primary-color);
    font-weight: 800; /* extra bold */
}

/* Divisor tracejado */
.grade-dashed-divider {
    border-top: 1.5px dashed #dcd8f3;
    margin: 0.75rem 0;
    width: 100%;
}

/* Coluna Direita: Timeline de Períodos com listras progressivas */
.grade-timeline-container {
    background: transparent;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(61, 35, 163, 0.12);
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Linha da timeline vertical */
.grade-timeline-line {
    position: absolute;
    top: 60px; /* starting exactly at the level of the first bullet dot */
    bottom: 60px; /* ending exactly at the level of the last bullet dot */
    left: 45px; /* positioned precisely on the left side of the white circles */
    width: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    z-index: 3;
}

.grade-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2.75rem 3rem 2.75rem 5.5rem; /* padding generoso na esquerda para acomodar a linha e o pontinho */
    z-index: 2;
    transition: all 0.3s ease;
}

/* Tons progressivos roxo-indigo fiel ao mockup */
.grade-timeline-item.period-1 {
    background-color: #3d23a3; /* 1º Período */
}
.grade-timeline-item.period-2 {
    background-color: #331b94; /* 2º Período */
}
.grade-timeline-item.period-3 {
    background-color: #2b1480; /* 3º Período */
}
.grade-timeline-item.period-4 {
    background-color: #1f0b60; /* 4º Período */
}

/* Pequeno ponto de conexão na linha vertical (nodo para cada período) */
.grade-timeline-item::before {
    content: "";
    position: absolute;
    left: 45px; /* alinhado milimetricamente com a linha vertical */
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

/* Linha conectora horizontal entre a linha vertical e os círculos brancos */
.grade-timeline-item::after {
    content: "";
    position: absolute;
    left: 45px;
    top: 50%;
    width: 44px; /* conecta com o início do círculo branco */
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%);
    z-index: 3;
}

/* Bordas horizontais sutis separando os períodos */
.grade-timeline-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Lado Esquerdo do item: ícone + label do período */
.grade-timeline-left-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.grade-period-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.grade-period-icon-circle svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.2;
}

.grade-period-label-box {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    line-height: 1.1;
}

.grade-period-num {
    font-size: 2.2rem; /* increased text scale */
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 2px;
}

.grade-period-lbl {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.85;
}

/* Lado Direito do item: Disciplinas */
.grade-timeline-right-box {
    flex-grow: 1;
}

.grade-disciplines-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.grade-disciplines-list li {
    font-size: 0.95rem;
    color: #ffffff;
    opacity: 0.95;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

/* Bullets circulares brancos de alta resolução */
.grade-disciplines-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 50%;
}

/* Selo de qualidade no rodapé */
.grade-footer-stamp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #edecf3;
    padding: 20px 50px;
    border: none;
    text-align: left;
    border-radius: 50px;
}

.grade-footer-stamp svg {
    width: 70px;
    height: 20px;
    color: var(--primary-color);
}

.grade-footer-stamp span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsividade específica para a timeline */
@media (max-width: 991.98px) {
    .grade-timeline-item {
        padding: 2.25rem 2rem 2.25rem 5rem;
        gap: 1.5rem;
        grid-template-columns: 190px 1fr;
    }
    
    .grade-timeline-line {
        left: 40px;
        top: 55px;
        bottom: 55px;
    }
    
    .grade-timeline-item::before {
        left: 40px;
    }
    
    .grade-timeline-item::after {
        left: 40px;
        width: 40px;
    }
    
    .grade-timeline-left-box {
        width: auto;
    }
}

@media (max-width: 767.98px) {
    .grade-dashed-divider {
        display: none;
    }
    
    .grade-info-card {
        margin-bottom: 1.5rem;
    }
    
    .grade-timeline-line {
        display: none;
    }
    
    .grade-timeline-item {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 2.25rem 2rem;
    }
    
    .grade-timeline-item::before {
        display: none;
    }
    
    .grade-timeline-item::after {
        display: none;
    }
    
    .grade-timeline-left-box {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .grade-info-card {
        flex-direction: column;
        align-items: center;
        gap: 1.1rem;
        padding: 1.75rem;
        display: flex;
        align-content: center;
        text-align: center;
    }
}

/* Seção Investimento */
.investimento-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.investimento-badge {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: inline-block;
    padding: 0.4rem 1.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.investimento-box-card {
    background-color: #ffffff;
    border: 1px solid rgba(61, 35, 163, 0.08);
    border-radius: 24px;
    box-shadow: var(--card-shadow-hover);
    padding: 4rem 3rem;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.investimento-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 1.5rem;
}

.investimento-price-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -1px;
}

.investimento-price-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.investimento-highlights-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(61, 35, 163, 0.08);
    border-bottom: 1px solid rgba(61, 35, 163, 0.08);
}

.investimento-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.investimento-highlight-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.investimento-highlight-icon svg {
    width: 18px;
    height: 18px;
}

.investimento-highlight-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-title);
}

.btn-receber-proposta {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: var(--border-radius-pill);
    padding: 0.95rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(61, 35, 163, 0.2);
    transition: all 0.3s ease;
}

.btn-receber-proposta:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(61, 35, 163, 0.3);
}

.btn-receber-proposta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-receber-proposta:hover svg {
    transform: translateX(4px);
}

.investimento-terms {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
}

/* ==========================================================================
   RESPONSIVIDADE E AJUSTES DE TELAS
   ========================================================================== */
@media (max-width: 991.98px) {
    .custom-navbar {
        padding: 0.5rem 0;
    }
    
    .hero-slide {
        min-height: auto;
    }
    
    .hero-content-box {
        padding: 3rem 0 1.5rem 0;
        text-align: center;
    }
    
    .hero-img-container {
        height: 380px;
        justify-content: center;
    }
    
    .hero-img-container img {
        object-position: bottom center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .sobre-img-container {
        padding: 0;
        margin-top: 3rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sobre-img-shadow-box {
        display: none;
    }
    
    .infra-title {
        font-size: 2rem;
    }
    
    .action-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 2rem;
    }
    
    .banner-left {
        flex-direction: column;
        gap: 1.1rem;
    }
    
    .banner-icon-box {
        margin: 0 auto;
    }
    
    .btn-saiba-mais {
        justify-content: center;
        align-self: center;
        width: 100%;
        max-width: 250px;
    }
    
    .contact-block-card {
        padding: 2.2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .brand-text-main {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-container {
        padding: 50px 0;
        overflow: hidden;
    }
    
    .card-body-custom {
        padding: 1.75rem;
    }
    
    .sobre-heading-box {
        font-size: 1.8rem;
    }
    
    .infra-gallery-card {
        height: 250px;
    }
    
    .fale-heading-custom {
        font-size: 1.8rem;
    }
    
    .fale-heading-box {
        font-size: 1.8rem;
        margin-left: 0.25rem;
    }
}

/* ==========================================================================
   PÁGINA: PROCESSO SELETIVO (ESTILOS COMPLETOS E DE ALTA FIDELIDADE)
   ========================================================================== */

.processo-hero {
    background-color: #3d23a3;
    padding: 4.5rem 0;
    color: #ffffff;
    border-bottom: 4px solid #5d3dfc;
}

.processo-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.processo-secao {
    background-color: #f8f8fc;
    padding: 80px 0;
}

.seletivo-secao-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a0b5a;
    position: relative;
    padding-bottom: 0.5rem;
}

.seletivo-secao-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #5d3dfc;
    border-radius: 2px;
}

.seletivo-main-card {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(61, 35, 163, 0.08);
    box-shadow: 0 10px 30px rgba(61, 35, 163, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.seletivo-main-card:hover {
    box-shadow: 0 15px 35px rgba(61, 35, 163, 0.08);
}

.seletivo-main-header {
    padding: 1.75rem 2.25rem;
    background-color: #ffffff;
    user-select: none;
    transition: background-color 0.2s ease;
}

.seletivo-main-header:hover {
    background-color: #faf9ff;
}

.seletivo-icon-wrapper-red {
    width: 52px;
    height: 52px;
    background-color: #fff0f3;
    color: #ff3b6b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seletivo-icon-wrapper-red svg {
    width: 26px;
    height: 26px;
}

.seletivo-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a0b5a;
}

.seletivo-badge-aberto {
    background-color: #e6f9f0;
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.seletivo-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: activePulse 2s infinite;
}

@keyframes activePulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.seletivo-date-text {
    font-size: 0.8rem;
    color: #7d7d9d;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.btn-seletivo-inscricao {
    background-color: #5d3dfc;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(93, 61, 252, 0.2);
}

.btn-seletivo-inscricao:hover {
    background-color: #4b30d3;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 61, 252, 0.3);
}

.btn-seletivo-inscricao svg {
    transition: transform 0.3s ease;
}

.btn-seletivo-inscricao:hover svg {
    transform: translateX(3px);
}

.seletivo-chevron-wrapper {
    width: 40px;
    height: 40px;
    background-color: #f3f0ff;
    color: #5d3dfc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.seletivo-main-header:hover .seletivo-chevron-wrapper {
    background-color: #5d3dfc;
    color: #ffffff;
}

.seletivo-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.seletivo-main-header[aria-expanded="false"] .seletivo-chevron {
    transform: rotate(180deg);
}

.seletivo-docs-body {
    padding: 0.5rem 2.25rem 2.25rem 2.25rem;
    background-color: #ffffff;
    border-top: 1px solid rgba(61, 35, 163, 0.06);
}

.seletivo-doc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1.1rem 0.5rem;
    border-bottom: 1px solid rgba(61, 35, 163, 0.05);
    transition: background-color 0.2s ease;
    border-radius: 8px;
}

.seletivo-doc-item:hover {
    background-color: #faf9ff;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}

.seletivo-doc-item:last-child {
    border-bottom: none;
}

.seletivo-doc-left {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-grow: 1;
}

.seletivo-doc-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: #f3f0ff;
    color: #5d3dfc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seletivo-doc-icon svg {
    width: 20px;
    height: 20px;
}

.seletivo-doc-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2b2b48;
}

.seletivo-doc-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8c8ca8;
    font-size: 0.85rem;
    font-weight: 500;
    min-width: 160px;
    justify-content: flex-start;
}

.seletivo-doc-meta-badge {
    color: #5d3dfc;
    font-weight: 700;
}

.seletivo-doc-divider {
    color: #d1d1e9;
}

.seletivo-doc-size {
    color: #7d7d9d;
}

.seletivo-doc-badge-status {
    background-color: #f3f0ff;
    color: #5d3dfc;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
}

.seletivo-doc-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 100px;
}

.seletivo-download-link {
    color: #5d3dfc;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
    border: none;
    background: none;
    padding: 0;
}

.seletivo-download-link svg {
    width: 18px;
    height: 18px;
}

.seletivo-download-link:not(.disabled):hover {
    color: #3d23a3;
    transform: translateY(-1px);
}

.seletivo-download-link.disabled {
    color: #c0c0d8;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

/* CARDS DE PROCESSOS ANTERIORES */
.seletivo-past-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(61, 35, 163, 0.08);
    box-shadow: 0 4px 15px rgba(61, 35, 163, 0.02);
    padding: 1.5rem 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.seletivo-past-card:hover {
    box-shadow: 0 10px 30px rgba(61, 35, 163, 0.08);
    transform: translateY(-3px);
    border-color: rgba(61, 35, 163, 0.15);
}

.seletivo-past-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1.1rem;
    font-weight: 700;
    color: #1a0b5a;
}

.seletivo-past-meta {
    font-size: 0.82rem;
    color: #7d7d9d;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.seletivo-badge-encerrado {
    background-color: #fff0f3;
    color: #ff3b6b;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    display: inline-block;
}

.seletivo-plus-box {
    width: 36px;
    height: 36px;
    background-color: #f3f0ff;
    color: #5d3dfc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.seletivo-past-card:hover .seletivo-plus-box {
    background-color: #5d3dfc;
    color: #ffffff;
    transform: rotate(90deg);
}

/* BANNER DE NOTÍCIA / INFORMAÇÃO */
.seletivo-notice-pill {
    display: inline-flex;
    align-items: center;
    background-color: #ece7fb;
    padding: 0.65rem 1.75rem;
    border-radius: 30px;
    font-size: 0.88rem;
    color: #3d23a3;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(61, 35, 163, 0.03);
    max-width: 100%;
    text-align: left;
}

.seletivo-notice-icon {
    width: 20px;
    height: 20px;
    color: #5d3dfc;
    flex-shrink: 0;
}

.seletivo-notice-link {
    color: #5d3dfc;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1.5px solid transparent;
    transition: all 0.2s ease;
}

.seletivo-notice-link:hover {
    color: #3d23a3;
    border-bottom-color: #3d23a3;
}

/* RESPONSIVIDADE */
@media (max-width: 991.98px) {
    .seletivo-main-header {
        padding: 1.5rem 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .processo-secao {
        padding: 50px 0;
    }
    
    .processo-hero {
        padding: 3rem 0;
    }
    
    .processo-hero-title {
        font-size: 2.2rem;
    }
    
    .seletivo-doc-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem 0.5rem;
    }
    
    .seletivo-doc-left {
        width: 100%;
    }
    
    .seletivo-doc-center {
        padding-left: 48px;
        width: 100%;
        justify-content: flex-start;
        min-width: auto;
    }
    
    .seletivo-doc-right {
        padding-left: 48px;
        width: 100%;
        justify-content: flex-start;
        min-width: auto;
    }
    
    .seletivo-notice-pill {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        padding: 1.1rem 1.5rem;
        border-radius: 20px;
    }
}

/* ==========================================================================
   PÁGINA: ÁREA DO ALUNO (PORTAL ACADÊMICO E REGULAMENTOS)
   ========================================================================== */

.aluno-hero {
    background-color: #3d23a3;
    padding: 4.5rem 0;
    color: #ffffff;
    border-bottom: 4px solid #5d3dfc;
}

.aluno-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.aluno-secao {
    background-color: #f8f8fc;
    padding: 80px 0;
}

.aluno-card-regulamentos {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(61, 35, 163, 0.08);
    box-shadow: 0 10px 30px rgba(61, 35, 163, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.aluno-card-regulamentos:hover {
    box-shadow: 0 15px 35px rgba(61, 35, 163, 0.08);
}

.regulamento-title-icon-box {
    width: 52px;
    height: 52px;
    background-color: #f3f0ff;
    color: #5d3dfc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.regulamento-title-icon-box svg {
    width: 26px;
    height: 26px;
}

.regulamento-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a0b5a;
}

.regulamento-card-subtitle {
    font-size: 0.95rem;
    color: #7d7d9d;
    line-height: 1.5;
    max-width: 550px;
}

.regulamento-illustration {
    transition: transform 0.4s ease;
}

.aluno-card-regulamentos:hover .regulamento-illustration {
    transform: translateY(-5px) scale(1.02);
}

.regulamento-divider {
    border-color: rgba(61, 35, 163, 0.08);
    opacity: 1;
}

.regulamento-doc-item {
    padding: 1.25rem 1.1rem;
    border-radius: 12px;
    border-bottom: 1px solid rgba(61, 35, 163, 0.05);
    transition: all 0.2s ease;
}

.regulamento-doc-item:hover {
    background-color: #faf9ff;
    transform: translateX(4px);
}

.regulamento-doc-item:last-child {
    border-bottom: none;
}

.regulamento-doc-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #f3f0ff;
    color: #5d3dfc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.regulamento-doc-icon-box svg {
    width: 22px;
    height: 22px;
}

.regulamento-doc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2b2b48;
}

.regulamento-doc-desc {
    font-size: 0.85rem;
    color: #7d7d9d;
    line-height: 1.4;
}

.regulamento-download-btn {
    color: #5d3dfc;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
    border: none;
    background: none;
    padding: 0;
}

.regulamento-download-btn svg {
    width: 18px;
    height: 18px;
}

.regulamento-download-btn:hover {
    color: #3d23a3;
    transform: translateY(-1px);
}

/* CARDS DE ORIENTAÇÕES E FORMULÁRIOS */
.aluno-side-card {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(61, 35, 163, 0.08);
    box-shadow: 0 10px 30px rgba(61, 35, 163, 0.04);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.aluno-side-card:hover {
    box-shadow: 0 15px 35px rgba(61, 35, 163, 0.08);
}

.aluno-side-card-icon-box {
    width: 44px;
    height: 44px;
    background-color: #fff0f3;
    color: #ff3b6b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.aluno-side-card-icon-box svg {
    width: 22px;
    height: 22px;
}

.aluno-side-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a0b5a;
}

.aluno-side-card-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.aluno-side-card-item {
    border-bottom: 1px solid rgba(61, 35, 163, 0.05);
}

.aluno-side-card-item:last-child {
    border-bottom: none;
}

.aluno-side-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1.1rem 0.5rem;
    color: #2b2b48;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.aluno-side-card-link:hover {
    background-color: #faf9ff;
    color: #5d3dfc;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}

.aluno-link-icon-red {
    width: 32px;
    height: 32px;
    background-color: #fff0f3;
    color: #ff3b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.aluno-side-card-link:hover .aluno-link-icon-red {
    background-color: #ff3b6b;
    color: #ffffff;
    transform: translateY(2px);
}

.aluno-link-icon-red svg {
    width: 16px;
    height: 16px;
}

/* RESPONSIVIDADE ADICIONAL ÁREA DO ALUNO */
@media (max-width: 767.98px) {
    .aluno-card-regulamentos {
        border-radius: 16px;
    }
    
    .aluno-side-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .regulamento-doc-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem 0.5rem;
    }
    
    .regulamento-doc-action {
        width: 100%;
        padding-left: 54px;
    }
}

/* ==========================================================================
   PROCESSO SELETIVO: NOVO PAINEL DE CONTAGEM REGRESSIVA E COUNTDOWN
   ========================================================================== */

.seletivo-countdown-panel {
    background-color: #FAF9FD;
    border: 1px solid rgba(61, 35, 163, 0.08);
    border-radius: 16px;
    padding: 1.5rem 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.seletivo-countdown-left {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seletivo-countdown-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b32c3;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.seletivo-countdown-header svg {
    width: 16px;
    height: 16px;
    color: #5d3dfc;
}

.seletivo-timer-display {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.seletivo-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
}

.seletivo-timer-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #160e33;
    line-height: 1;
}

.seletivo-timer-label {
    font-size: 0.82rem;
    color: #7d7d9d;
    font-weight: 500;
    margin-top: 0.35rem;
}

.seletivo-timer-separator {
    font-size: 1.5rem;
    color: rgba(61, 35, 163, 0.15);
    font-weight: 300;
    user-select: none;
    margin-bottom: 1.25rem;
}

.seletivo-countdown-divider-vertical {
    width: 1px;
    background-color: rgba(61, 35, 163, 0.08);
    align-self: stretch;
}

.seletivo-countdown-right {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0.75rem;
}

.seletivo-update-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #7d7d9d;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}

.seletivo-update-info svg {
    width: 16px;
    height: 16px;
    color: #7d7d9d;
}

.seletivo-update-text {
    font-size: 0.88rem;
    color: #7d7d9d;
    line-height: 1.45;
    margin: 0;
}

/* Responsividade do Painel de Contagem */
@media (max-width: 991.98px) {
    .seletivo-countdown-divider-vertical {
        display: none;
    }
    .seletivo-countdown-right {
        padding-left: 0;
        border-top: 1px solid rgba(61, 35, 163, 0.08);
        padding-top: 1.25rem;
        flex-basis: 100%;
    }
}

@media (max-width: 575.98px) {
    .seletivo-timer-display {
        gap: 0.25rem;
        justify-content: space-between;
        width: 100%;
    }
    .seletivo-timer-unit {
        min-width: 45px;
    }
    .seletivo-timer-number {
        font-size: 1.75rem;
    }
    .seletivo-timer-separator {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
}

/* ==========================================================================
   BARRA DE INSCRIÇÕES FIXA (STICKY ALERT BAR - TODAS AS PÁGINAS)
   ========================================================================== */
.alert-bar-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #160c41 0%, #2f1784 100%);
    color: #ffffff;
    box-shadow: 0 -4px 35px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Compensação do rodapé do body */
body {
    transition: padding-bottom 0.4s ease;
}

body.alert-bar-padding-closed {
    padding-bottom: 70px;
}

body.alert-bar-padding-open {
    padding-bottom: 125px; /* Desktop Open */
}

/* Alinhamento do container do alerta */
.alert-bar-container {
    display: flex;
    align-items: center;
    width: 100%;
}

/* ==========================================
   ESTILO DOS BOTÕES DO ALERTA (NOVO/CORRIGIDO)
   ========================================== */
.btn-alert-outline,
.btn-alert-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    border-radius: var(--border-radius-pill);
}

/* OUTLINE: Fundo transparente, borda branca translúcida, texto branco */
.btn-alert-outline {
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
}

.btn-alert-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* SOLID: Fundo rosa premium (#ff3b6b), texto branco */
.btn-alert-solid {
    background-color: #ff3b6b;
    border: 1.5px solid #ff3b6b;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(255, 59, 107, 0.25);
}

.btn-alert-solid:hover {
    background-color: #ff1c53;
    border-color: #ff1c53;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 107, 0.4);
}

/* Ícones SVG dentro de botões do alerta */
.btn-alert-outline svg,
.btn-alert-solid svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.btn-alert-outline:hover svg,
.btn-alert-solid:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   INDICADOR LIVE PULSANTE (NOVO/CORRIGIDO)
   ========================================== */
.alert-bar-live-circle {
    width: 10px;
    height: 10px;
    background-color: #00c853; /* Verde brilhante */
    border-radius: 50%;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.alert-bar-live-circle::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #00c853;
    border-radius: 50%;
    animation: alert-live-pulsate 1.6s infinite ease-out;
    opacity: 0;
}

@keyframes alert-live-pulsate {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.alert-bar-live-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.25);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================
   ESTADO FECHADO (COMPACTO)
   ========================================== */
.alert-bar-fixed.is-closed {
    padding: 0.65rem 0;
}

.alert-bar-fixed.is-closed .alert-bar-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.alert-bar-fixed.is-closed .alert-bar-expanded {
    display: none;
}

/* Elementos compactos */
.alert-bar-compact-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.alert-bar-compact-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.alert-bar-compact-divider {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.alert-bar-compact-countdown {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.alert-timer-inline {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-left: 5px;
}

.alert-bar-compact-right {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.alert-bar-compact-buttons {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

/* Botões menores no estado compacto */
.btn-alert-outline.btn-sm,
.btn-alert-solid.btn-sm {
    padding: 0.45rem 1.1rem;
    font-size: 0.78rem;
}

/* Gatilho (Seta / X) */
.alert-bar-toggle-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.alert-bar-toggle-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
}

.alert-bar-toggle-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 0 !important; /* Reseta margem de ícone para botões normais */
}

/* ==========================================
   ESTADO ABERTO (EXPANDIDO)
   ========================================== */
.alert-bar-fixed.is-open {
    padding: 1.25rem 0;
}

.alert-bar-fixed.is-open .alert-bar-compact {
    display: none;
}

.alert-bar-fixed.is-open .alert-bar-expanded {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.alert-bar-expanded-header {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.alert-bar-expanded-texts {
    display: flex;
    flex-direction: column;
}

.alert-bar-expanded-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.alert-bar-expanded-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 3px 0 0 0;
    font-weight: 400;
}

.alert-bar-expanded-countdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    border-left: 1px dotted rgba(255, 255, 255, 0.25);
    padding-left: 1.5rem;
}

.alert-bar-expanded-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.alert-bar-expanded-timer {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.alert-bar-expanded-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}

.alert-bar-expanded-number {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.alert-bar-expanded-text {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: lowercase;
    margin-top: 4px;
}

.alert-bar-expanded-separator {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.alert-bar-expanded-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 220px;
}

.btn-alert-outline.btn-expanded,
.btn-alert-solid.btn-expanded {
    width: 100%;
    justify-content: space-between;
    padding: 0.55rem 1.25rem;
}

/* ==========================================
   RESPONSIVIDADE E ESTILO MOBILE DO ABERTO
   ========================================== */
@media (max-width: 991.98px) {
    body.alert-bar-padding-closed {
        padding-bottom: 60px;
    }
    
    body.alert-bar-padding-open {
        padding-bottom: 0; /* No mobile, o aberto cobre o rodapé como card e flutua */
    }

    /* Mobile Fechado */
    .alert-bar-fixed.is-closed .alert-bar-compact {
        padding: 0 0.5rem;
    }

    .alert-bar-compact-countdown {
        font-size: 0.8rem;
    }

    .alert-bar-compact-title {
        font-size: 0.95rem;
    }

    /* Mobile Aberto: Layout Card Superior Flutuante */
    .alert-bar-fixed.is-open {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 24px 24px 0 0;
        background: #160c41; /* Cor sólida e profunda para mobile */
        padding: 1.5rem 1.1rem;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
    }

    .alert-bar-fixed.is-open .alert-bar-expanded {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .alert-bar-expanded-header {
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
    }

    .alert-bar-expanded-header .alert-bar-live-box {
        display: flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
    }

    .alert-bar-expanded-texts {
        flex-grow: 1;
        text-align: left;
    }

    .alert-bar-expanded-title {
        font-size: 1.15rem;
        margin: 0;
    }

    .alert-bar-expanded-subtitle {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.65);
    }

    .alert-bar-expanded-header .alert-bar-trigger-close {
        position: absolute;
        top: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.08);
    }

    /* Countdown no Mobile */
    .alert-bar-expanded-countdown {
        border-left: none;
        padding-left: 0;
        width: 100%;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1.25rem;
    }

    .alert-bar-expanded-label {
        font-size: 0.65rem;
        margin-bottom: 0.35rem;
        color: rgba(255, 255, 255, 0.45);
    }

    .alert-bar-expanded-timer {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }

    .alert-bar-expanded-unit {
        min-width: 48px;
    }

    .alert-bar-expanded-number {
        font-size: 1.6rem;
    }

    .alert-bar-expanded-separator {
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.3);
    }

    /* Botões no Mobile */
    .alert-bar-expanded-actions {
        width: 100%;
        min-width: 100%;
        flex-direction: column;
        gap: 0.65rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1.25rem;
    }

    .btn-alert-outline.btn-expanded,
    .btn-alert-solid.btn-expanded {
        padding: 0.65rem 1.25rem;
        font-size: 0.82rem;
        border-radius: 12px; /* Visual de card responsivo e moderno */
    }
}

/* ==========================================================================
   ESTILOS PREMIUM DO MENU MOBILE (NOVO - CENTRALIZADO & ROXO)
   ========================================================================== */
@media (max-width: 991.98px) {
    /* 1. Fundo roxo e gradiente com cantos arredondados no menu suspenso móvel */
    .custom-navbar .navbar-collapse {
        background: linear-gradient(135deg, #1b0c4d 0%, #2a157d 100%) !important;
        padding: 1.5rem 1rem !important;
        border-radius: 16px !important;
        margin-top: 0.75rem !important;
        box-shadow: 0 10px 30px rgba(27, 12, 77, 0.35) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    /* 2. Centralização dos itens e espaçamento vertical */
    .custom-navbar .navbar-nav {
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
        gap: 0.5rem !important;
    }
    /* 3. Links do menu: letras brancas (opacidade sutil por padrão para elegância) */
    .custom-navbar .nav-link {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        padding: 0.75rem 2rem !important;
        width: 100% !important;
        max-width: 320px !important;
        border-radius: 30px !important;
        transition: all 0.25s ease !important;
    }
    /* Hover no mobile */
    .custom-navbar .nav-link:hover {
        color: #ffffff !important;
        background-color: rgba(255, 255, 255, 0.08) !important;
    }
    /* 4. Item selecionado/ativo: Roxo vibrante (#5d3dfc) inspirado na grade curricular, letras brancas */
    .custom-navbar .nav-link.active,
    .custom-navbar .active > .nav-link,
    .custom-navbar .current-menu-item > .nav-link,
    .custom-navbar .current_page_item > .nav-link {
        color: #ffffff !important;
        background-color: #5d3dfc !important; /* Roxo mais claro, energético e premium */
        font-weight: 700 !important;
        box-shadow: 0 4px 15px rgba(93, 61, 252, 0.35) !important;
    }
    /* 5. Ocultar o indicador underline ::after no mobile para não sobrepor o fundo do link ativo */
    .custom-navbar .nav-link::after {
        display: none !important;
    }
    /* 6. Centralização e empilhamento do bloco Área do Aluno & Sociais no mobile */
    .custom-navbar .navbar-collapse .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin-top: 1.25rem !important;
        gap: 1.25rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding-top: 1.25rem !important;
    }
    .custom-navbar .btn-nav-aluno {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        font-size: 0.95rem !important;
        padding: 0.75rem 2rem !important;
    }
    .custom-navbar .navbar-social-links {
        justify-content: center !important;
        width: 100% !important;
    }
    
    .custom-navbar .navbar-social-icon {
        background-color: rgba(255, 255, 255, 0.08) !important;
        color: #ffffff !important;
    }
    
    .custom-navbar .navbar-social-icon:hover {
        background-color: #5d3dfc !important;
        color: #ffffff !important;
    }
}

/* ==========================================================================
   FOLHA DE ESTILO EXCLUSIVA: STICKY ALERT BAR & AJUSTES GLOBAIS CEGE
   ========================================================================== */
/* 1. Ajuste global de tamanho de fonte do corpo do site para 1.2rem */
body {
    font-size: 1.2rem !important;
    transition: padding-bottom 0.4s ease;
}
/* 2. Remoção completa de text-decoration do link Área do Aluno */
.btn-nav-aluno {
    text-decoration: none !important;
}
.btn-nav-aluno:hover {
    text-decoration: none !important;
}
/* 3. Estrutura Base e Compensação do Rodapé */
.alert-bar-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #160c41 0%, #2f1784 100%);
    color: #ffffff;
    box-shadow: 0 -4px 35px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* height: 110px; */
}
body.alert-bar-padding-closed {
    padding-bottom: 70px;
}
body.alert-bar-padding-open {
    padding-bottom: 125px; /* Desktop Aberto */
}
.alert-bar-container {
    display: flex;
    align-items: center;
    width: 100%;
}
/* 4. Estilo dos Botões Premium do Alerta */
.btn-alert-outline,
.btn-alert-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    border-radius: var(--border-radius-pill); /* Pílula premium */
}
/* OUTLINE: Bordas translúcidas */
.btn-alert-outline {
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
}
.btn-alert-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}
/* SOLID: Rosa-Coral Premium do CEGE */
.btn-alert-solid {
    background-color: #ff3b6b;
    border: 1.5px solid #ff3b6b;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(255, 59, 107, 0.25);
}
.btn-alert-solid:hover {
    background-color: #ff1c53;
    border-color: #ff1c53;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 107, 0.4);
}
/* Tamanho de ícones SVG nos botões */
.btn-alert-outline svg,
.btn-alert-solid svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-left: 6px;
    transition: transform 0.3s ease;
}
.btn-alert-outline:hover svg,
.btn-alert-solid:hover svg {
    transform: translateX(4px);
}
/* 5. Indicador Verde de Live/Pulsante */
.alert-bar-live-circle {
    width: 20px;
    height: 20px;
    background-color: #00c853; /* Verde vivo */
    border-radius: 50%;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}
.alert-bar-live-circle::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #00c853;
    border-radius: 50%;
    animation: alert-live-pulsate 1.6s infinite ease-out;
    opacity: 0;
}
@keyframes alert-live-pulsate {
    0% { transform: scale(0.6); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}
.alert-bar-live-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.25);
    border-radius: 50%;
    flex-shrink: 0;
}
/* 6. Estado Fechado (Compacto) */
.alert-bar-fixed.is-closed {
    padding: 0.65rem 0;
}
.alert-bar-fixed.is-closed .alert-bar-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.alert-bar-fixed.is-closed .alert-bar-expanded {
    display: none;
}
.alert-bar-compact-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.alert-bar-compact-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}
.alert-bar-compact-divider {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}
.alert-bar-compact-countdown {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}
.alert-timer-inline {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-left: 5px;
}
.alert-bar-compact-right {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}
.alert-bar-compact-buttons {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.btn-alert-outline.btn-sm,
.btn-alert-solid.btn-sm {
    padding: 0.45rem 0.8rem;
    font-size: 1.3rem;
}
.alert-bar-toggle-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.05);
}
.alert-bar-toggle-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
}
.alert-bar-toggle-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 0 !important;
}
/* 7. Estado Aberto (Expandido) */
.alert-bar-fixed.is-open {
    padding: 1.25rem 0;
}
.alert-bar-fixed.is-open .alert-bar-compact {
    display: none;
}
.alert-bar-fixed.is-open .alert-bar-expanded {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 2rem;
    width: 100%;
}
.alert-bar-expanded-header {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}
.alert-bar-expanded-texts {
    display: flex;
    flex-direction: column;
}
.alert-bar-expanded-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
    color: #ffffff;
}
.alert-bar-expanded-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 3px 0 0 0;
    font-weight: 400;
}
.alert-bar-expanded-countdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    border-left: 1px dotted rgba(255, 255, 255, 0.25);
    padding-left: 1.5rem;
}
.alert-bar-expanded-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
.alert-bar-expanded-timer {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.alert-bar-expanded-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}
.alert-bar-expanded-number {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}
.alert-bar-expanded-text {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: lowercase;
    margin-top: 4px;
}
.alert-bar-expanded-separator {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}
.alert-bar-expanded-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 220px;
}
.btn-alert-outline.btn-expanded,
.btn-alert-solid.btn-expanded {
    width: 100%;
    justify-content: space-between;
    padding: 0.55rem 1.25rem;
}
/* 8. Responsividade Otimizada (Mobile slide-up card) */
@media (max-width: 991.98px) {
    body.alert-bar-padding-closed {
        padding-bottom: 60px;
    }
    
    body.alert-bar-padding-open {
        padding-bottom: 0;
    }
    .alert-bar-fixed.is-closed .alert-bar-compact {
        padding: 0 0.5rem;
    }
    .alert-bar-compact-countdown {
        font-size: 0.8rem;
        margin-left: -13px;
    }
    .alert-bar-compact-title {
        font-size: 0.95rem;
        line-height: 17px;
    }
    .alert-bar-fixed.is-open {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 24px 24px 0 0;
        background: #160c41;
        padding: 1.5rem 1.1rem;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
    }
    .alert-bar-fixed.is-open .alert-bar-expanded {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    .alert-bar-expanded-header {
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
    }
    .alert-bar-expanded-header .alert-bar-live-box {
        display: flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
    }
    .alert-bar-expanded-texts {
        flex-grow: 1;
        text-align: left;
    }
    .alert-bar-expanded-title {
        font-size: 1.15rem;
        margin: 0;
    }
    .alert-bar-expanded-subtitle {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.65);
    }
    .alert-bar-expanded-header .alert-bar-trigger-close {
        position: absolute;
        top: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.08);
    }
    .alert-bar-expanded-countdown {
        border-left: none;
        padding-left: 0;
        width: 100%;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1.25rem;
    }
    .alert-bar-expanded-label {
        font-size: 0.65rem;
        margin-bottom: 0.35rem;
        color: rgba(255, 255, 255, 0.45);
    }
    .alert-bar-expanded-timer {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }
    .alert-bar-expanded-unit {
        min-width: 48px;
    }
    .alert-bar-expanded-number {
        font-size: 1.6rem;
    }
    .alert-bar-expanded-separator {
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.3);
    }
    .alert-bar-expanded-actions {
        width: 100%;
        min-width: 100%;
        flex-direction: column;
        gap: 0.65rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1.25rem;
    }
    .btn-alert-outline.btn-expanded,
    .btn-alert-solid.btn-expanded {
        padding: 0.65rem 1.25rem;
        font-size: 0.82rem;
        border-radius: 12px;
    }
    strong#alert-inline-timer-span {
    display: inline-block;
    margin-left:unset;
}
.btn-alert-outline.btn-sm, .btn-alert-solid.btn-sm {
    font-size: 0.78rem;
}

.sobre-text {
    padding: 0px 20px;
}
.hero-badge-box {
    max-width: 80%;
    text-align: center;
}
}