@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Righteous&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-principal :  rgb(33, 77, 179);
    --color-principal-gradent :  rgba(33, 77, 179, 0.8);
}



* {
    box-sizing: border-box;
    font-family: 'Work Sans';
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* MENU */

.contenedor-header {
    background: #1e2326;
    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: "Bebas Neue", sans-serif;
    font-size: 40px;
    color: var(--color-principal);
    text-decoration: none;
}

.contenedor-header header ul{
    display: flex;
    list-style: none;
}

.contenedor-header header nav ul li a {
    text-align: none;
    color: aliceblue;
    margin: 0 15px;
    padding: 3px;
    transition: 0.5s;
    text-decoration: none;
}

.contenedor-header header nav ul li a:hover{
    color: var(--color-principal);
}

.nav-responsive {
    background-color: var(--color-principal);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

/*  INICIO  */
.inicio {
    background: linear-gradient(to top, rgba(30,35,38,.8), rgba(30,35,38,1)), url(../img/fondo\ azul.jpg);
    background-size: cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items:  center;
}

.inicio .contenido-banner{
    padding: 20px;
    background-color: #1e2326;
    max-width: 350px;
    margin: auto;
    text-align: center;
    border-radius: 40px;
}

.inicio .contenido-banner img {
    margin-top: 40px;
    border: 10px solid var(--color-principal);
    display: block;
    width: 80%;
    margin: auto;
    border-radius: 100% ;
}

.inicio .contenido-banner h1 {
    margin-top: 40px;
    font-size: 50px;
    font-family: "Bebas Neue", sans-serif;
}

.inicio .contenido-banner h2{
    font-size: 15px;
    font-weight: normal;
}

.inicio .contenido-banner .redes a{
    color:#fff;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #fff;
    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: var(--color-principal);
}

/*SOBRE MI */

.sobremi{
    background-color: #1e2326;
    color: #fff;
    padding: 50px 20px;
}

.sobremi .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}

.sobremi h2 {
    font-size:48px;
    font-family: 'Righteous';
    text-align: center;
    padding: 20px 0;
}

.sobremi .contenido-seccion p {
    font: 18px;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: justify;
}

.sobremi .contenido-seccion p span {
    color: var(--color-principal);
    font-weight: bold;
}

.sobremi .fila {
    display: flex;
}

.sobremi .fila .col{
    width: 50%;
}
.sobremi .fila .col h3{
    font-size: 28px;
    font-family: 'Righteous';
    margin-bottom: 25px;
}

.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: var(--color-principal);
    width: 130px;
}
/*
.sobremi .fila .col ul li span {
    background-color: #1cb698;
    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: 110px;
    height: 110px;
    background-color: #292f34;
    border-radius: 10px;
    margin: 0 15px 15px 0;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items:  center;
    justify-content: center;
    transition: .3s;
}

.sobremi .fila .col .contenedor-intereses .interes:hover{
    background-color:var(--color-principal);
}

.sobremi .fila .col .contenedor-intereses .interes i{
    font-size: 30px;
    margin-bottom: 10px;
}

.sobremi .contenido-seccion a{
    text-decoration: none;
}
.sobremi button{
    cursor: pointer;
    background-color:transparent;
    border: 2px solid #fff;
    width: fit-content;
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    position: relative;
    z-index: 10;

}
.sobremi button .overlay{
    position: absolute;
    top:0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color:var(--color-principal);
    z-index: -1;
    transition: 1s;
    text-decoration: none;
}

.sobremi button:hover .overlay{
    width: 100%;
    
}

/*SKILLS*/

