.formacao-carreiras-container {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.title-topics{
    color: #024248;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.formacao-carreiras-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.formacao-carreiras-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.formacao-carreiras-card {
    background-color: rgba(255, 255, 255, 0.95);
    max-width: 400px;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.card-header h2 {
    color: #024248;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.periodo-info {
    color: #333840;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.descricao {
    color: #333840;
    margin-bottom: 10px;
    line-height: 1.5;
}

.menu-items {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    color: #007d7a;
}

.menu-item {
    margin-bottom: 12px;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f0f0f0;
}

.menu-link:hover {
    width: 400px;
    padding-left: 24px;
    padding-right: 28px;
    margin-left: -24px;
    background-color: rgba(74, 155, 142, 0.05);
}

.menu-title {
    font-weight: 500;
    flex-grow: 1;
}

.menu-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.menu-link:hover i {
    transform: translateX(5px);
}

.menu-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4a9b8e;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.menu-link:hover .menu-icon {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .formacao-carreiras-card {
        margin: 0 10px;
        padding: 20px;
    }
    
    .card-header h2 {
        font-size: 1.5rem;
    }

    .formacao-carreiras-container {
        margin-top: 100px;
    }
}