/* Estilos específicos para o header institucional */

.header-institucional {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-institucional .main-nav .nav-link {
    font-weight: 600;
    color: #4a462a;
    transition: color 0.3s ease;
}

.header-institucional .main-nav .nav-link:hover {
    color: #a90259;
}

.header-institucional.mobile-header .mobile-nav-link {
    color: #4a462a;
    font-weight: 600;
}

.header-institucional.mobile-header .mobile-nav-link:hover {
    color: #a90259;
}


/* Estilos para breadcrumb institucional */

.breadcrumb {
    background-color: #f6f5f4;
    padding: 0.75rem 0;
}

.breadcrumb .breadcrumb-link {
    color: #6d664e;
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb .breadcrumb-link:hover {
    color: #a90259;
}

.breadcrumb .breadcrumb-current {
    font-weight: 600;
}


/* Estilos para o ícone de imagem dos segmentos educacionais */

.menu-card .card-icon .icon-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.menu-card .card-icon .icon-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}


/* Estilos existentes para o placeholder (manter se já existirem) */

.menu-card .card-icon .icon-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}


/* Estilos para os badges no menu mobile */

.mobile-dropdown-link {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
}

.mobile-badge-success {
    background-color: #e9f4e5;
    color: #5d923e;
}

.mobile-badge-info {
    background-color: #e6f0f9;
    color: #3a7cba;
}