@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Work+Sans:wght@100;300;400;600;800&display=swap');

*{
    box-sizing: border-box;
    font-family: 'Microsoft sans serif';
    margin: 0;
    padding: 0;
}
html{
   
    scroll-behavior: smooth;
}

/* MENU */

.contenedor-header{
    
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}
.contenedor-header header{
    
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;


}
.contenedor-header header .logo img {
    
    position: absolute;
    height: 55px;
    width: 100px;
    
}
.contenedor-header header ul{
    display: flex;
    list-style: none;
    font-size: 17px;
}
.contenedor-header header nav ul li a{
    text-align: none;
    font-family: 'segoe script';
    color: #fff;
    margin: 0 15px;
    padding: 2px;
    transition: .3s;
    text-decoration: none;
    font-size: 17 px;
}
.contenedor-header header nav ul li a:hover{
    color: yellow;
}
.nav-responsive{
    background-color: rgb(84, 2, 183);
    color:#fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}
/* SECCION I N I C I O */
.inicio{
    background: linear-gradient(to top, rgba(73, 78, 80, 0.8), rgb(19, 20, 22)),
    url(img/4.jpg);
    background-size: cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
}
.inicio .contenido-banner{
    padding: 1px;
    padding-top: 55px;
    max-width: 500px;
    margin: auto;
    text-align: center;
    border-radius: 23px;
}

.inicio .contenido-banner img:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    transition: 0.6s ease;
  }



.inicio .contenido-banner img{
    margin-top: 40px;
    /* border: 2px solid #eff4c4; */
    display: block;
    width: 90%;
    margin: auto;
    border-radius: 9%;
}
.inicio .contenido-banner h1{
    margin-top: 40px;
    font-size: 43px;
    font-family: 'Cascadia code semi light';
    color: rgb(238, 238, 61);
}
.inicio .contenido-banner h2{
    font-size: 32px;
    font-weight: normal;
    color:white;
    font-family: 'Freestyle Script';
    
}
.inicio .contenido-banner .redes a{
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border: 1px solid rgb(252, 223, 3);
    border-radius: 30%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin: 25px 6px;
    font-size: 23px;
    transition: .3s;
}
.inicio .contenido-banner .redes a:hover{
    background-color:rgb(59, 53, 238);
}
.sobremi{
    background-color: #1e2326;
    color: #fff;
    padding: 50px 20px;
}
.sobremi .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.sobremi h2{
    font-size: 68px;
    font-family: 'gabriola';
    text-align: center;
    padding: 0px 0;

}
.sobremi .contenido-seccion p{
    font: 20px;
    line-height: 28px;
    margin-bottom: 8px;
    font-size: 18px;
}
.sobremi .contenido-seccion p span{
    color: yellow;
    font-size: 22px;
    
}
.sobremi .fila{
    display: flex;
    gap: 180px;
}
.sobremi .fila .col
{
    width: 50%;
}
.sobremi .fila .col h3{
    font-size: 38px;
    font-family: 'Script MT bold';
    margin-bottom: 25px;
}
.sobremi .fila .col ul{
    list-style: none;
}
.sobremi .fila .col ul li{
    margin: 20px 0;
    font-size: 16px;
}
.sobremi .fila .col ul li strong{
    display: inline-block;
    color:  #a7b0bf;
    width: 132px;
    font-size: 20x;
}
.sobremi .fila .col ul li span{
    font-size: 12px;
    background-color: #a7b0bf;
    color: #121517;
    padding: 4px;
    font-weight: bold;
    border-radius: 7px;
}
.sobremi .fila .col .contenedor-intereses{
    display: flex;
    flex-wrap: wrap;
    
}
.sobremi .fila .col .contenedor-intereses .interes{
    width: 100px;
    height: 100px;
    background-color: #252A2E;
    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: #4e5154;
}
.sobremi .fila .col .contenedor-intereses .interes i{
    font-size: 30px;
    margin-bottom: 10px;
}
.sobremi button{
    cursor: pointer;
    background-color: transparent;
    border: 2px solid rgb(197, 215, 120);
    width: fit-content;
    display: block;
    margin: 20px auto;
    padding: 10px 22px;
    font-size: 20px;
    color: #fff;
    position: relative;
    z-index: 10;
    background-color:  rgb(35, 13, 66);
    border-radius: 10px;
}
.sobremi button .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: black;
    z-index: -1;
    transition: 1s;
    border-radius: 10px;
}
.sobremi button:hover .overlay{
    width: 100%;
}
/* SECCION S K I L L S */
.skills{
    background-color: #252A2E;
    color: #fff;
    padding: 50px 20px;
    
}
.skills .contenido-seccion{
    max-width: 1100px;
    margin: auto;
    
}
.skills h2{
    font-size: 70px;
    font-family: 'gabriola';
    text-align: center;
    padding: 20px 0;
    

}
.skills .fila{
    display: flex;
    gap: 200px;
}
.skills .fila .col{
    width: 50%;
    padding: 0 20px;
}
.skills .fila .col h3{
    font-size: 38px;
    font-family: 'Script MT bold';
    margin-bottom: 25px;
}
.skills .skill > span{
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'comic sans MS';

}
.skills .skill .barra-skill{
    height: 8px;
    width: 100%;
    background-color: rgb(9, 1, 1) ;
    position: relative;
    margin-bottom: 30px;
}
.skills .skill .progreso{
    background-color: #c9bf61;
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
}
.skills .skill .barra-skill span{
    position: absolute;
    height: 40px;
    width: 40px;
    background-color: #c9bf61;
    border-radius: 50px;
    line-height: 40px;
    text-align: center;
    top: -15px;
    right: -15px;
    font-size: 15px;
    color: rgb(7, 7, 8);
    
}










