body{
    margin: 0;
    padding: 0;
    font-family: 'SPANISH_POINTER', sans-serif;
    color: lightgray;


}
html {
    overflow-y: scroll;
}
#circuloCursor {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    overflow: hidden;
    max-width: 20px;
    max-height: 20px;
    background-color: rgba(255, 96, 255, 0.85);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease;
    z-index: 10002;
  }

.container{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.video-fondo{
    position: fixed;
    right: 0;
    bottom: 0;
    z-index:-1 ;
    mix-blend-mode: soft-light;
}


header{
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    align-items: center;
    justify-content: space-between;
    height:70px;
    background-color:#141414 ;
    backdrop-filter:blur(10px);
    padding: 0 30px;
    box-shadow:0 0 15px #141414;
    z-index:10001;

}

.izquierda{
    display: flex;
    align-items: center;
    
}

.izquierda img{
    width: 40px;
    margin-right: 0 15px;
}

header ul{
    display: flex;
    justify-content:  space-between;
    width: 30%;
    padding:15px 15px;
    border-radius: 50px;
    list-style: none;
    margin: 0;

}

header ul li{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin: 0 10px;
}


header ul li a {
    color: lightgray;
    position: relative;
    text-decoration: none;
    padding: 5px;
    transition: color 0.3s ease;
}

header ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

header ul li a:hover,
header ul li a.active {
    color: #fff; 
}

header ul li a:hover::after,
header ul li a.active::after {
    width: 100%;
}



.box-icons{
    display: flex;
    gap:40px;
}

.box-icons a{
    display:flex;
    align-items: center;
    justify-content: center;  
    font-size: 20px;
    width: 30px;
    height: 30px;
    border: 2px solid #75337a;
    text-decoration: none;
    color:lightgray;
    border-radius: 50%;
    transition: 0.3s;
}

.box-icons a:hover{
    background-color: #75337a;
    color: rgb(0, 0, 0);
    box-shadow: 0 0 15px #4c2150;
} 


.yoSoy{
    position: relative;
    display:flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: space-between ;
}

.yoSoy-Info{
    position: absolute;
    left:5%;
}

.yoSoy-Info .yoSoy-Info-titulo{
    color: #c453cc;
    padding:5px 16px;
    border: 1px solid #4c2150;
    width: 240px;
    background-color: #141414;
    box-shadow: 0 0 5px #4c2150;
}

.yoSoy-Info h1{
    font-size: 60px;
    max-width: 600px;
    font-weight: 700;
    line-height:70px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.yoSoy-Info p{
    max-width: 550px;
    line-height: 25px;
    margin-bottom: 40px;
    font-size: 20px;
}


.yoSoy-Info button{
    color:white;
    padding: 15px 35px;
    border: 1px solid #4c2150;
    background-color: #141414;
    box-shadow: 0 0 5px #4c2150;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
}

.yoSoy-Info button:hover{
    box-shadow: 0 0 15px #4c2150;
    background-color: #c453cc;
}

.gradiente{
    background: linear-gradient(to right, #FFD700, #FFC107,  #D4AF37,#e5ab45, #eb9c52,#dc8b40,#e2af40,#eff140,#e0c429);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation:animate-gradient 2.5s linear infinite;
}

.yoSoyVideo-Box{
    position: absolute;
    right: 7%;
    z-index: -1;

}

.yoSoyVideo-Box video{
    height: 400px;
}


.scroll-abajo{
    height: 50px;
    width: 30px;
    border: 2px solid #75337a;
    position: absolute;
    left:49%;
    bottom: 8%;
    border-radius: 50px;
    cursor:pointer;
    box-shadow: 0 0 15px #4c2150;
}

.scroll-abajo::before,
.scroll-abajo::after{
    content: '';
    position: absolute;
    top: 20%;
    left:50%;
    width: 10px;
    height: 10px;
    border: 2px solid #75337a;
    transform: translate(-50%, -100%) rotate(45deg);
    border-top:transparent;
    border-left:transparent;
    animation: scroll-down 2s ease-in-out infinite;


}

.scroll-abajo::before{
    top: 30%;
    animation-delay: 0.5s;

}


@keyframes scroll-down {
    0%{
        opacity: 0;    }
    30%, 60%{
        opacity: 1;
        }

    100%{
        top:90%;
        opacity: 0;
    }
}


@font-face{
    font-family: 'SPANISH_POINTER';
    src: url('/fuentes/Cinzel-VariableFont_wght.ttf') format('truetype');
    font-weight: bold;
    font-style: bold;
  }


@media (max-aspect-ratio: 16/9){
    .video-fondo{
        width: auto;
        height: 100%;
    }
}

@media (min-aspect-ratio: 16/9){
    .video-fondo{
        width: 100%;
        height: auto;
    }
}


@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}


/* Estilos para la sección de presentación */
.presentacion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #141414;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transform: translateY(0);
}

.presentacion.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%); /* Cambiado de -20px a -100% */
    z-index: -999; /* Para asegurarse de que no interfiera con otros elementos */
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    width: 30px;
    height: 50px;
    border: 2px solid #75337a;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 15px #4c2150;
}

