/* HERO CONTAINER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    /* pode trocar por 100vh se quiser */
    overflow: hidden;
}

/* SLIDES */
.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

/* SLIDE ATIVO */
.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

/* IMAGEM */
.hero-slider .slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTEÚDO */
.hero-slider .slide-content {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #fff;
}

/* BOTÃO */
.hero-slider .slide-content a {
    margin-top: 20px;
    padding: 12px 28px;
    background: #0b2c4d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}