#carouselHome {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev {
    left: 40px;
}

.carousel-item img {
    height: 450px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.carousel-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
    z-index: 2;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.1);
}

.carousel-indicators {
    bottom: 15px;
}

.carousel-indicators [data-bs-target] {
    background-color: #fff;
    width: 20px;
    height: 10px;
    border-radius: 10px;
    margin: 0 6px;
    opacity: 0.7;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    width: 20px;
    height: 10px;
    opacity: 1;
    transform: scale(1.2);
}

.carousel-caption {
    padding: 25px 40px;
    bottom: 50px;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    justify-items: center;
    z-index: 2;
}

.carousel-caption h5 {
    color: var(--light-color);
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.carousel-caption p {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.carousel-caption .btn {
    justify-content: center;
    background-color: var(--light-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    align-items: center;
    display: flex;
    color: var(--cor-primaria);
}

.carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}