#Cabecera {
    height: 100vh;
    justify-content: center;
    align-items: center;
}

#Cabecera .Background {
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

#Cabecera .BOX-Titulo {
    z-index: 1;
    text-align: center;
}

#Cabecera .BOX-Titulo h1 {
    color: #fff;
    font-size: 90px;
    line-height: 95px;
    position: relative;
}

#Cabecera .BOX-Titulo .TXT-BLC-Trans{
    opacity: 0.7;
}

.BOX-Titulo.Titulo-Doble {
    position: relative;
    min-height: 150px; /* Asegura altura para ambos títulos */
}

#Cabecera .BOX-Titulo > div {
  top: 0; left: 0; width: 100%;
}

#Cabecera .Titulo-Seguridad{
  opacity: 0;  
  height: 0px;                /* ya lo tienes */
  transform: translateY(40px); /* empieza ligeramente más ABAJO */
  transition:                     /* suavidad */
    transform .8s ease,
    opacity   .8s ease;

}

/*  Cuando JS añade .animar */
#Cabecera .Titulo-Seguridad.animar{
  opacity: 1;                   /* ya lo tienes */
  transform: translateY(-50%); /* súbelo 50 px por ENCIMA
                               (ajusta la cifra a tu gusto) */
                               height: auto;     
}

#Cabecera .Titulo-Seguridad .aparece-1,
#Cabecera .Titulo-Seguridad .aparece-2,
#Cabecera .Titulo-Seguridad .aparece-3,
#Cabecera .Titulo-Seguridad .desplazamiento {
  animation-play-state: paused !important;
}

@keyframes fadeOut {
  to { opacity: 0; }
}

.Titulo-Primario.fadeOut {
  animation: fadeOut .8s forwards;
}

#Cabecera .Titulo-Seguridad.animar { 
  opacity: 1 !important;
}

#Cabecera .Titulo-Seguridad.animar .aparece-1 {
  opacity: 0;
  animation: fadeIn-transparente 1s ease-in-out forwards;
  animation-delay: 1s;
}

#Cabecera .Titulo-Seguridad.animar .desplazamiento {
  position: absolute;
  right: 22%;
  white-space: nowrap;
  opacity: 0;
  animation: moverIzquierda 2s ease-in-out forwards;
  animation-delay: 2s;
}

#Cabecera .Titulo-Seguridad.animar .aparece-2 {
  position: absolute;
  left: calc(50% + 20px);
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn-no-transparente 1s ease-in-out forwards;
  animation-delay: 4s;
}

#Cabecera .Titulo-Seguridad.animar .aparece-3 {
  opacity: 0;
  animation: fadeIn-transparente 1s ease-in-out forwards;
  animation-delay: 5s;
}

#Cabecera .Titulo-Seguridad.animar .aparece-1,
#Cabecera .Titulo-Seguridad.animar .aparece-2,
#Cabecera .Titulo-Seguridad.animar .aparece-3,
#Cabecera .Titulo-Seguridad.animar .desplazamiento {
  animation-play-state: running !important;
}

#Cabecera .BOX-Titulo .aparece-1 {
    opacity: 0;
    animation: fadeIn-transparente 1s ease-in-out forwards;
    animation-delay: 1s; /* Retraso de 1 segundo */
}

#Cabecera .BOX-Titulo .aparece-2 {
    position: absolute;
    left: calc(50% + 20px);
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn-no-transparente 1s ease-in-out forwards;
    animation-delay: 4s; /* Retraso de 1 segundo */
}

#Cabecera .BOX-Titulo .aparece-3 {
    opacity: 0;
    animation: fadeIn-transparente 1s ease-in-out forwards;
    animation-delay: 5s; /* Retraso de 1 segundo */
}

@keyframes fadeIn-transparente {
    from { opacity: 0; }
    to { opacity: 0.7; }
}

@keyframes fadeIn-no-transparente {
    from { opacity: 0; }
    to { opacity: 1; }
}

#Cabecera .BOX-Titulo .desplazamiento {
    position: absolute;
    right: 22%;
    transition: transform 1s ease-in-out;
    animation: moverIzquierda 2s ease-in-out forwards;
    animation-delay: 2s; /* Retraso de 2 segundos */
    white-space: nowrap;
    opacity: 0;
}

@keyframes moverIzquierda {
    0% {
        right: 22%;
        opacity: 0;
    }
    50% {
        opacity: 1;
        right: 22%;
    }
    100% {
        right: 50%; /* Mueve el texto completamente a la izquierda */
        opacity: 1;
    }
}

