/* Home Slider Simple - Estilos */

.hss-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hss-slide {
    display: flex !important;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

/* Bloque de texto */
.hss-text {
    width: 33.333%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    box-sizing: border-box;
    z-index: 10;
}

.hss-title {
    margin: 0 0 15px 0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.hss-subtitle {
    margin: 0 0 25px 0;
    font-size: 1.125rem;
    line-height: 1.5;
    color: #fff;
}

.hss-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hss-button:hover {
    background-color: #005a87;
    transform: translateY(-2px);
}

/* Bloque de imagen */
.hss-image-wrap {
    width: 66.667%;
    height: 100%;
    overflow: hidden;
}

.hss-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Flechas */
.hss-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.hss-arrow:hover {
    background-color: rgba(0,0,0,0.8);
}

.hss-prev {
    left: 20px;
}

.hss-next {
    right: 20px;
}

/* Puntos */
.hss-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.hss-dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    opacity: 1;
    margin: 0 5px;
}

.hss-dots .swiper-pagination-bullet-active {
    background-color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .hss-slider {
        height: auto;
        min-height: 400px;
    }
    
    .hss-slide {
        flex-direction: column;
    }
    
    .hss-text,
    .hss-image-wrap {
        width: 100%;
    }
    
    .hss-text {
        padding: 30px;
        order: 1;
    }
    
    .hss-image-wrap {
        height: 300px;
        order: 2;
    }
    
    .hss-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hss-text {
        padding: 25px 20px;
    }
    
    .hss-image-wrap {
        height: 250px;
    }
    
    .hss-title {
        font-size: 1.5rem;
    }
    
    .hss-subtitle {
        font-size: 1rem;
    }
    
    .hss-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hss-prev {
        left: 10px;
    }
    
    .hss-next {
        right: 10px;
    }
}

/* Accesibilidad */
.hss-arrow:focus-visible {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}
