.jornadas-container {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.jornadas-info {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.jornadas-titulo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 15px;
}

.jornadas-lista {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.jornada-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e9ecef;
}

.jornada-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.jornada-texto {
    flex-grow: 1;
}

.jornada-lugar .icon-jornada,
.jornada-fechas .icon-jornada {
    margin-right: 8px;
}

.jornada-lugar {
    font-weight: bold;
    font-size: 1.1rem;
    color: #0056b3;
    margin-bottom: 5px;
}

.jornada-fechas {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 0;
}

.jornada-boton {
    margin-left: 15px;
}

.btn-agendar {
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.carousel-inner {
    border-radius: 8px;
    overflow: hidden;
    background-color: #e9ecef;
}

.carousel-image {
    object-fit: contain;
    height: 760px;
    width: 100%;
}

.carousel-item {
    transition: transform .6s ease-in-out;
}

.carousel-control-prev, .carousel-control-next {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 18px;
    background-size: 60%;
    width: 50px;
    height: 50px;
}

/* --- Media Queries para Responsividad --- */

/* Para Tablets (menor a 992px) */
@media (max-width: 991.98px) {
    .jornadas-info {
        margin-top: 30px; /* Espacio entre carrusel y lista en vista de tablet/móvil */
    }

    .carousel-image {
        height: 500px; /* Altura reducida para tablets */
    }

    .jornadas-titulo {
        font-size: 1.5rem;
    }
}

/* Para Móviles (menor a 768px) */
@media (max-width: 767.98px) {
    .jornadas-container {
        padding: 20px 10px;
    }

    .carousel-image {
        height: 300px; /* Altura muy reducida para móviles */
    }

    .jornada-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .jornada-boton {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .btn-agendar {
        width: 100%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 12px;
        background-size: 55%;
        width: 35px;
        height: 35px;
    }
}