@media only screen and (max-width: 890px){
    #Cabecera .BOX-Titulo h1 {
        font-size: 80px;
        line-height: 85px;
    }
}

@media only screen and (max-width: 780px){
    #Cabecera .BOX-Titulo h1 {
        font-size: 60px;
        line-height: 65px;
    }
}

@media only screen and (max-width: 600px){
    #Cabecera .BOX-Titulo h1 {
        font-size: 40px;
        line-height: 45px;
    }

    #Cabecera .BOX-Titulo .aparece-2, #Cabecera .Titulo-Seguridad.animar .aparece-2 {
    left: calc(50% + 10px);
    }

}

@media only screen and (max-width: 420px){
    #Cabecera .BOX-Titulo h1 {
        font-size: 38px;
        line-height: 42px;
    }

    #Cabecera .BOX-Titulo .aparece-2, #Cabecera .Titulo-Seguridad.animar .aparece-2 {
    left: calc(50% + 10px);
    }
    
}

@media only screen and (max-width: 389px){
    #Cabecera .BOX-Titulo h1 {
        font-size: 30px;
        line-height: 35px;
    }

    #Cabecera .BOX-Titulo .aparece-2, #Cabecera .Titulo-Seguridad.animar .aparece-2 {
    left: calc(50% + 10px);
    }
    
}

#Introduccion .cursor-parpadeante {
    width: 20px;
    animation: blink 0.7s infinite alternate;
    float: left;
    width: 24px;
    shape-outside: inset(0px);
    clip-path: inset(0px);
    margin: 34px 9px 0px 0px;
}

#Introduccion .Cabecera{
    padding-right: 90px;
}

#Introduccion .Desarrollo{
    padding-left: 90px;
}

#Introduccion .Desarrollo .BOX-Desarrollo {
    margin-bottom: 50px;
}

@media only screen and (max-width: 1500px){

    #Introduccion .cursor-parpadeante {
        animation: blink 0.7s infinite alternate;
        float: left;
        width: 19px;
        margin: 27px 9px 0px 0px;
    }

    #Introduccion .Desarrollo .BOX-Desarrollo {
    margin-bottom: 20px;

    }

}

@media only screen and (max-width: 999px){
    #Introduccion .Cabecera {
        padding-right: 45px;
    }

    #Introduccion .Desarrollo {
    padding-left: 45px;
    }

    #Introduccion .cursor-parpadeante {
    margin: 20px 9px 0px 0px;
    }

    #Introduccion .Desarrollo a{
    font-size: 13px;
    }

}

@media only screen and (max-width: 700px){
    #Introduccion .Cabecera {
       flex-basis: 100%;
       padding-right: 0px;
       margin-bottom: 40px;
    }

    #Introduccion .Desarrollo {
    flex-basis: 100%;
    padding-left: 0px;
    }
} 

#Diferenciacion  .ROW-Cabecera{
    margin-bottom: 80px;
}

#Diferenciacion .CELL-Diferencia {
    border: 1px solid rgba(79, 79, 79, 0.2);
    padding: 30px 20px;
    height: calc(25vw - 90px);
    min-height: 250px;
    align-content: space-between;
}

#Diferenciacion .CELL-Diferencia .TXT-Naranja{
    font-size: 30px;
}

#Diferenciacion .CELL-Diferencia .BOX-Data {
    flex-basis: 100%;
}

#Diferenciacion .CELL-Diferencia p {
    font-size: 22px;
    line-height: 24px;
    padding: 0px;
    max-width: 75%;
}

@media only screen and (max-width: 1500px){

    #Diferenciacion {
    padding-top: 50px !important;
    }

}

@media only screen and (max-width: 999px){

    #Diferenciacion .CELL-Diferencia {
    flex-basis: 50%;
    }

}

@media only screen and (max-width: 700px){

    #Diferenciacion .CELL-Diferencia {
    flex-basis: 100%;
    }

    #Diferenciacion .CELL-Diferencia  .BOX-Num {
    width: 100%;
    }

    #Diferenciacion .CELL-Diferencia p {
    font-size: 18px;
    line-height: 20px;
    max-width: 85%;
    }

}

@media only screen and (max-width: 500px){

    #Diferenciacion  .ROW-Cabecera {
    margin-bottom: 50px;
    }
    #Diferenciacion .CELL-Diferencia {
    min-height: 180px;
    }
}