.scroll-arrow {
    width: 10px;
    height: 10px;
    border: 2px solid #75337a;
    border-left: transparent;
    border-top: transparent;
    transform: rotate(45deg);
    margin-top: -10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Ajustar la transición del contenido principal */
.container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 1.25s, transform 0.8s ease-out 0.3s; /* Añadido delay */
}

.container.show {
    opacity: 1;
    transform: translateY(0);
}

/* === GLOW INTERMITENTE PARA LOS TEXTOS .ordenar === */
.glow-text .ordenar {
    font-size: 5rem;
    display: inline-block;
    opacity: 0.5;
    animation: glow 17s ease-out infinite;
    animation-delay: calc(0.5s * var(--i));
    transition: text-shadow 0.3s ease;
  }
  
  @keyframes glow {
    0%, 8.33%, 100% {
      text-shadow: 0 0 10px #540054, 0 0 20px #540054;
      opacity: 0.5;
    }
    4.16% {
      text-shadow: 0 0 20px #ff46cb, 0 0 40px #ff46cb;
      opacity: 1;
    }
  }

.info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin-top: 100px;
} 
.info-section h1{
    font-size: 30px;
    margin-bottom: 50px;
}

.info-section-titulo{
    font-size: 40px;
    font-weight: 700;
}

.cartas-info{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    width: 100%;
    height:100%;
    margin-top: 30px;
}

.carta{
    display: flex;
    align-items: flex;
    justify-content: center;
    position: relative;
    width: auto;
    height: 40vh;
    overflow:hidden;
    border: 1px solid #4c2150;
    background-color: #141414;
    border-radius: 20px;
    opacity: 0.7;
    transition:0.3s;
}

.carta img{
    margin-top:7%;
    width: 45%;
    height: 45%;
    object-fit: cover;
    border-radius: 15px;
}



.carta h1{
    position: absolute;
    margin: 0;
    bottom: 35%;
    left: 5%;
    font-size: 25px;
    z-index: 1;
    color:lightgray;

}

.carta p{
    position: absolute;
    bottom: 3%;
    left: 5%;
    font-size: 10px;
    max-width: 300px;
    z-index: 1;
    color:gray;
    line-height: 13px;
}

.carta video{
    margin-top:10%;
    width: 80%;
    height:50%;
    object-fit: cover;
    border-radius: 15px;
    /*mix-blend-mode: lighten;*/
}


.carta button{
    color:white;
    padding: 5px 15px;
    border: 1px solid #4c2150;
    background-color: #141414;
    box-shadow: 0 0 5px #4c2150;
    cursor: pointer;
    transition: 0.3s;
    position: absolute;
    bottom: 5%;
    left: 5%;
    border-radius: 10px;
}

.carta button:hover{
    box-shadow: 0 0 15px #4c2150;
    background-color: #c453cc;
}

.carta:hover{
    box-shadow: 0 0 15px #a249ab;
    opacity: 1;
}

.carta:nth-child(1) p{
    top: 58%;
    max-width: 90%;
    font-size: 11px;
    line-height: 10px;

}
.carta:nth-child(1) h1{
    top:53%;
    font-size: 19px;
}
.carta:nth-child(2) p{
    top: 58%;
    max-width: 93%;
    font-size: 10px;
    line-height: 10px;

}
.carta:nth-child(2) h1{
    top:53%;
    font-size: 19px;
}
.carta:nth-child(3){
    grid-row: span 2;
    height: 83vh;
}

