/* ============================================================================
   SLIDESHOW HERO
   ============================================================================ */
.hero-slideshow {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 0;
    position: relative;
    top: 0;
    z-index: 1;
    display: block;
}

#hero-slideshow {
    width: 100%;
    display: block;
}

#hero-slideshow .splide__track {
    width: 100%;
}

#hero-slideshow .splide__list {
    width: 100%;
    display: flex;
}

#hero-slideshow .splide__slide {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: hidden;
    display: block;
}

.slide-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 800px;
}

.slide-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    padding: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-text {
    max-width: 1185px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 13.5);
    text-align: center;
    max-width: 100%;
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 13.5);
    max-width: 785px;
    margin: 0 auto;
    text-align: center;
}

/* Splide Customização */
#hero-slideshow .splide__arrow {
    background: rgba(255, 255, 255, 0.9);
    opacity: 0.8;
    width: 50px;
    height: 50px;
}

#hero-slideshow .splide__arrow:hover {
    opacity: 1;
    background: var(--cor-principal);
}

#hero-slideshow .splide__arrow svg {
    fill: var(--cor-texto);
    width: 24px;
    height: 24px;
}

#hero-slideshow .splide__arrow:hover svg {
    fill: white;
}

#hero-slideshow .splide__pagination {
    bottom: 2rem;
}

#hero-slideshow .splide__pagination__page {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

#hero-slideshow .splide__pagination__page.is-active {
    background: var(--cor-principal);
    transform: scale(1.2);
}

/* Responsivo */
@media (max-width: 768px) {
    #hero-slideshow .splide__slide {
        height: 500px;
    }
    
    .slide-overlay {
        padding: 1.5rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    #hero-slideshow .splide__arrow {
        width: 40px;
        height: 40px;
    }
}