.skills{
    background-color: #252A2E;
    color: #fff;
    padding: 50px 20px;

}
.skills .contenido-seccion{
    max-width: 1100px;
    margin: auto;

}
.skills h2{
    font-size: 48px;
    font-family: 'Righteous';
    text-align: center;
    padding: 20px 0;


}
.skills .fila{
    display: flex;
}
.skills .fila .col{
    width: 50%;
    padding: 0 20px;
}
.skills .fila .col h3{
    font-size: 28px;
    font-family: 'Righteous';
    margin-bottom: 25px;
}
.skills .skill > span{
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.skills .skill .barra-skill{
    height: 8px;
    width: 98%;
    background-color: #131517;
    position: relative;
    margin-bottom: 30px;
    margin-left: 20px;
}
.skills .skill .progreso{
    background-color: var(--color-principal);
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
}
.skills .skill .barra-skill span{
    position: absolute;
    height: 40px;
    width: 40px;
    background-color: var(--color-principal);
    border-radius: 50px;
    line-height: 40px;
    text-align: center;
    top: -17px;
    right: -15px;
    font-size: 14px;
}


/*python*/
.skills .skill .python{
    width: 0%;
    animation: 2s python forwards;
}
@keyframes python {
    0%{width: 0%;}
    100%{width: 75%;}
}

/*html y css*/
.skills .skill .htmlcss{
    width: 0%;
    animation: 2s htmlcss forwards;
}
@keyframes htmlcss {
    0%{width: 0%;}
    100%{width: 85%;}
}

/*javascript*/
.skills .skill .javascript{
    width: 0%;
    animation: 2s javascript forwards;
}
@keyframes javascript {
    0%{width: 0%;}
    100%{width: 50%;}
}
/*flask*/
.skills .skill .flask{
    width: 0%;
    animation: 2s flask forwards;
}
@keyframes flask {
    0%{width: 0%;}
    100%{width: 75%;}
}

/*FastApi*/
.skills .skill .fastapi{
    width: 0%;
    animation: 2s fastapi forwards;
}
@keyframes fastapi {
    0%{width: 0%;}
    100%{width: 75%;}
}

/*django*/
.skills .skill .django{
    width: 0%;
    animation: 2s django forwards;
}
@keyframes django {
    0%{width: 0%;}
    100%{width: 60%;}
}

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

/* SKILL SOFT*/


/*Trabajo en equipo*/
.skills .skill .trabajo_equipo{
    width: 0%;
    animation: 2s trabajo_equipo forwards;
}
@keyframes trabajo_equipo {
    0%{width: 0%;}
    100%{width: 94%;}
}

/*Comunicacion*/
.skills .skill .comunicacion{
    width: 0%;
    animation: 2s comunicacion forwards;
}
@keyframes comunicacion {
    0%{width: 0%;}
    100%{width: 92%;}
}


/*proactividad*/
.skills .skill .proactividad {
    width: 0%;
    animation: 2s proactividad forwards;
}
@keyframes proactividad {
    0%{width: 0%;}
    100%{width: 75%;}
}

/*actitud_positiva*/
.skills .skill .actitud_positiva{
    width: 0%;
    animation: 2s actitud_positiva forwards;
}
@keyframes actitud_positiva {
    0%{width: 0%;}
    100%{width: 89%;}
}

/*tolerancia_cambio*/
.skills .skill .tolerancia_cambio{
    width: 0%;
    animation: 2s tolerancia_cambio forwards;
}
@keyframes tolerancia_cambio {
    0%{width: 0%;}
    100%{width: 94%;}
}

/*adaptabilidad*/
.skills .skill .adaptabilidad {
    width: 0%;
    animation: 2s adaptabilidad forwards;
}
@keyframes adaptabilidad {
    0%{width: 0%;}
    100%{width: 95%;}
}

/*res_problemas*/
.skills .skill .res_problemas{
    width: 0%;
    animation: 2s res_problemas forwards;
}
@keyframes res_problemas {
    0%{width: 0%;}
    100%{width: 94%;}
}


/*skills imagenes*/
.skills .contenido-imagenes-tools{
    width: 70%;
    max-width: 900px;
    margin: 30px auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;

}

.skills .contenido-imagenes-tools .circulo{
    width: 150px;
    height: 100px;
    background-color: #181a1c;
    border-radius: 10px;
    margin: 0 15px 15px 0;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items:  center;
    justify-content: center;
    transition: .3s;
}

.skills .contenido-imagenes-tools .circulo:hover{
    background-color:var(--color-principal);
}

.skills .contenido-imagenes-tools .circulo img{
    height: 50px;
}

.skills .contenido-imagenes-tools .circulo span{
    color: var(--color-principal);
    font-family: 'Righteous';
}

.skills .contenido-imagenes-tools .circulo:hover span{
    color: #394140;
}

/* SECCION CURRICULUM */


.curriculum{
    background-color: #0e0f0f;
    color: #fff;
    padding: 50px 20px;
}

.curriculum .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}