.carta:nth-child(3) p{
    bottom: 14%;
    max-width: 90%;
    font-size: 14px;
}
.carta:nth-child(3) h1{
    bottom: 30%;
}

.carta:nth-child(4) {
    grid-column:span 2;
}
.carta:nth-child(4) img {
    width: 90%;
    object-fit: cover;
}


.carta:nth-child(4) p{
    max-width: 650px;
    font-size: 12px;
}

.carta:nth-child(4) h1{
    bottom: 30%;
}
/*COSAS*/
.container-foto {
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 100%;
}

.proyectos-foto {
   margin-top: 50px;
   width: 80%;
}
/*Mis proyectos*/

.proyectos{
    display: flex;
    flex-direction: column;
    gap: 10%;
    align-items: center;
    width: 80%;
    margin-top: 200px;
    margin-bottom: 0px;


}
.proyectos h1{
    font-size: 30px;
    margin-bottom: 100px;

}

.carta-proyecto{
    display:flex;
    width: 100%;
    height:40%;
    align-items: center;
    justify-content: center;
    gap: 10%

}

/*VIDEOS*/


.proyecto-vidbox{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%;
    position:relative;
    cursor: pointer;
    min-width: 400px;
    transition: 0.5s;
    mix-blend-mode: exclusion;
    padding: 15px 0px;
}

.proyecto-vidbox video{
    object-fit: cover;
    width: 100%;
    box-shadow: 0 0 10px #8f4b95;
    border-radius: 20px;
    transition: 0.5s;
}

.proyecto-vidbox:hover video{
    box-shadow: 0 0 25px #ce63d8;
}

.proyecto-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
    
}

.proyecto-info h1{
    width: 90%;
    font-size: 25px;
    font-weight: bold;
    text-wrap: nowrap;
    margin-bottom: 10px;
    margin-top: 0;
    max-width: 450px;
}

.proyecto-info p{
    width: 90%;
    max-width: 350px;
    min-width: 300px;
    margin-top: 0;
    margin-bottom: 25px;
}

.proyecto-info button{
    color:white;
    padding: 5px 15px;
    border: 1px solid #4c2150;
    background-color: #141414;
    box-shadow: 0 0 5px #4c2150;
    cursor: pointer;
    border-radius: 10px;
}

.proyecto-info button:hover{
    box-shadow: 0 0 15px #4c2150;
    background-color: #c453cc;
}


.hover-sign{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

.hover-sign::before,
.hover-sign::after{
    content: '▶︎';
    position: absolute;
    width: 80px;
    height: 80px;
    font-size: 50px;
    top:35%;
    left: 30%;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hoverAnimacion 3s ease-in-out infinite;
}



@keyframes hoverAnimacion {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px lightgray;
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px lightgray;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 5px lightgray;
    }
}

.hover-sign.active{
    display: none;
}


.proyecto-fotbox {
   perspective: 1000px;
   width: 300px;
   height: 300px;
}

.flip-container {
   perspective: 1000px;
   width: 300px;
   height: 300px;
}

.flip-inner {
   position: relative;
   width: 100%;
   height: 100%;
   transform-style: preserve-3d;
   transition: transform 0.8s ease;
   transform-origin: center center;
}

.flip-container:hover .flip-inner:not(.flipped):not(.fullscreen) {
   transform: scale(1.10);
}

.flip-inner.zoomed {
   transform: scale(1.10);
}

.flip-inner.flipped {
   transform: rotateY(180deg);
}

.flip-inner.flipped.zoomed {
   transform: rotateY(180deg) scale(1.10);
}

.flip-front, .flip-back {
   position: absolute;
   width: 100%;
   height: 100%;
   backface-visibility: hidden;
   border-radius: 20px;
   overflow: hidden;
   top: 0;
   left: 0;
}

.flip-front img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: blur(7px);
}

.flip-inner.zoomed .flip-front img {
    filter: none;
    transition: filter 0.3s ease;
}

