/*
 * Estilos para el Frontend del Figole Hero Slider
 */

.fhs-slider-wrapper {
    position: relative;
    height: 85vh; /* <-- Altura para desktop */
    min-height: 500px;
    color: white;
    overflow: hidden;
}

.fhs-slider-wrapper h1 {
    line-height: 1 !important;
}

.fhs-slider-container h1 {
    line-height: 1 !important;
}

/* --- INICIO DEL CAMBIO --- */
/* Media query para ajustar la altura y tipografía en móviles */
@media (max-width: 768px) {
    .fhs-slider-wrapper {
        height: 90vh; /* <-- Altura para móvil */
        min-height: 0; /* Reseteamos el min-height en móvil */
    }

    /* NUEVO: Ajuste de tamaño de fuente para h1 en móvil */
.fhs-slider-wrapper h1 {
        font-size: 2.5rem !important;
    }
}
/* --- FIN DEL CAMBIO --- */

.fhs-slider-container {
    position: absolute;
    inset: 0;
}

.fhs-slider-item {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.fhs-slider-item.active {
    display: flex;
    opacity: 1;
    z-index: 1;
}

.fhs-slide-logo {
    max-height: 80px;
    width: auto;
    max-width: 250px;
}

.fhs-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 51%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

/* === CAMBIO REALIZADO AQUÍ (DOTS) === */
.fhs-slider-wrapper .fhs-slider-dots button {
    all: unset !important;
    display: block !important;
    box-sizing: border-box !important;
    width: 0.75rem !important;
    height: 0.75rem !important;
    border-radius: 9999px !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    padding: 0 !important;
    border: none !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.fhs-slider-wrapper .fhs-slider-dots button:hover {
    background-color: rgba(255, 255, 255, 0.75) !important;
}

.fhs-slider-wrapper .fhs-slider-dots button.active {
    background-color: white !important;
}
/* === FIN DEL CAMBIO (DOTS) === */


/* --- ESTILOS DEL BOTÓN PRINCIPAL --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: #0071e3;
    color: white;
}

.btn-primary:hover {
    background-color: #0077ed;
}