#Valor{
background: linear-gradient(110.19deg, #C0C0C0 0%, #E7E7E7 25%, #FFFFFF 49.43%, #EDEDED 75%, #C0C0C0 100%);
}


#Valor .BOX-Valor {
    background: #fff;
    padding: 20px;
    margin: 90px 40px;
}

#Valor .IMG-Valor {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#Valor .COLB {
    padding: 4vw 0vw 0vw 4vw;
}

#Valor .COLB .CELL-Valor {
    align-content: start;
    min-height: 19vh;
    padding-top: 20px;
}

#Valor .COLB .CELL-Valor .BOX-Numero {
    margin-bottom: 20px;
}

#Valor .COLB .CELL-Valor .BOX-Numero p {
    font-size: 38px;
    padding: 0px;
}

#Valor .COLB .CELL-Valor .TXT-Inicial {
margin-right: 14px;
}

#Valor .COLB .CELL-Valor .TXT-Final.Espaciado {
    margin-left: 8px;
}

#Valor .BOX-Descriocion p {
    width: 70%;
    padding: 0px;
}

@media only screen and (max-width: 999px){

    #Valor .BOX-Valor .COLA, #Valor .BOX-Valor .COLB {
    flex-basis: 100%;
    }

    #Valor .BOX-Valor .IMG-Valor {
    position: relative;
    }
}

@media only screen and (max-width: 700px){

    #Valor .BOX-Valor {
        background: #fff;
        padding: 20px;
        margin: 60px 18px;
    }

    #Valor .COLB .CELL-Valor {
    min-height: 12vh;
    justify-content: center;
    padding: 20px 10px 0px
    }

    #Valor .BOX-Descriocion p {
    text-align: center;
    width: 100%;
    }

    #Valor .COLB {
    padding: 4vw 0vw 0vw 0vw;
    }

}

@media only screen and (max-width: 500px){
    #Valor .COLB .CELL-Valor {
    min-height: 128px;
    }

    #Valor .COLB .CELL-Valor .BOX-Numero p {
    font-size: 32px;
    }
}

@media only screen and (max-width: 408px){

    #Valor .COLB .CELL-Valor .BOX-Numero p {
    font-size: 29px;
        }
}

#Sectores .Cabecera {
    height: 120vh;
    width: 100%;
    justify-content: center;
    align-content: center;
}

#Sectores .Cabecera .IMG-Cabecera{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#Sectores .Cabecera .BOX-Titulo{
    z-index: 1;
    text-align: center;
    padding: 40px;
}

#Sectores .Cabecera .BOX-Titulo h2 {
    color: #fff;
    font-size: 150px;
    line-height: 150px;
}

#Sectores .Cabecera .BOX-Pre {
    z-index: 1;
    top: 5vw;
    left: 40px;
}

#Sectores .Cabecera .BOX-Pre h3 {
    color: #fff;
    font-size: 30px;
}

#Sectores .Descripcion {
    text-align: center;
    padding: 0px 40px;
    margin-top: -72px;
}

#Sectores .Descripcion p {
    font-size: clamp(16px, 5vw, 80px);
    line-height: clamp(16px, 5vw, 80px);
    color: rgba(145, 145, 145, 1);
    padding-bottom: 50px;
}

#Sectores .Descripcion strong{
    color: #000;
    font-weight: 400 !important;
}

.ClassBar {
    width: 100%;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.ClassBar .opcion {
    font-size: 35px;
    cursor: pointer;
}

.ClassBar .opcion p{
    padding: 0px;
}

#Sectores .Grid_Posts{
    gap: 40px;
    height: fit-content;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  transition: height 1s ease;
}

.slider-track {
  display: flex;
  transition: transform 0.8s ease;
  width: calc(100% + 40px); /* dos tarjetas = 2 x 100% */
  gap: 40px;
}

.Cards-Posts {
  flex: 0 0 calc(100% - 40px); /* resta el gap para que entren bien */
  max-width: calc(100% - 40px);
  box-sizing: border-box;
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.Cards-Posts.active {
  opacity: 1;
  display: flex; /* o 'block' o 'grid', según tu diseño */

}

.opcion p {
  cursor: pointer;
  color: rgba(145, 145, 145, 1);
}

.opcion:hover p {
  color: #f60;
}

.opcion.active p {
  color: #f60; /* estilo resaltado al activo */
  cursor: default;
}

#Sectores .Grid_Posts .CELL-Post {
    flex-basis: calc(33.3% - 27px);
    flex-direction: column;
    display: flex
    margin-bottom: 40px;
}