.flip-back {
   background-color: #4c2150;
   box-shadow: 0 0 15px #4c2150;
   color: white;
   transform: rotateY(180deg);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   
}
.flip-back button {
    color:white;
    padding: 5px 15px;
    border: 1px solid #ce63d8;
    background-color: #141414;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.5s;
    margin-top: 40px;
    border-radius: 10px;
}

.flip-back button:hover{
    box-shadow: 0 0 15px #6b2f70;
    background-color: #c453cc;
}
.flip-back h2 {
   font-size: 30px;
   margin-bottom: 5px;
   text-shadow: 0 0 9px #000000;
   text-decoration: underline 2px;

}
.flip-back p {
   font-size: 20px;
   max-width: 80%;
   text-shadow: 0 0 9px #000000;

}


.gridIntera {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 20px;
   width: 100%;
   padding: 20px;
   justify-items: center;
}

.fullscreen-container {
   position: fixed !important;
   top: 50% !important;
   left: 50% !important;
   transform: translate(-50%, -50%) !important;
   z-index: 1000 !important;
   width: auto !important;
   height: auto !important;
}

.flip-inner.fullscreen {
   width: 80vw !important;
   height: 80vh !important;
   max-width: 500px !important; /* Puedes ajustar este max-width para las imágenes a pantalla completa */
}

.flip-inner.fullscreen.flipped {
   transform: rotateY(180deg) !important;
}

.flip-inner.fullscreen:not(.flipped) {
   transform: scale(1) !important;
}

.flip-inner.fullscreen .flip-front img {
   filter: none !important;
   border-radius: 10px;
   object-fit: contain !important;

}
.flip-inner.fullscreen .flip-front,
.flip-inner.fullscreen .flip-back {
    width: 100%;
    height: 100%;
    position: absolute; /* Asegurarse de que ocupen el 100% del padre */
    backface-visibility: hidden;
    /* Asegurarse de que no tengan márgenes o padding que los desplacen */
    margin: 0;
    padding: 0;
}

.flip-container.fullscreen-active { /* Usaremos una nueva clase para este estado */
    width: 100%; /* Ocupa todo el espacio del #fullscreen-image-wrapper */
    height: 100%;
    /* Asegurarse de que no tenga márgenes o padding que lo desplacen */
    margin: 0;
    padding: 0;
    /* Eliminar cualquier transform previo que pueda interferir */
    transform: none;
    transition: width 0.3s ease, height 0.3s ease; /* Transición suave al cambiar de tamaño */
}
#fullscreen-overlay {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999; /* Un z-index menor que el de la imagen */
    pointer-events: auto; /* Permite clics en el overlay */
}
#fullscreen-image-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none; /* Controlado por JS */
}



