.hero-sliders {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-top: 2rem;
}

/* Slider */
.hero-slider {
    width: 100%;
    height: 100%;
}

/* Slides */
.carousel-cell {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Video */
.carousel-cell.is-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido */
.carousel-cell .inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    z-index: 2;
    padding: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Textos */
.subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Botón */
.btn {
    padding: 14px 26px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* Flickity */
.flickity-prev-next-button {
    width: 60px;
    height: 60px;
    background: transparent;
}

.flickity-prev-next-button .arrow {
    fill: #fff;
}

.flickity-page-dots {
    bottom: 40px;
}

.flickity-page-dots .dot {
    width: 28px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0;
    opacity: 1;
}

.flickity-page-dots .dot.is-selected {
    background: #ff0000;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-sliders {
        height: 80vh;
    }

    .title {
        font-size: 2rem;
    }
}