#Sectores .Grid_Posts .BOX-Titulo {
    background: #151716;
    padding: 40px 50px;
    justify-content: center;
    align-content: center;
    overflow: hidden;
    margin-bottom: 20px;
    flex-grow: 1;
    min-height: 22vh;
}

#Sectores .Grid_Posts .BOX-Titulo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    z-index: 1;
}

#Sectores .Grid_Posts .CELL-Post:hover img{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

#Sectores .Grid_Posts .BOX-Titulo h3{
    color: #fff;
    padding: 0px;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
    font-weight: 700 !important;
    margin: 0px;
}

@media only screen and (max-width: 1500px){

    #Sectores .Cabecera .BOX-Titulo h2 {
        font-size: 130px;
        line-height: 130px;
    }

    #Sectores .Grid_Posts .BOX-Titulo {
    min-height: 27vh;
    }

    #Sectores .ClassBar p{
        font-size: 35px;
    } 

}

@media only screen and (max-width: 1170px){

    #Sectores .Descripcion {
        margin-top: -64px;
    }

}

@media only screen and (max-width: 1024px){

    #Sectores .Descripcion {
        margin-top: -55px;
    }

}

@media only screen and (max-width: 999px){

    #Sectores .Descripcion {
        margin-top: -6vw;
    }

    #Sectores .Descripcion p {
    font-size: clamp(16px, 6vw, 80px);
    line-height: 6vw;
    }

    #Sectores .Cabecera .BOX-Titulo h2 {
    font-size: 110px;
    line-height: 110px;
    }

    #Sectores .ClassBar p{
    font-size: 25px;
    } 

}

@media only screen and (max-width: 820px){

    #Sectores .Cabecera .BOX-Titulo h2 {
    font-size: 90px;
    line-height: 90px;
    }

    #Sectores .Cabecera .BOX-Pre {
        z-index: 1;
        top: 5vw;
        left: 18px;
    }

    #Sectores .Cabecera .BOX-Pre h3 {
    font-size: 35px;
    font-weight: 400;
    width: 50px;
    line-height: 35px;
    }
}

@media only screen and (max-width: 700px){
    #Sectores .Descripcion {
        margin-top: -8vw;
    }

    #Sectores .Descripcion p {
    font-size: clamp(16px, 8vw, 80px);
    line-height: 8vw;
    }

    #Sectores .Descripcion {
        padding: 0px 18px;
    }

    #Sectores .Grid_Posts .CELL-Post {
    flex-basis: calc(50% - 20px);
    }

    #Sectores .Grid_Posts .BOX-Titulo img {
    opacity: 1;
    }

}

@media only screen and (max-width: 653px){
    #Sectores .Cabecera .BOX-Titulo h2 {
    font-size: 70px;
    line-height: 70px;
    }

    .ClassBar {
        gap: 20px;
        width: calc(100% - 40px);
        margin-bottom: 50px;
    }

    .ClassBar .opcion {
    margin-bottom: 15px;
    }

    #Sectores .ClassBar p{
    font-size: 25px;
    } 

    #Sectores .slider-track {
    width: 100vw;
    }
}

@media only screen and (max-width: 500px){
    #Sectores .Cabecera .BOX-Titulo h2 {
    font-size: 50px;
    line-height: 50px;
    }
    #Sectores .Cabecera .BOX-Pre h3 {
    font-size: 28px;
    line-height: 28px;
    }
    #Sectores .Grid_Posts .CELL-Post {
    flex-basis: calc(100% - 0px);
    }
    #Sectores .Grid_Posts .CELL-Post a{
    font-size: 16px;
    }

}

#Soluciones .Cabecera {
    height: 120vh;
    width: 100%;
    justify-content: center;
    align-content: center;
}

#Soluciones .Cabecera .IMG-Cabecera{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#Soluciones .Cabecera .BOX-Titulo{
    z-index: 1;
    text-align: center;
    padding: 40px;
}

#Soluciones .Cabecera .BOX-Titulo h2 {
    color: #fff;
    font-size: 150px;
    line-height: 150px;
}

#Soluciones .Cabecera .BOX-Pre {
    z-index: 1;
    top: 5vw;
    left: 40px;
}

#Soluciones .Cabecera .BOX-Pre h3 {
    color: #fff;
    font-size: 30px;
}

#Soluciones .Descripcion {
    text-align: center;
    padding: 0px 40px;
    margin-top: -43px;
}

#Soluciones .Descripcion p {
    font-size: clamp(16px, 5vw, 80px);
    line-height: clamp(16px, 5vw, 80px);
    color: rgba(145, 145, 145, 1);
    padding-bottom: 50px;
}

