.home-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-slider .splide__slide {
    position: relative;
}

.home-slider .splide__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home-slider .slider-content {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.home-slider .slider-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.home-slider .slider-button:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
}

/* Controles do Splide */
.home-slider .splide__arrow {
    background: rgba(255, 255, 255, 0.3);
    width: 3rem;
    height: 3rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.home-slider .splide__track {
    padding: 0!important;
}

.home-slider:hover .splide__arrow {
    opacity: 1;
}

.home-slider .splide__arrow svg {
    fill: #fff;
    width: 1.5rem;
    height: 1.5rem;
}

.home-slider .splide__pagination {
    bottom: 1rem;
}

.home-slider .splide__pagination__page {
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.home-slider .splide__pagination__page.is-active {
    background: #fff;
    transform: scale(1.4);
} 