/* ============================================================
   HERO SLIDER WRAPPER
============================================================ */
.mhs-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Cada slide */
.mhs-hero-slide {
    position: relative;
    width: 100%;
    height: 600px; /* altura desktop */
    overflow: hidden;
}

/* ============================================================
   IMAGEM DE FUNDO
============================================================ */
.mhs-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* ============================================================
   OVERLAY (opcional)
============================================================ */
.mhs-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25); /* podes ajustar */
    z-index: 2;
}

/* ============================================================
   ELEMENTOS DO SLIDE (TÍTULO, SUBTÍTULO, BOTÃO)
============================================================ */
.mhs-hero-title,
.mhs-hero-subtitle,
.mhs-hero-button {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-family: inherit;
    white-space: nowrap;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* Título */
.mhs-hero-title {
    font-weight: 700;
}

/* Subtítulo */
.mhs-hero-subtitle {
    font-weight: 400;
    opacity: 0.95;
}

/* Botão */
.mhs-hero-button {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.mhs-hero-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* ============================================================
   MOBILE AUTOMÁTICO
============================================================ */
@media (max-width: 768px) {

    .mhs-hero-slide {
        height: 340px; /* altura mobile automática */
    }

    .mhs-hero-title {
        font-size: clamp(18px, 5vw, 28px) !important;
    }

    .mhs-hero-subtitle {
        font-size: clamp(14px, 4vw, 20px) !important;
    }

    .mhs-hero-button {
        font-size: clamp(12px, 3.5vw, 18px) !important;
        padding: 8px 18px;
    }
}

/* ============================================================
   ANIMAÇÕES (PRONTO PARA FADE / AUTOPLAY)
============================================================ */
.mhs-hero-slide {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.mhs-hero-slide.mhs-active {
    opacity: 1;
    z-index: 10;
}
