/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px; /* Ancho base para móviles */
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-custom {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px); /* Efecto Glassmorphism */
    border-top: 1px solid rgba(255, 255, 255, 0);
    color: white;
    transform: translateY(100%);
    transition: 0.4s ease-in-out;
}

.swiper-slide-active .card-info,
.card-custom:hover .card-info {
    transform: translateY(0);
}

.card-info h5 {
    margin: 0;
    font-weight: 700;
}

/* Personalización de botones de navegación */
.swiper-button-next, .swiper-button-prev {
    color: #000;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}