/* Estilos específicos para corrigir o carrossel de hero */
.hb-hero {
    position: relative;
    overflow: hidden;
}

.hb-hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hb-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hb-hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hb-hero-content {
    position: relative;
    z-index: 5;
}

/* Indicadores personalizados para o hero */
.hb-hero-indicators {
    position: absolute;    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hb-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hb-indicator.active {
    background: #FF3333;
    transform: scale(1.2);
}