#Soluciones .Descripcion strong{
    color: #000;
    font-weight: 400 !important;
}

#Soluciones .Grid_Posts{
    gap: 40px;
}

#Soluciones .Grid_Posts .CELL-Post {
    flex-basis: calc(33.3% - 27px);
    flex-direction: column;
    display: flex
    margin-bottom: 40px;
}

#Soluciones .Grid_Posts .BOX-Titulo {
    background: #151716;
    padding: 40px 50px;
    justify-content: center;
    align-content: center;
    overflow: hidden;
    margin-bottom: 20px;
    flex-grow: 1;
}

#Soluciones .Grid_Posts .BOX-Titulo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    z-index: 1;
    filter: brightness(1.5);
}

#Soluciones .Grid_Posts .CELL-Post:hover img{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

#Soluciones .Grid_Posts .BOX-Titulo h3{
    color: #fff;
    padding: 0px;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
    font-weight: 700 !important;
    margin: 0px;
}


@media only screen and (max-width: 1500px){

    #Soluciones .Cabecera .BOX-Titulo h2 {
        font-size: 130px;
        line-height: 130px;
    }

    #Soluciones .Grid_Posts .BOX-Titulo {
    min-height: 27vh;
    }

}

@media only screen and (max-width: 1170px){

    #Soluciones .Descripcion {
        margin-top: -64px;
    }

}

@media only screen and (max-width: 1024px){

    #Soluciones .Descripcion {
        margin-top: -55px;
    }

}

@media only screen and (max-width: 999px){

    #Soluciones .Descripcion {
        margin-top: -6vw;
    }

    #Soluciones .Descripcion p {
    font-size: clamp(16px, 6vw, 80px);
    line-height: 6vw;
    }

    #Soluciones .Cabecera .BOX-Titulo h2 {
    font-size: 110px;
    line-height: 110px;
    }

}

@media only screen and (max-width: 820px){

    #Soluciones .Cabecera .BOX-Titulo h2 {
    font-size: 90px;
    line-height: 90px;
    }

}

@media only screen and (max-width: 700px){
    #Soluciones .Descripcion {
        margin-top: -8vw;
    }

    #Soluciones .Descripcion p {
    font-size: clamp(16px, 8vw, 80px);
    line-height: 8vw;
    }

    #Soluciones .Descripcion {
        padding: 0px 18px;
    }

    #Soluciones .Grid_Posts .CELL-Post {
    flex-basis: calc(50% - 20px);
    }

    #Soluciones .Grid_Posts .BOX-Titulo img {
    opacity: 1;
    }

}

@media only screen and (max-width: 653px){
    #Soluciones .Cabecera .BOX-Titulo h2 {
    font-size: 70px;
    line-height: 70px;
    }
}

@media only screen and (max-width: 500px){
    #Soluciones .Cabecera .BOX-Titulo h2 {
    font-size: 50px;
    line-height: 50px;
    }
    #Soluciones .Grid_Posts .CELL-Post {
    flex-basis: calc(100% - 0px);
    }
    #Soluciones .Grid_Posts .CELL-Post a{
    font-size: 16px;
    }

}

#Casos_Exito {
    background: linear-gradient(110.19deg, #C0C0C0 0%, #E7E7E7 25%, #FFFFFF 49.43%, #EDEDED 75%, #C0C0C0 100%);
}

#Casos_Exito .BOX-Valor {
    background: #fff;
    padding: 20px;
    margin: 90px 40px;
    overflow: hidden;
}

#Casos_Exito .cursor-parpadeante {
    width: 20px;
    animation: blink 0.7s infinite alternate;
    float: left;
    width: 24px;
    shape-outside: inset(0px);
    clip-path: inset(0px);
    margin: 34px 9px 0px 0px;
}

#Casos_Exito .COLA{
    padding: 4vw;
    align-content: space-between;
}

#Casos_Exito .COLA .Cabecera{
    margin-bottom: 50px;
}

#Casos_Exito .COLA .BOX-Data-CExito.Carrusel-Exito-1 {
    width: 100%;
    overflow: hidden;
}

#Casos_Exito .COLA .BOX-CTA {
    margin-top: 40px;
}

#Casos_Exito .COLA .BOX-Datos p {
    font-size: 12px;
    font-weight: 700;
    max-width: 300px;
    line-height: 12px;
}

#Casos_Exito .COLB img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    border-radius: 5px;
    z-index: -1;
    top: 0px;
    left: 0px;
}

