
.lamovida-slider {
    padding: 20px;
    background: #f3f3f3;
    border-radius: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.lamovida-title {
    color: #c00;
    font-size: 32px;
    margin-bottom: 20px;
}
.lamovida-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
}
.lamovida-slide {
    background: white;
    border-radius: 16px;
    padding: 10px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.lamovida-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.lamovida-slide h3 {
    font-size: 20px;
    margin: 10px 0 5px;
    color: #5e2671;
}
.lamovida-slide p {
    font-size: 16px;
    color: #444;
}
.podcast-icon {
    font-size: 14px;
    color: #800080;
    margin-top: 5px;
}

.lamovida-nav {
    text-align: center;
    margin-bottom: 10px;
}
.lamovida-prev, .lamovida-next {
    background: #c00;
    color: white;
    border: none;
    padding: 6px 12px;
    margin: 0 4px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
}
.lamovida-prev:hover, .lamovida-next:hover {
    background: #a00;
}
