/* Carrossel */
.carrossel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/9;
    margin-bottom: 15px;
}

.carrossel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carrossel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carrossel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
}

.carrossel-prev { left: 15px; }
.carrossel-next { right: 15px; }

.carrossel-indicadores {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.carrossel-indicador {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.carrossel-indicador.ativo {
    background: var(--cor-primaria);
}