#Casos_Exito .COLB .Cabecera {
    z-index: 9999;
    top: calc(4vw - 10px);
    left: 40px;
}

#Casos_Exito .COLB .Cabecera h2{
    color: #fff;
}

#Casos_Exito .COLB .slick-list, #Casos_Exito .COLB .slick-track {
    height: 100% !important;
}

#Casos_Exito .COLB .Cell-IMG-Resultados {
    height: 100%;
    padding: 40px;
    display: flex;
    align-content: space-between;
}

#Casos_Exito .COLB .Cell-IMG-Resultados .Cabecera, #Casos_Exito .COLB .Cell-IMG-Resultados .Resultados{
    flex-basis: 100%;
}

#Casos_Exito .COLB .Resultados {
    height: min-content;
}

#Casos_Exito .COLB .Resultados .CELL-Resultado {
    height: min-content;
    padding: 20px 10px;
}

#Casos_Exito .COLB .Cell-IMG-Resultados .Resultados .Titulo {
    font-size: 25px;
    line-height: 25px;
    color: #fff;
    text-align: center;
    padding: 0px;
}



@media only screen and (max-width: 1500px){

    #Casos_Exito .cursor-parpadeante {
        width: 19px;
    }

}

@media only screen and (max-width: 999px){

    #Casos_Exito .BOX-Valor .COLA, #Casos_Exito .BOX-Valor .COLB {
    flex-basis: 100%;
    }

    #Casos_Exito .COLA {
        padding: 40px 0px;
    }

    #Casos_Exito .BOX-Valor .IMG-Valor {
    position: relative;
    }

    #Casos_Exito .Cabecera {
    margin-bottom: 40px;
    }

    #Casos_Exito .cursor-parpadeante {
    margin: 20px 9px 0px 0px;
    }

}

@media only screen and (max-width: 700px){

    #Casos_Exito .BOX-Valor {
        padding: 18px;
        margin: 50px 18px;
    }

}

#Buscas_partner{
    padding: 0px 40px;
    height: 120vh;
    align-content: flex-end;
}

#Buscas_partner .BOX_Titulo {
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -64%);
}

#Buscas_partner h2{
    color: #fff;
    font-size: 150px;
    line-height: 150px;
}

#Buscas_partner h3, #Buscas_partner p{
    color: #fff;
}

#Buscas_partner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#Buscas_partner .ROW_Ventajas{
    margin-bottom: 50px;
}

#Buscas_partner .CELL-Ventaja {
    text-align: center;
    padding: 0px 40px;
}

#Buscas_partner .CELL-Ventaja .BOX-Titulo{
    margin-bottom: 20px;
}

#Buscas_partner .CELL-Ventaja p{
    padding: 0px;
}

@media only screen and (max-width: 1500px){

    #Buscas_partner h2 {
        font-size: 130px;
        line-height: 130px;
    }

    #Buscas_partner {
    height: 140vh;
    }

}

@media only screen and (max-width: 999px){

    #Buscas_partner .BOX_Titulo {
    transform: translate(-50%, -82%);
    }

    #Buscas_partner h2 {
    font-size: 110px;
    line-height: 110px;
    }

    #Buscas_partner .ROW_Ventajas {
        margin-bottom: 30px;
    }
    
    #Buscas_partner .CELL-Ventaja {
    flex-basis: 50%;
    margin-bottom: 40px;
    }

}

@media only screen and (max-width: 820px){

    #Buscas_partner h2 {
    font-size: 90px;
    line-height: 90px;
    }

}

@media only screen and (max-width: 700px){

    #Buscas_partner {
        padding: 0px 18px;
    }

    #Buscas_partner .ROW_Ventajas {
    margin-bottom: 0px -20px 50px;
    }
    #Buscas_partner .CELL-Ventaja {
        text-align: center;
        padding: 0px 20px;
    }

}

@media only screen and (max-width: 653px){
    #Buscas_partner h2 {
    font-size: 70px;
    line-height: 70px;
    }
}

@media only screen and (max-width: 500px){

    #Buscas_partner {
    height: auto;
    }

    #Buscas_partner .BOX_Titulo {
    transform: none;
    top: unset;
    left: unset;
    position: relative;
    margin: 150px 0px 100px;
    }

    #Buscas_partner h2 {
    font-size: 50px;
    line-height: 50px;
    }

    #Buscas_partner .CELL-Ventaja {
    flex-basis: 100%;
    margin-bottom: 40px;
    }

}