.banners-home {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.banners-slider {
    position: relative;
    width: 100%;
}

.banner-item {
    display: none;
    width: 100%;
    position: relative;
}

.banner-item.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 5;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.banner-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    padding: 0 15px;
}

.banner-arrow {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
}

.banner-arrow:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.banner-arrow i {
    font-size: 30px;
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 1.5rem;
    }
    .banner-subtitle {
        font-size: 1rem;
    }
    .banner-content {
        left: 5%;
    }
}
