/* -----------------------------------------------------------
 * HERO SLIDER – FRONTEND
 * ----------------------------------------------------------- */

.mhs-hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 550px;          /* ALTURA RECOMENDADA DESKTOP */
    max-height: 550px;
}

.mhs-hero-track {
    display: flex;
    transition: transform 0.6s ease;
    height: 100%;
}

/* Cada slide */
.mhs-hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Imagem */
.mhs-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;      /* IGUAL À PRIMOR */
    z-index: 1;
}

/* Camada onde ficam título, texto e botão */
.mhs-hero-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Título, texto e botão */
.mhs-hero-title,
.mhs-hero-text,
.mhs-hero-btn-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

/* Botão */
.mhs-hero-btn {
    display: inline-block;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

/* -----------------------------------------------------------
 * DOTS
 * ----------------------------------------------------------- */
.mhs-hero-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.mhs-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ffffff80;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.mhs-dot.active {
    background: #fff;
}

/* -----------------------------------------------------------
 * ARROWS
 * ----------------------------------------------------------- */
.mhs-hero-arrows button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff80;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 22px;
    z-index: 4;
}

.mhs-hero-prev { left: 10px; }
.mhs-hero-next { right: 10px; }

/* -----------------------------------------------------------
 * MOBILE
 * ----------------------------------------------------------- */
@media (max-width: 768px){

    /* ALTURA MOBILE (METADE DO DESKTOP) */
    .mhs-hero-slider {
        height: 275px;
        max-height: 275px;
    }

    /* ESCONDER SETAS NO MOBILE */
    .mhs-hero-arrows {
        display: none !important;
    }
}
