/* ========== CARROSSEL ========== */
.avox-carrossel-wrapper {
    margin: 40px 0;
}

.avox-carrossel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.avox-carrossel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.avox-carrossel-slide {
    min-width: 100%;
    position: relative;
}

.avox-carrossel-slide img {
    width: 100%;
    height: 55vw;
    max-height: 570px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border: none;
}

.avox-carrossel-legenda {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
    color: #fff;
    padding: 20px 20px 15px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 0.95rem;
    font-style: italic;
    min-height: 50px;
}

.avox-carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 93, 98, 0.75);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avox-carrossel-btn:hover {
    background: rgba(30, 93, 98, 1);
}

.avox-carrossel-btn.prev {
    left: 12px;
}

.avox-carrossel-btn.next {
    right: 12px;
}

.avox-carrossel-dots {
    text-align: center;
    padding: 12px 0 0;
}

.avox-carrossel-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.avox-carrossel-dots span.ativo {
    background: var(--cor-subtitulo, #1E5D62);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    .avox-carrossel-slide img {
        height: 60vw;
        max-height: 380px;
    }

    .avox-carrossel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .avox-carrossel-slide img {
        height: 70vw;
        max-height: 280px;
    }
}