/* Estas clases se agregaran dinamicamente mediante javascript */
.skills .skill .javascript{
    width: 0%;
    animation: 2s javascript forwards;
}
@keyframes javascript {
    0%{width: 0%;}
    100%{width: 77%;}
}

.skills .skill .htmlcss{
    width: 0%;
    animation: 2s htmlcss forwards;
}
@keyframes htmlcss {
    0%{width: 0%;}
    100%{width: 87%;}
}

.skills .skill .photoshop{
    width: 0%;
    animation: 2s photoshop forwards;
}
@keyframes photoshop {
    0%{width: 0%;}
    100%{width: 80%;}
}

.skills .skill .wordpress{
    width: 0%;
    animation: 2s wordpress forwards;
}
@keyframes wordpress {
    0%{width: 0%;}
    100%{width: 85%;}
}

.skills .skill .drupal{
    width: 0%;
    animation: 2s drupal forwards;
}
@keyframes drupal {
    0%{width: 0%;}
    100%{width: 80%;}
}

.skills .skill .comunicacion{
    width: 0%;
    animation: 2s comunicacion forwards;
}
@keyframes comunicacion {
    0%{width: 0%;}
    100%{width: 90%;}
}

.skills .skill .trabajo{
    width: 0%;
    animation: 2s trabajo forwards;
}
@keyframes trabajo {
    0%{width: 0%;}
    100%{width: 100%;}
}

.skills .skill .creatividad{
    width: 0%;
    animation: 2s creatividad forwards;
}
@keyframes creatividad {
    0%{width: 0%;}
    100%{width: 92%;}
}

.skills .skill .dedicacion{
    width: 0%;
    animation: 2s dedicacion forwards;
}
@keyframes dedicacion {
    0%{width: 0%;}
    100%{width: 80%;}
}

.skills .skill .proyect{
    width: 0%;
    animation: 2s proyect forwards;
}

@keyframes proyect {
    0%{width: 0%;}
    100%{width: 90%;}
}