.curriculum h2 {
    font-size:48px;
    font-family: 'Righteous';
    text-align: center;
    padding: 20px 0;
}

.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: 'Righteous';
    margin-bottom: 25px;
}


.curriculum .fila .izquierda {
    border-right: 2px solid #252a2e;
}


.curriculum .fila .derecha {
    border-left: 2px solid #252a2e;
}

.curriculum .fila .item {
    padding: 25px;
    margin-bottom: 30px;
    background-color: #252a2e;
    position: relative;
}

.curriculum .fila .item h4{
    font-size: 20px;
    margin-bottom: 10PX;
}

.curriculum .fila .item .casa{
    color: var(--color-principal);
    font-size: 22px;
    font-weight: bold;
    display: block;
}

.curriculum .fila .item .fecha {
    display: block;
    color: var(--color-principal);
    margin-bottom: 10px;
}

.curriculum .fila .item p{
    line-height: 24px;
    text-align: justify;
}
.curriculum .fila .item p a{
    text-decoration: none;
    color: var(--color-principal);
    font-weight: bold;
}

.curriculum .fila .item .tecnologias{
    margin-top: 20px;
    display: flex;
}


.curriculum .fila .item .tecnologias .circulo{
    width: 100px;
    height: 100px;
    background-color: #181a1c;
    border-radius: 10px;
    margin: 0 15px 15px 0;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items:  center;
    justify-content: center;
    transition: .3s;
}

.curriculum .fila .item .tecnologias .circulo:hover{
    background-color:var(--color-principal);
}

.curriculum .fila .item .tecnologias .circulo img{
    height: 50px;
}

.curriculum .fila .item .tecnologias .circulo span{
    color: var(--color-principal);
    font-family: 'Righteous';
}

.curriculum .fila .item .tecnologias .circulo:hover span{
    color: #394140;
}

.curriculum .fila .izq{
    border-right: 2px solid var(--color-principal);
    margin-right: 20px;
}

.curriculum .fila .izq .contenedordiploma{
    display: flex;
    justify-content: center;
}

.curriculum .fila .der.contenedordiploma{
    display: flex;
    justify-content: center;
}


.curriculum .fila .izq img, .curriculum .fila .der .imgdip{
    padding: 10px;
    width: 50%;
    border: 2px solid var(--color-principal);
    border-radius: 10px;
    transition: 0.2s;
}

.curriculum .fila .izq img:hover, .curriculum .fila .der .imgdip:hover{
    padding: 2px;
    width: 100%;
    background-color: var(--color-principal);
}

.curriculum .fila .der{
    border-left: 2px solid var(--color-principal);
    margin-left: 20px;
}

.curriculum .fila .item .conectori{
    height: 2px;
    background-color: var(--color-principal);
    width: 47px;
    position: absolute;
    top: 50%;
    right: -47px;
    z-index: 5;
}

.curriculum .fila .item .conectori .circuloi{
    display: block;
    height: 10px;
    width: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--color-principal);
    float: right;
    position: relative;
    bottom: 4px;
}


.curriculum .fila .item .conectord{
    height: 2px;
    background-color: var(--color-principal);
    width: 47px;
    position: absolute;
    top: 50%;
    left: -47px;
    z-index: 5;
}

.curriculum .fila .item .conectord .circulod{
    display: block;
    height: 10px;
    width: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--color-principal);
    float: left;
    position: relative;
    bottom: 4px;
}

/*CERTIFICADOS*/
.certificados {
    background-color: #0e0f0f;
    width: 100%;
}


