/* ================================================
   Mobile Hero Slider (custom) - Selectores específicos
   ================================================ */
#mobileHeroSlider {
    position: relative;
    min-height: 760px;
    display: block;
    overflow: hidden;
}

#mobileHeroSlider .mhs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
}

#mobileHeroSlider .mhs-slide.active {
    opacity: 1;
    visibility: visible;
}

#mobileHeroSlider .mhs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.438) 0%, rgba(44, 24, 16, 0.65) 50%, rgba(0, 0, 0, 0.281) 100%);
}

#mobileHeroSlider .mhs-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 30px 16px;
    color: #fff !important;
}

#mobileHeroSlider .mhs-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #540000 !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700 !important;
    font-size: 13px !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    text-shadow: none !important;
}

#mobileHeroSlider .mhs-title {
    margin: 16px 0 12px !important;
    font-family: 'Anton', sans-serif !important;
    font-weight: 700 !important;
    font-size: 42px !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6) !important;
    color: #ffffff !important;
}

#mobileHeroSlider .mhs-title span { 
    color: #FFD700 !important; 
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.3) !important;
}

#mobileHeroSlider .mhs-subtitle {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 20px !important;
    font-weight: 400 !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5) !important;
}

#mobileHeroSlider .mhs-buttons { 
    display: flex; 
    gap: 12px; 
    flex-wrap: wrap; 
    justify-content: center; 
    margin-bottom: 18px; 
}

#mobileHeroSlider .mhs-btn { 
    display: inline-flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    padding: 13px 26px !important; 
    border-radius: 999px !important; 
    font-weight: 700 !important; 
    font-size: 15px !important; 
    text-decoration: none !important; 
    letter-spacing: .5px !important; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
}

#mobileHeroSlider .mhs-btn.primary { 
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important; 
    color: #540000 !important; 
}

#mobileHeroSlider .mhs-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6) !important;
    color: #540000 !important;
}

#mobileHeroSlider .mhs-btn.secondary { 
    background: #25D366 !important; 
    color: #ffffff !important; 
}

#mobileHeroSlider .mhs-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
    background: #20BA5A !important;
    color: #ffffff !important;
}

#mobileHeroSlider .mhs-btn i { 
    margin-right: 8px; 
    font-size: 18px; 
}

#mobileHeroSlider .mhs-features { 
    display: flex; 
    gap: 18px; 
    flex-wrap: wrap; 
    justify-content: center; 
    padding-top: 16px; 
    border-top: 1px solid rgba(255, 215, 0, 0.4);
}

#mobileHeroSlider .mhs-feature { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 14px !important; 
    color: #ffffff !important;
    font-weight: 500 !important;
}

#mobileHeroSlider .mhs-feature i { 
    color: #FFD700 !important; 
    font-size: 16px; 
}

#mobileHeroSlider .mhs-feature span {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* staggered appear */
#mobileHeroSlider .mhs-slide .anim { 
    opacity: 0; 
    transform: translateY(16px); 
}

#mobileHeroSlider .mhs-slide.active .anim { 
    animation: mhsFadeUp .65s ease forwards; 
}

@keyframes mhsFadeUp { 
    from { opacity: 0; transform: translateY(16px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Responsive tweaks */
@media (min-width: 481px) and (max-width: 768px) {
    #mobileHeroSlider { min-height: 520px; }
    #mobileHeroSlider .mhs-title { font-size: 44px !important; }
    #mobileHeroSlider .mhs-subtitle { font-size: 19px !important; }
}

@media (max-width: 480px) {
    #mobileHeroSlider { min-height: 87vh; }
    #mobileHeroSlider .mhs-title { font-size: 36px !important; }
    #mobileHeroSlider .mhs-subtitle { font-size: 16px !important; }
    #mobileHeroSlider .mhs-btn { 
        padding: 12px 22px !important; 
        font-size: 14px !important; 
    }
}

@media (max-width: 375px) {
    #mobileHeroSlider .mhs-title { font-size: 32px !important; }
    #mobileHeroSlider .mhs-subtitle { font-size: 15px !important; }
}

/* Dots */
#mobileHeroSlider .mhs-dots { 
    position: absolute; 
    bottom: 14px; 
    left: 0; 
    right: 0; 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    z-index: 3; 
}

#mobileHeroSlider .mhs-dot { 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.5); 
    border: 0; 
    padding: 0; 
    cursor: pointer;
    transition: all 0.3s ease;
}

#mobileHeroSlider .mhs-dot.active { 
    background: #FFD700; 
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Hide on desktop */
@media (min-width: 992px) {
    #mobileHeroSlider {
        display: none !important;
    }
}
