/* ===== SECCIÓN PRINCIPAL ===== */
.diploma-doctoralia-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.diploma-doctoralia-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* ===== COLUMNAS ===== */
.doctoralia-column,
.diplomas-column {
    flex: 1 1 48%;
    min-width: 300px;
}

/* ===== TÍTULO ===== */
.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1d3553;
    text-align: center;
}

/* ===== DOCTORALIA WIDGET ===== */
.doctoralia-widget {
    display: flex;
    justify-content: center;
}

/* ===== SWIPER CARRUSEL ===== */
.diplomas-carousel {
    width: 100%;
    min-height: 300px;
    /* importante para que se vea */
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== IMÁGENES DE DIPLOMAS ===== */
.swiper-slide img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.swiper-slide img:hover {
    transform: scale(1.03);
}

/* ===== BOTONES SWIPER (estilo opcional) ===== */
.swiper-button-next,
.swiper-button-prev {
    color: #608097;
}

/* ===== PAGINACIÓN ===== */
.swiper-pagination {
    margin-top: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .diploma-doctoralia-container {
        flex-direction: column;
        align-items: center;
    }

    .doctoralia-column,
    .diplomas-column {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }
}