.hero-banner {
    max-width: 100%;
    padding-top: 40px;
    box-sizing: border-box;
}


.banner-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
}

.custom-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carrusel-inner {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.carrusel-item {
    min-width: 100%;
    display: none;
}

.carrusel-item.active {
    display: block;
}

.carrusel-image {
    width: 100%;
    height: auto;
    object-fit: fill;
    display: block;
}

.carrusel-indicators {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 1;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

@media (min-width: 1024px) {

    .carrusel-indicators {
        bottom: 20px;
    }

    .indicator-dot {
        width: 12px;
        height: 12px;
    }
    
}