/*ESTILOS SKILLS*/
.skills-seccion{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.skills-seccion h1{
    font-size: 30px;

}

.skills-box{
    width: 100%;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
}

.skills-foto{
    width: 30%;


    border-radius: 5px;
    margin-top: 125px;
}

.digitales {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: start;
    top: 25%;
    left: 0%;
    max-width: 300px;
    text-align: justify;
}

.artisticas{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: end;
    top: 25%;
    right: 0%;
    max-width: 300px;
    text-align: justify;

}

.skills-box h1{
    font-size: 50px;
    display: flex;
    align-items: center;
    bottom: 10px;
}

.skills-box p{
    line-height: 23px;

}


/*SLIDER*/
.slider{
    position: absolute;
    bottom: -5%;
    right: 20%;
    width: 60%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
    mix-blend-mode: difference;
    opacity: 0.8;
}

.slider .lista{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .lista .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left:100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay:calc((10s / var(--quantity)) * (var(--position) - 1) - 10s)!important;

}

.slider .lista .item img{
    width: 90%;
}

@keyframes autoRun{
    from {
        left: 100%;
    }to{
        left: calc(var(--width)* -1);
    }
}


/*SECCION DE CONTACTO*/

.contacto-seccion{
    width:80%;
    height: 100vh;
    display: flex;
    justify-content: center;
    gap: 10%;
    align-items: center;
    position: relative;
}

.contacto-seccion h1{
    position: absolute;
    top: 10%;
    left:43%;
    align-items: center;
    font-size: 30px;
}

.social-box{
    display: flex;
    flex-direction: column;
    gap: 25px;
}



.social-box i{
    color:#540054;
    font-size: 30px;
    margin-right:10px;

}
.social-box a{
    color: lightgrey;
    text-decoration: none;
    font-size: 20px;
    text-wrap: nowrap;
}
.social-icons a i{
    color: white;
    margin-top: 40px;
}

.contacto-box{
    max-width: 400px;
    margin-top: 30px;
    margin-bottom: 5px;
}

.contacto-box input{
    padding: 7.5px 30px;
    background-color: #141414;
    width: 80%;
    height:25px;
    border: none;
    outline: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    color: lightgray;
    

}

.contacto-box button{
    margin-top: 30px;
    color:white;
    padding: 5px 15px;
    border: 1px solid #4c2150;
    background-color: #141414;
    box-shadow: 0 0 5px #4c2150;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
}
.contacto-box button:hover{
    box-shadow: 0 0 15px #4c2150;
    background-color: #c453cc;
}

footer{
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: #141414;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px #141414;
    z-index: 10001;

}

footer h1{
    color: lightgray;
    font-size: 20px;
}



.menu-icono{
    font-size: 35px;
    cursor: pointer;
    display: none;
}

/*BARRA LATERAL*/

.barra-lateral{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 70%;
    width: 0%;
    background-color: #141414;
    backdrop-filter: blur(10px);
    z-index: 10001;
    box-shadow: 0 0 20px #540054;
    border-bottom-left-radius: 100%;
    opacity: 0;
}

.icono-cierre{
    font-size: 50px;
    color: lightgray;
    padding-left: 10px;
    cursor: pointer;
}

.barra-lateral ul{
    padding-left: 10px;
}

.barra-lateral ul li{
    list-style: none;
    margin: 30px;
}

.barra-lateral ul li a{
    text-decoration: none;
    color: lightgray;
    font-size: 20px;
    font-weight: 700;
    text-shadow: #540054;
    transition: 0.3s;
}

.barra-lateral .social-icons{
    padding-left: 20px;
    margin-top: 60px;
    text-wrap: nowrap;
}

.barra-lateral .social-icons a{
    font-size: 35px;
    padding:5px 5px;
    cursor: pointer;
}


.barra-lateral.open-barraLat{
    animation: openSidebarAnimation 1.5s forwards;
}

@keyframes openSidebarAnimation{
    to{
        width:50%;
        opacity:1;
        bottom: 0;
        border-radius: 0;
    }
}

.barra-lateral.close-barraLat{
    animation: closeSidebarAnimation 1.5s forwards;
}

@keyframes closeSidebarAnimation{
    from{
        width:50%;
        opacity:1;
        bottom: 0;
        border-radius: 0;
    }
    to{
        width:0;
        opacity:0;
        bottom: 70%;
        border-radius: 50%;
    }
}















/*EFECTOS SCROLL*/

/*BLUR*/
.autoBlur{
    animation: autoBlurAnimation linear both;
    animation-timeline: view();
}
@keyframes autoBlurAnimation {
    0% {
        filter: blur(40px);
        opacity: 0;
    }35%, 65%{
        filter: blur(0px);
        opacity: 1;
    }100%{
        filter: blur(40px);
        opacity: 0;
    }
}

/*APARICIONES SECUNDARIAS*/
.autoDisplay{
    animation: autoDisplayAnimation both;
    animation-timeline: view();
}

@keyframes autoDisplayAnimation {
    from {
        filter: blur(7px);
        opacity: 0.2;
        transform: translateY(-200px) scale(0);
    }50%{
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
        transform: translateY(0px) scale(1);
    }
}

/*APARICIONES TERCIARIAS*/


.fadeInRight{
    animation: fadeInRightAnimation both;
    animation-timeline: view();
}

@keyframes fadeInRightAnimation {
    0% {
        filter: blur(20px);
        opacity: 0;
        transform: translateX(-500px);
    }35%, 65%{
        filter: blur(0px);
        opacity: 1;
        transform: translateX(0px);
    }100%{
        filter: blur(20px);
    }
}

/*RESPONSIVES TABLETS Y MOVIL*/


@media (max-aspect-ratio: 16/9){
    .video-fondo{
        width: auto;
        height: 100%;
    }
}

@media (min-aspect-ratio: 16/9){
    .video-fondo{
        width: 100%;
        height: auto;
    }
}