/* SECCION CURRICULUM */
.curriculum{
    background-color: #1e2326;
    color: #fff;
    padding: 50px 20px;
}
.curriculum .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.curriculum h2{
    font-size: 65px;
    font-family: 'gabriola';
    text-align: center;
    padding: 20px 0;

}
.curriculum .fila{
    display: flex;
    justify-content: space-between;
    
}
.curriculum .fila .col{
    width: 47%;
    padding: 0 20px;
}
.curriculum .fila .col h3{
    font-size: 36px;
    font-family: 'Script MT bold';
    margin-bottom: 25px;
}
.curriculum .fila .izquierda{
    border-right: 2px solid  #e6d964;
}
.curriculum .fila .derecha{
    border-left: 2px solid  #e6d964;
}
.curriculum .fila .item{
    padding: 25px;
    margin-bottom: 30px;
    background-color: #252A2E;
    position: relative;
}
.curriculum .fila .item h4{
    font-size: 23px;
    margin-bottom: 10px;
    color: #e6d964;
}
.curriculum .fila .item .casa{
    color: #c1badf;
    font-size: 20px;
    font-weight: bold;
    display: block;
}
.curriculum .fila .item .fecha{
    display: block;
    color: #c1badf;
    margin-bottom: 10px;
    font-size: 20px;
}
.curriculum .fila .item p{
    line-height: 24px;
    font-size: 18px;
}
.curriculum .fila .izq{
    border-right: 2px solid  #e6d964;;
    margin-right: 20px;
}
.curriculum .fila .der{
    border-left: 2px solid  #e6d964;;
    margin-left: 20px;
}
.curriculum .fila .item .conectori{
    height: 2px;
    background-color:  #e6d964;
    width: 47px;
    position: absolute;
    top: 50%;
    right: -47px;
    z-index: 5;
}
.curriculum .fila .item .conectori .circuloi{
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color:  #e6d964 ;
    float: right;
    position: relative;
    bottom: 4px;
}
.curriculum .fila .item .conectord{
    height: 2px;
    background-color: #e6d964;
    width: 47px;
    position: absolute;
    top: 50%;
    left: -47px;
    z-index: 5;
}
.curriculum .fila .item .conectord .circulod{
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color:  #e6d964;;
    float: left;
    position: relative;
    bottom: 4px;
}
/* SECCION PORTFOLIO */
.portfolio{
    background-color: #252A2E;
    color: #fff;
    padding: 50px 20px;
}
.portfolio .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.portfolio h2{
    font-size: 70px;
    font-family: 'gabriola';
    text-align: center;
    padding: 20px 0;
}
.portfolio .galeria{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    color: rgb(15, 15, 58);
}
.portfolio .galeria .proyecto{
    position: relative;
    max-width: 340px;
    height: fit-content;
    margin: 9px;
    cursor: pointer;
}
.portfolio .galeria .proyecto img{
    width: 100%;
    display: block;
}
.portfolio .galeria .proyecto .overlay{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: linear-gradient(rgba(30, 209, 173, 0.8), rgba(30, 209, 173, 0.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: 20px;
    transition: 1s;
}
.portfolio .galeria .proyecto .overlay:hover{
    opacity: 1;
}
.portfolio .galeria .proyecto .overlay:hover h3{
    margin-bottom: 0px;
}
/* SECCION CONTACTO */
.contacto{
    background-image: url(img/w2.jpg);
    background-color: #1e2326;
    color: #fff;
    padding: 50px 0;
    
}
.contacto .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.contacto h2{
    font-size: 70px;
    font-family: 'gabriola';
    text-align: center;
    padding: 20px 0;
}
.contacto .fila{
    display: flex;
}
.contacto .col{
    width: 80%;
    padding: 35px;
    position: relative;
}

.contacto .col img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    transition: 0.6s ease;
  }


.contacto .col input, .contacto .col textarea{
    display: block;
    border-radius: 22px;
    width: 85%;
    padding: 18px;
    border: none;
    margin-bottom: 20px;
    background-color: #8cb0e2;
    color: rgb(35, 13, 66);
    font-size: 15px;
}

::placeholder{
    color: rgb(93, 15, 15);
}


.contacto button{
    cursor: pointer;
    background-color: rgb(35, 13, 66) ;
    border: 2px solid #fff;
    width: fit-content;
    display: block;
    border-radius: 10px;
    margin: 20px auto;
    padding: 10px 22px;
    font-size: 22px;
    color: #fff;
    position: relative;
    z-index: 10;
    border: 2px solid rgb(197, 215, 120);
}
.contacto button .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: black;
    z-index: -1;
    transition: 0.8s;
    border-radius: 10px;
    
}
.contacto button:hover .overlay{
    width: 100%;
    border-radius: 10px;
}
.contacto .col img{
    width: 92%;
    
    border-radius: 25px;
}

.hr{

    background-color: rgb(245, 253, 4);
    height: 7px;
    border: 2px solid rgb(4, 37, 255);
}

footer{
    background-image: url(img/wallpaper.jpg);
    background-size: 100%;
    color: rgb(14, 3, 3);
    padding: 50px 0 30px 0;
    text-align: center;
    position: relative;
    width: 100%;

}
footer .redes{
    margin-bottom: 20px;
}
footer .redes a{
    color: rgb(245, 253, 4);
    display: inline-block;
    text-decoration: none;
    border: 1px solid ;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 40px 30px;
    font-size: 30px;
    transition: .3s;
}

footer .redes a :hover{
    background-color: #1a2454;
    border-radius: 100%;
    width: 65px;
    height: 65px;
    line-height: 65px;
    border: 1px solid #fff;
    
}

footer .arriba{
    display: block;
    width: 50px;
    height: 50px;
    background-color: #fcfffe;
    color: rgb(252, 6, 6);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
    border-radius: 20%;
    line-height: 50px;
    font-size: 23px;
}

footer .arriba :hover{
    color: #1a2454;
    font-size: 30px ;
    transition: 0.2s;
}


/* 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: #5d18e6;
        width: 180px;
    }
    nav.responsive ul{
        display: block !important;
    }
    nav.responsive ul li{
        border-bottom: 1px solid #fff;
        padding: 10px 0;
    }
}
@media screen and (max-width:700px){
    .sobremi .fila{
        display: block;
    }
    .sobremi .fila .col{
        width: fit-content;
        font-size: 12px;

    }

    .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%;
    }
    .contacto .fila{
        display: block;
    }
    .contacto .fila .col{
        width: 100%;
    }
}
