@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Dosis:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
*{
    box-sizing: border-box;
    font-family: 'Work Sans';
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
/*Menu*/
.contenedor-header{
    background: #efb6d4;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}
.contenedor-header header{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.contenedor-header header .logo a{
    font-family: 'Dosis';
    font-weight: bold;
    font-size: 36px;
    color: #9F2B68;
    text-decoration: none;
}
.contenedor-header header ul{
    display: flex;
    list-style: none;
}
.contenedor-header header nav ul li a{
    text-align: none;
    color: #AA336A;
    margin: 0 15px;
    padding: 3px;
    transition: .5s;
    text-decoration: none;
}
.contenedor-header header nav ul li a:hover{
    color: #DC143C;
}
.nav-responsive{
    background-color: #eba0c9;
    color: #AA336A;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

/*SECCION I N I C I O*/
.inicio{
    background: linear-gradient(to top, rgb(248, 200, 220), rgb(255, 182, 193));
    background-image: url(Images/Fondo.png);
    background-size: cover;
    color: #efb6d4;
    height: 150vh;
    display: flex;
    align-items: center;    
}
.inicio .contenido-banner{
    padding: 20px;
    background-color: #9F2B68;
    max-width: 350px;
    margin: auto;
    text-align: center;
    border-radius: 40px;
}
.inicio .contenido-banner img{
    margin-top: 40px;
    border: 0px;
    display: block;
    width: 100%;
    margin: auto;
    border-radius: 100%;
}
.inicio .contenido-banner h1{
    margin-top: 40px;
    font-size: 42px;
    font-family: 'Dosis';
}
.inicio .contenido-banner h2{
    font-size: 15px;
    font-weight: normal;
    font-family: 'Raleway';
}
.inicio .contenido-banner .redes a{
    color: #efb6d4;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #efb6d4;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 40px 5px;
    font-size: 20px;
    transition: .3s;
}
.inicio .contenido-banner .redes a:hover{
    background-color: #DC143C;
}
.sobremi{
    background-color: #efb6d4;
    color: #9F2B68;
    padding: 50px 20px;
}
.sobremi .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.sobremi h2{
    font-size: 48px;
    font-family: 'Dosis';
    text-align: center;
    padding: 20px 0px;
}
.sobremi .contenido-seccion p{
    font: 18px;
    line-height: 22px;
    margin-bottom: 20px;
}
.sobremi .contenido-seccion p span{
    color: #DC143C;
    font-weight: bold;
}
.sobremi .fila{
    display: flex;
}
.sobremi .fila .col{
    width: 50%;
}
.sobremi .fila .col h3{
    font-size: 28px;
    font-family:'Dosis' ;
    margin-bottom: 18px;
}
.sobremi .fila .col ul{
    list-style: none;
}
.sobremi .fila .col ul li{
    margin: 12px 0;
}
.sobremi .fila .col ul li strong{
    display: inline-block;
    color: #DC143C;
    width: 130px;
}
.sobremi .fila .col ul li span{
    background-color: #DC143C;
    padding: 3px;
    font-weight: bold;
    border-radius: 5px;
}
.sobremi .fila .col .contenedor-intereses{
    display: flex;
    flex-wrap: wrap;
}
.sobremi .fila .col .contenedor-intereses .interes{
    width: 100px;
    height: 100px;
    background-color: #f5c7df;
    border-radius: 10px;
    margin: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.sobremi .fila .col .contenedor-intereses .interes:hover{
    background-color: #eba0c9;
}
.sobremi .fila .col .contenedor-intereses .interes{
    font-size: 16px;
    margin-bottom: 10px;
}
.sobremi button{
    
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #9F2B68;
    width: fit-content;
    display: block;
    margin: 20px auto;
    padding: 10px 22px;
    font-size: 16px;
    color: #9F2B68;
    position: relative;
    z-index: 10;
}
.sobremi button .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #eba0c9;
    z-index: -1;
    transition: 1s;
}
.sobremi button:hover .overlay{
    width: 100%;
}
/*SECCION S K I L L S*/
.skills{
    background-color: rgb(245, 189, 219);
    color: #9F2B68;
    padding: 50px 20px;
}
.skills .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.skills h2{
    font-size: 48px;
    font-family: 'Dosis';
    text-align: center;
    padding: 20px 0px;
}
.skills .fila{
    display: flex;
}
.skills .fila .col{
    width: 50%;
    padding:  0 20px;
}
.skills .fila .col h3{
    font-size: 28px;
    font-family:'Dosis' ;
    margin-bottom: 18px;
}
.skills .skill > span{
    font-weight: bold;
    font-display: block;
    margin-bottom: 10px;
}
.skills .skill .barra-skill{
    height: 8px;
    width: 80%;
    background-color: #f5c7df;
    position: relative;
    margin-bottom: 30px;
}
.skills .skill .progreso{
    background-color: #eba0c9;
    position: absolute;
    top:0;
    left: 0;
    height: 8px;
}
.skills .skill .barra-skill span{
    position: absolute;
    height: 40px;
    width: 40px;
    background-color: #eba0c9;
    border-radius: 50px;
    line-height: 40px;
    text-align: center;
    top: -17px;
    right: -15px;
    font-size: 14px;
}
.skills .skill .blender{
    width: 0%;
    animation: 2s blender forwards;
}
@keyframes blender{
    0%{width: 0%;}
    100%{width: 90%;}
}

.skills .skill .autodeskMaya{
    width: 0%;
    animation: 2s autodeskMaya forwards;
}
@keyframes autodeskMaya{
    0%{width: 0%;}
    100%{width: 75%;}
}

.skills .skill .substancePainter{
    width: 0%;
    animation: 2s substancePainter forwards;
}
@keyframes substancePainter{
    0%{width: 0%;}
    100%{width: 50%;}
}

.skills .skill .photoshop{
    width: 0%;
    animation: 2s photoshop forwards;
}
@keyframes photoshop{
    0%{width: 0%;}
    100%{width: 80%;}
}

.skills .skill .afterEffects{
    width: 0%;
    animation: 2s afterEffects forwards;
}
@keyframes afterEffects{
    0%{width: 0%;}
    100%{width: 75%;}
}

.skills .skill .adobeInDesing{
    width: 0%;
    animation: 2s adobeInDesing forwards;
}
@keyframes adobeInDesing{
    0%{width: 0%;}
    100%{width: 50%;}
}

.skills .skill .unity{
    width: 0%;
    animation: 2s unity forwards;
}
@keyframes unity{
    0%{width: 0%;}
    100%{width: 60%;}
}

.skills .skill .comunicacion{
    width: 0%;
    animation: 2s comunicacion forwards;
}
@keyframes comunicacion{
    0%{width: 0%;}
    100%{width: 90%;}
}

.skills .skill .trabajoEnEquipo{
    width: 0%;
    animation: 2s trabajoEnEquipo forwards;
}
@keyframes trabajoEnEquipo{
    0%{width: 0%;}
    100%{width: 80%;}
}

.skills .skill .creatividad{
    width: 0%;
    animation: 2s creatividad forwards;
}
@keyframes creatividad{
    0%{width: 0%;}
    100%{width: 85%;}
}

.skills .skill .dedicacion{
    width: 0%;
    animation: 2s dedicacion forwards;
}
@keyframes dedicacion{
    0%{width: 0%;}
    100%{width: 100%;}
}

.skills .skill .esfuerzo{
    width: 0%;
    animation: 2s esfuerzo forwards;
}
@keyframes esfuerzo{
    0%{width: 0%;}
    100%{width: 100%;}
}

/* SECCIÓN CURRICULUM*/
.curriculum{
    background-color: rgb(248, 194, 223);
    color: #9F2B68;
    padding: 50px 20px;
}
.curriculum .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.curriculum h2{
    font-size: 48px;
    font-family: 'Dosis';
    text-align: center;
    padding: 20px 0px;
}
.curriculum .fila{
    display: flex;
    justify-content: space-between;
}
.curriculum .fila .col{
    width: 49%;
    padding: 0 20px;
}
.curriculum .fila .col h3{
    font-size: 28px;
    font-family:'Dosis' ;
    margin-bottom: 18px;
}
.curriculum .fila .izquierda{
    border-right: 2px solid #eba0c9;
}
.curriculum .fila .derecha{
    border-left: 2px solid #eba0c9;
}
.curriculum .fila .item{
    padding: 25px;
    margin-bottom: 30px;
    background-color: #efb6d4;
    position: relative;
}
.curriculum .fila .item h4{
    font-size: 20px;
    margin-bottom: 10px;
}
.curriculum .fila .item .casa{
    color: #DC143C;
    font-size: 22px;
    font-weight: bold;
    display: block;
}
.curriculum .fila .item .fecha{
    color: #DC143C;
    display: block;
    margin-bottom: 10px;
}
.curriculum .fila .item p{
    line-height: 24px;
}
.curriculum .fila .izq{
    border-right: 2px solid #DC143C ;
    margin-right: 20px;
}
.curriculum .fila .der{
    border-left: 2px solid #DC143C ;
    margin-left: 20px;
}
.curriculum .fila .item .conectori{
    height: 2px;
    background-color: #DC143C;
    width: 47px;
    position: absolute;
    top: 50%;
    right: -47px;
    z-index: 5;
}
.curriculum .fila .item .circuloi{
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #DC143C;
    float: right;
    position: relative;
    bottom: 4px;
}
.curriculum .fila .item .conectord{
    height: 2px;
    background-color: #DC143C;
    width: 47px;
    position: absolute;
    top: 50%;
    left: -47px;
    z-index: 5;
}
.curriculum .fila .item .circulod{
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #DC143C;
    float: left;
    position: relative;
    bottom: 4px;
}

/*SECCION PORTFOLIO*/
.portfolio{
    background-color: rgb(255, 196, 227);
    color: #9F2B68;
    padding: 50px 20px;
}
.portfolio .contenido-seccion{
    max-width: 500px;
    margin: auto;
}
.portfolio h2{
    font-size: 48px;
    font-family: 'Dosis';
    text-align: center;
    padding: 20px 0px;
}
.portfolio .galeria{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.portfolio .galeria .proyecto{
    position: relative;
    max-width: 500px;
    height: fit-content;
    margin: 10px;
    cursor: pointer;
}
.portfolio .galeria .proyecto img{
    width: 100%;
    display: block;
}
.portfolio .galeria .proyecto video{
    width: 100%;
    display: block;
}
.portfolio .galeria .proyecto .overlay{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: linear-gradient(rgb(235, 160, 201,.8),rgb(239, 182, 212,.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 1s;
    font-size: 18px;
    letter-spacing: 3px;
    opacity: 0;
}
.portfolio .galeria .proyecto .overlay h3{
    margin-bottom: 35px;
    transition: 1s;
}
.portfolio .galeria .proyecto .overlay:hover{
    opacity: 1;
}
.portfolio .galeria .proyecto .overlay:hover h3{
    margin-bottom: 0px;
}
/*SECCION CONTACTO*/
.contacto{
    background-color: #fccde5;
    color: #9F2B68;
    padding: 50px 0;
}
.contacto .contenido-seccion{
    max-width:500px;
    margin: auto;
}
.contacto h2{
    font-size: 48px;
    font-family: 'Dosis';
    text-align: center;
    padding: 20px 0px;
}
.contacto .fila{
    display: flex;
    justify-content: center;
}
.contacto .col{
    width: 100%;
    max-width: 750px;
    padding: 10px;
    box-sizing: border-box;
}
.contacto .col input, .contacto .col textarea{
    display: block;
    width: 100%;
    padding: 18px;
    border: none;
    margin-bottom: 20px;
    background-color: #eba0c9;
    color: #9F2B68;
    font-size: 18px;
}
.contacto button{
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #9F2B68;
    width: fit-content;
    display: block;
    margin: 20px auto;
    padding: 10px 22px;
    font-size: 16px;
    color: #9F2B68;
    position: relative;
    z-index: 10;
}
.contacto button .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #eba0c9;
    z-index: -1;
    transition: 1s;
}
.contacto button:hover .overlay{
    width: 100%;
}
footer{
    background-color: #ffc1e3;
    color: #9F2B68;
    padding: 50px 0 30px 0;
    text-align: center;
    position: relative;
    width: 100%;
}
footer .redes{
    margin-bottom: 20px;
}
footer .redes a{
    color: #9F2B68;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #9F2B68;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 40px 5px;
    font-size: 20px;
    transition: .3s;
}
footer .arriba{
    display: block;
    width: 50px;
    height: 50px;
    background-color: #ffc1e3;
    color: #9F2B68;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
}

/* SECCION RESPONSIVE */
@media screen and (max-width:980px){
    nav{
        display: none;
    }
    .nav-responsive{
        display: block;
    }
    nav.responsive{
        display: block;
        position: absolute;
        right: 0;
        top: 75px;
        background-color: #ffc1e3;
        width: 180px;
        z-index: 1000;
        overflow-x: hidden;
    }
    nav.responsive ul{
        display: block !important;
    }
    nav.responsive ul li{
        border-bottom: 1px solid #9F2B68;
        padding: 10px 0;
    }
}
@media  screen and (max-width:700px) {
    .sobremi .fila{
        display: block;
    }
    .sobremi .fila .col{
        width: fit-content;
    }

    .skills .fila{
        display: block;
    }
    .skills .fila .col{
        width: 100%;
    }
    .skills .fila .col .barra-skill{
        width: 100%;
    }
}
@media  screen and (max-width:700px) {
    .sobremi .fila{
        display: block;
    }
    .sobremi .fila .col{
        width: fit-content;
    }

    .skills .fila{
        display: block;
    }
    .skills .fila .col{
        width: 100%;
    }
    .skills .fila .col .barra-skill{
        width: 100%;

    }
    
    .curriculum .fila{
        display: block;
    }
    .curriculum .fila .col{
        width: 90%;
    }
    .curriculum .fila .derecha{
        margin-left: 20px;
    }

    .portfolio .galeria{
        display: block;
        width: 100%;
    }
    .portfolio .galeria .proyecto{
        max-width: 100%;
    }
    .portfolio .galeria.proyecto img{
        width: 100%;
    }
    .portfolio .galeria.proyecto video{
        width: 100%;
    }
    .contacto .fila{
        display: block;
    }
    .contacto .fila .col{
        width: 100%;
    }
}
a:link {
    color: #9F2B68
}