.widget_pablosartal_servicios {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #f0f0f0;
    padding: 50px;
}

.cabecera-item {
    width: 100%;
    font-size: 14rem;
    text-transform: uppercase;
}

.hover-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    min-height: 50vh;
    overflow: hidden;
}

.homepage .textos-laterales {
    width: 100%;
    align-items: center;
    text-align: start;
}

.textos-laterales {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: end;
    gap: 10px;
    z-index: 2;
}

.titulo-item {
    font-size: 10rem;
    cursor: pointer;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.titulo-item .numero-item {
    font-size: 5rem;    
    align-self: flex-start;
}

.homepage .descripcion-item {
    display: none !important;
}

.descripcion-item {
    font-size: 2.5rem;
}

.homepage .imagen-hover {
    left: 0;
    background-position: center;
}

.imagen-hover {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Más de 2400px (Ultra-wide screens) */
@media (min-width: 2401px) {
    /* Estilos para pantallas ultra anchas */
}

/* Hasta 2400px (Pantallas grandes) */
@media (max-width: 2400px) {
    /* Estilos para pantallas grandes */
}

/* Hasta 1336px (Laptops medianos) */
@media (max-width: 1336px) {
    /* Estilos para laptops medianos */
}

/* Hasta 1200px (Laptops pequeños) */
@media (max-width: 1200px) {
    /* Estilos para laptops pequeños */
}

/* Hasta 1024px (Tablets grandes) */
@media (max-width: 1024px) {
    /* Estilos para tablets grandes */
}

/* Hasta 880px (Tablets pequeños) */
@media (max-width: 880px) {
    /* Estilos para tablets pequeños */

    .cabecera-item {
        font-size: 3.5rem;
    }

    .widget_pablosartal_servicios {
        padding: 5px;
    }

    .textos-laterales {
        width: 100%;
        align-items: flex-start;
        text-align: start;
    }

    .titulo-item {
        font-size: 2.5rem;
        flex-direction: row-reverse;
    }

    .descripcion-item {
        font-size: 1rem;
    }

    .titulo-item .numero-item {
        font-size: 1.5rem;
    }
}

/* Hasta 767px (Mobile) */
@media (max-width: 767px) {
    /* Estilos para móvil */
}