/* Estilos para a seção de Cursos Extras */
.cursos-extras-section {
    padding: 30px 0;
    margin-top: 50px;
    border-top: 2px dashed #e0e0e0;
    position: relative;
}

.cursos-extras-section:before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 2px dashed #e0e0e0;
    border-radius: 50%;
}

.cursos-extras-section h2.title {
    color: #0066cc;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.cursos-extras-section h2.title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #0066cc;
}

.curso-extra-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
}

.curso-extra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.curso-extra-card .card-body {
    padding: 25px;
}

.curso-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.curso-extra-card h4.card-title {
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 15px;
}

.curso-extra-card .btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.curso-extra-card .btn-primary:hover {
    background-color: #004c99;
    border-color: #004c99;
    transform: scale(1.05);
}

/* Estilos para os modais */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background-color: #0066cc;
    color: white;
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
}

.modal-body h4, .modal-body h5 {
    color: #0066cc;
    margin-top: 15px;
    margin-bottom: 10px;
}

.modal-footer {
    border-top: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .curso-extra-card {
        margin-bottom: 20px;
    }
}