 .responsive-image .mobile-image {
        display: none; /* Oculta la imagen móvil por defecto */
    }

    .item_opc{
        text-align: center;
        display: block;
        /*font-size: var(--txt_size);*/
        font-family: 'Work Sans';
        color: inherit;
        font-size: 16px;
    }

    .list_lp{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    font-size: 16px;
    /*font-size: 16px;
    color: #667076;*/
    /*font-weight: bold;*/
    width: 100%;
    max-width: 930px;
}

.video-container {
    border-radius: 30px; /* Ajusta el valor para el grado de redondeo deseado */
    overflow: hidden; /* Para que el borde recorte el iframe */

    position: relative;
    width: 100%; /* Ancho completo del contenedor */
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 (9/16 = 0.5625) */
    height: 0; /* Altura cero para el efecto del padding */
    overflow: hidden; /* Oculta cualquier desbordamiento */
}

.video-container iframe {
    position: absolute; /* Posiciona el iframe absolutamente */
    top: 0;
    left: 0;
    width: 100%; /* Ancho completo del contenedor */
    height: 100%; /* Altura completa del contenedor */
}

.bloke_lp {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: #f5f5f5; /* plomo claro */
    border-radius: 12px; /* esquinas redondeadas */
    padding: 20px; /* espacio interno opcional */
    margin-top: 40px;

}



.contenido-servicio h4 {
    margin-bottom: 20px;
    margin-top: 20px;
}
.contenido-servicio p{
    /*font-size: var(--txt_size);*/
    font-family: 'Work Sans';
    color: inherit;
}
.item_list-txt .item_opc-txt{
    font-size: var(--txt_size)!important;
    font-family: 'Work Sans'!important;
    color: inherit!important;
}

.avatar {
  width: 100px; /* o usa porcentaje si necesitas adaptabilidad */
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foto_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  max-width: 100%;
}

.avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}


.contenedor_general * {
    padding: 0;
    outline: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    color: inherit;
    line-height: 1;
    /*font-size: var(--txt_size);*/
    font-family: 'Work Sans';
    color: inherit;
}

    @media screen and (max-width: 1024px) {
        .list_lp {
            font-size: var(--txt_size)!important;
        }
    }


    @media (max-width: 767px) {
        .banner-nosotros {
        height: 473px;
        }
        .responsive-image .desktop-image {
            display: none; /* Oculta la imagen de desktop en móviles */
        }
        .responsive-image .mobile-image {
            display: block; /* Muestra la imagen móvil */
        }
        img{
            width: 80%;
        }
    }

    @media screen and (min-width: 2560px) {
        .banner-nosotros {
            height: 599px;
        }
    }