body{
    overflow-x: hidden;
}

.block{
    border: 0;
}

.estructuras{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.estructura{
    border: 0;   
}

.estructura .top{
    /* margin: 9px 0;*/
    min-height: 103px;
    padding: 6px 0;
    display: flex;
    flex-direction: row;
}

.estructura .top .der{
    padding-left: 24px;
    flex: 1;
}

.estructura .top .sub{
    font-weight: bold;
}

.estructura .title{
    text-align: right;
    font-size: 6rem;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    border-right-color: var(--principal);
    border-right-width: 2px;
    border-right-style: solid;
    line-height: 3rem;
    flex: 1;
}
/*
@media (prefers-reduced-motion: no-preference){
    @keyframes fadeIn {
        to {scale: 1; opacity: 1;}
    }
}
*/

/* .imagen > img{
    scale: .8;
    opacity: 0;
    animation: scrollImage linear forwards;
    animation-timeline: view();
    animation-range-start: 130px;
    animation-range-end: 300px;
}


@keyframes scrollImage {
    to {scale: 1; opacity: 1;}
} */



/* @keyframes parallax-effect {
  to {opacity: 1;}
}

.imagen {
  animation: parallax-effect linear both;
  animation-timeline: scroll(block root);
  animation-range: -260px 330px;
} */
.container{
    border: 0;
    width: 100%;
}

.horizontal{
    border: 0;
}

.galeria{
    /* width: 100%; */
    height: 100%;
    overscroll-behavior: none;
    display: flex;
    flex-wrap: nowrap;
}

.galeria div:last-child{
    padding-right: 333px;
}

.galeria .imagen img{
    width: auto;
    height: calc(100vh - 103px);
    max-height: 600px;
    /* height: 450px;*/
}

.hidden-title{
    opacity: 0;
    filter: blur(5px);
    transform: translateX(100%);
    transition: all 1s;
}

.show-title{
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.hidden-image{
    opacity: 0;
    filter: blur(5px);
    transform: translateY(12%);
    transition: all 1s;
}

.show-image{
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@media(prefers-reduced-motion){
    .hidden-title{
        transition: none;
    }

    .hidden-image{
        transition: none;
    }
}

@media screen and (max-width: 992px) {
   .estructura .title{
    font-size: 2.6rem;
   } 
}

/*     GRID  moviles    */
@media screen and (max-width: 576px) {
    .estructura{
        overflow-x: hidden;
    }

    .estructura .top{
        flex-direction: column;
    }

    .estructura .title{
        padding-right: 0;
        text-align: center;
        font-size: 3rem;
        border-right-width: 0;
    }

    .estructura .top .der{
        padding-left: 12px;
        padding-right: 12px;
    }

    .galeria{
        flex-direction: column;
    }

    .galeria div:last-child{
        padding-right: 0;
    }

    .galeria .imagen img{
        width: 100%;
        height: auto;
    }
}