.certificados .contenido-imagenes{
    width: 80%;
    max-width: 1000px;
    margin: 0px auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.certificados .contenido-imagenes .circulo{
    width: 300px;
    background-color: #181a1c;
    border-radius: 10px;
    margin: 0 15px 15px 0;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items:  center;
    justify-content: center;
    transition: .3s;

}   
.certificados .contenido-imagenes .circulo img{
    width: 90%;
    padding: 10px;
    transition: 0.2s;
}
.certificados .contenido-imagenes .circulo:hover{
    background-color:var(--color-principal);
    transform: scale(1.5);
}

.certificados .contenido-imagenes .circulo:hover img{
    /*width: 100%;*/
    padding: 5px;
    border-radius: 10px;
}



.certificados .contenido-imagenes .circulo span{
    color: var(--color-principal);
    font-family: 'Righteous';
}

.certificados .contenido-imagenes .circulo:hover span{
    color: #394140;
}


/*seccion PORTFOLIO*/

.portfolio{
    background-color: #131517;
    color: #fff;
    padding: 50px 20px;
}

.portfolio .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}

.portfolio h2 {
    font-size:48px;
    font-family: 'Righteous';
    text-align: center;
    padding: 20px 0;
}

.portfolio .galeria{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.portfolio .galeria .proyecto {
    position: relative;
    max-width: 340px;
    height: fit-content;
    margin: 10px;
    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(var(--color-principal-gradent),var(--color-principal-gradent));
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 1s;
    font-size: 18px;
    letter-spacing: 3px;
    opacity: 0;
}

.portfolio .galeria .proyecto a .overlay h3{
    margin-bottom: 20px;
    transition: 1s;
    color: #fff;
}

.portfolio .galeria .proyecto a .overlay p{
    color: #fff;
}

.portfolio .galeria .proyecto img a{
    text-decoration: none;
    color: #fff;
}

.portfolio .galeria .proyecto .overlay:hover{
    opacity: 1;
}

.portfolio .galeria .proyecto .overlay:hover h3{
    margin-bottom: 0px;
}

/*SECCION CONTACTO*/

.contacto{
    background-image: url(../img/fondo\ azul.jpg);
    background-color: #1e2326 ;
    background-size: cover;
    color: #fff;
    padding: 50px 0;
}

.contacto .contenido-seccion {
    max-width: 1100px;
    margin: auto;
}

.contacto h2 {
    font-size:48px;
    font-family: 'Righteous';
    text-align: center;
    padding: 20px 0;
}

.contacto .fila{
    display: flex;
}

.contacto .col{
    width: 50%;
    padding: 10px;
    position: relative;
}

.contacto .col input, .contacto .col textarea{
    display: block;
    width: 100%;
    padding: 18px;
    border: none;
    margin-bottom: 20px;
    background-color: #0e0f0f;
    color: #fff;
    font-size: 18px;
}


.contacto button{
    cursor: pointer;
    background-color:transparent;
    border: 2px solid #fff;
    width: fit-content;
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    position: relative;
    z-index: 10;
}
.contacto button .overlay{
    position: absolute;
    top:0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color:var(--color-principal);
    z-index: -1;
    transition: 1s;
}
.contacto button:hover .overlay{
    width: 100%;
}

.contacto .col img{
    width: 100%;
}

.contacto .col .info{
    position: absolute;
    top: 40%;
    background-color: #252a2e;
    padding: 20px;
    max-width: 350px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contacto .col .info ul{
    list-style: none;
}

.contacto .col .info ul li{
    margin-bottom: 20px;
}

.contacto .col .info ul li i{
    color: #1cb698;
    display: inline-block;
    margin-right: 20px;
}

footer {
    background-color: #252a2e;
    color: #fff;
    padding: 50px 0 30px 0;
    text-align: center;
    position: relative;
    width: 100%;
}

footer .redes {
    margin-bottom: 20px;
}

footer .redes a{
    color:#fff;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 40px 5px;
    font-size: 20px;
    transition: .3s;
}

footer .redes a:hover{
    background-color: var(--color-principal);
}

footer .arriba {
    display: block;
    width: 50px;
    height: 50px;
    background-color:var(--color-principal);
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 18px;
}

/* 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: #252a2e;
        width: 180px;
    }
    nav.responsive ul{
        display: block;
    }
    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;
    }

    .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%;
    }
    .skills .contenido-imagenes-tools{

        width: 100%;
    }
}