/* CSS Base do Hero Slider - Customize conforme necessário */

.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
    z-index: 50;
}


.hero-titulo {
    margin-bottom: 0px;
}

.hero-palavra-destaque {
    display: inline-block;
    font-size: 4rem;
    font-weight: bold;
    margin: 0px 0;
}

.hero-slide-images {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.hero-imagem-menor,
.hero-imagem-principal {
    max-width: 100%;
    height: auto;
}

.hero-slider-controls {
    display: none;
}

.hero-prev,
.hero-next {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.hero-slider-dots {
    padding: 20px 0;
    margin: 0;
    position: relative;
    z-index: 50;
}

.hero-dot {
    width: 52px;
    height: 12px;
    border-radius: 8px;
    background: #fff;
    border: none;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-slider-dots .active {
    background: #47B2E1;
}


/* Responsivo */
@media (max-width: 768px) {
    .hero-slide {
        flex-direction: column;
        padding: 20px;
    }

    .hero-titulo {
        font-size: 2rem;
    }

    .hero-palavra-destaque {
        font-size: 2.5rem;
    }

    .hero-slide-images {
        flex-direction: column;
        margin-top: 20px;
    }
}