.education-level {
   color: var(--Preto, #000);
    font-family: Poppins;
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.breadcrumb-current{
    color: var(--Cinza-default, #49454F);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}

.unit-main-title {
    color: var(--Preto, #000);
    font-family: Poppins;
    font-size: 51px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 8px;
}

.unit-secondary-title {
    color: var(--Cinza-default, #49454F);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 16px;
}

.breadcrumb-section {
   color: var(--Cinza-default, #49454F);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.unit-color {
    color: var(--unit-color, #F47F29);
}

.unit-color::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--unit-color, #F47F29);
    opacity: 0.1;
    z-index: 0;
}

.unit-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.back-btn {
    color: #F47F29;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.back-btn:hover {
    color: #d96a1a;
    text-decoration: none;
}

.unit-subtitle {
    color: var(--Cinza-default, #49454F);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.unit-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.unit-info-container {
    display: flex;
    align-items: center;
    gap: 22px;
    align-self: stretch;
}

.info-header {
    background: #f8f9fa;
    padding: 18px 24px;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    font-size: 22px;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.info-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: currentColor;
    opacity: 0.05;
    z-index: 0;
}

.info-icon > * {
    position: relative;
    z-index: 1;
}

.informations-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 2px;
    flex: 1;
}

.info-label {
    color: #000;
    margin-bottom: unset !important;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}

.info-content {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; 
}

.info-text {
   color: #000;
    margin-bottom: unset !important;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; 
}

.info-text:last-child {
    margin-bottom: 0;
}

.info-link {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

.info-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-title {
    height: 48px;
    width: 60%;
    margin-bottom: 8px;
    border-radius: 4px;
}

.skeleton-subtitle {
    height: 18px;
    width: 40%;
    margin-bottom: 40px;
    border-radius: 4px;
}

.skeleton-section {
    height: 100px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
}

.error-message {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
}

.error-text {
    color: #c53030;
    font-family: Poppins;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

