/* #region ---------------------------------------------- VALORES PREVIOS ------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root{
    --azul: #143458;
    --azulOscuro: #1b2534;
    --moradoOscuro: #26283d;
    --grisOscuro: #323232;
    --grisClaro: #323232;
    --gris: #272727;
    --negro: #000000;
    --blanco: #fff;
    --fondo: rgb(43, 43, 43);
    --tema: rgb(205, 65, 0);
    --temaClaro: rgb(200, 131, 86);
    --temaShadow: rgb(254, 117, 25);
    --fuente: 'Space Grotesk', sans-serif;
}

*{
    box-sizing: border-box;
    font-family: var(--fuente);
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

/* #endregion*/

/* #region ---------------------------------------------- FONDO ---------------------------------------------- */

.sobremi, .skills, .curriculum, .portfolio, .contacto{
    background: var(--gris);
    font-family: var(--fuente);
}

.fondo{
    margin: 0px;
    padding: 1px;
    border: 0px;
    height: 100%;
    width: 100%;
    /* backdrop-filter: blur(30.0px); */
}

/* #endregion*/

/* #region ---------------------------------------------- HEADER --------------------------------------------- */

header{
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 20;
}

.header{
    background-color: rgba(71, 71, 71, 0.3);
    box-shadow: 0 8px 32px 0 rgba(1, 2, 6, 0.37);
    backdrop-filter: blur(6.0px);
}

header .content-header{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

header .content-header .logo a{
    font-family: 'Righteous';
    font-size: 36px;
    color: var(--blanco);
    text-decoration: none;
    transition: 3s;
}

header .content-header ul{
    display: flex;
    list-style: none;
}

header .content-header nav ul li a{
    font-family: var(--fuente);
    text-align: none;
    color: var(--blanco);
    margin: 0 15px;
    padding: 3px;
    transition: 0.5s;
}

header .content-header nav ul li a:hover{
    color: var(--blanco);
    font-size: 17px;
    font-weight: 600;
    text-shadow: 0px 0px 10px var(--tema);
}

.nav-resposive{
    background-color: var(--tema);
    color: var(--blanco);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

/* #endregion*/

/* #region ---------------------------------------------- INICIO --------------------------------------------- */

#fondo{
    display: flex;
    flex-wrap: wrap;
}

.inicio{
    backdrop-filter: blur(6.0px);
    background: linear-gradient(to top,rgba(30,35,38,.8), rgba(206, 82, 0, 0.696)), url('/IMG/fondoCabecera.png');
    height: 100vh;
    min-height: 750px;
    color: var(--blanco);
    display: flex;
    align-items: center;
    transition: 2s;
}

@keyframes flo{50%{transform: translateY(10px);}}

.inicio .content-banner{
    min-height: 750px;
    margin: 20px;
    max-width: 350px;
    min-height: 1000px;
    margin: auto;
    text-align: center;
    animation-name: flo;
	animation-duration: 3.5s;
	animation-iteration-count: infinite;
}

.inicio .content-banner .content-img .fotoPerfil{
    filter: drop-shadow( 0 2px 5px rgba(0, 0, 0, 0.7));
    background-color: transparent;
    width: 100%;
    margin-bottom: -3px;
}

.inicio .content-banner .presentation{
    padding: 20px;
    background-color: rgba(71, 71, 71, 0.3);
    box-shadow: 0 8px 32px 0 rgba(1, 2, 6, 0.37);
    backdrop-filter: blur(6.0px);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.hidden {
    opacity: 0;
}

.console-container {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.3em;
    text-align: center;
    height: 50px;
    width: 310px;
    display: block;
    color: white;
    text-align: center;
    margin: auto;
}
.console-underscore {
    display: inline-block;
    position: relative;
    top: -0.14em;
    left: -10px;
}

.inicio .content-banner .presentation h2{
    font-size: 18px;
    color: var(--tema);
    font-weight: 600;
}

.inicio .content-banner .presentation .redes a{
    color: var(--blanco);
    display: inline-block;
    text-decoration: none;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 15px 10px;
    font-size: 20px;
    transition: .6s;
}

.redes a:hover{
    background-color: transparent;
    border: 1px solid var(--blanco);
    box-shadow:  0px 0px 20px var(--tema);
}

/* #endregion*/

/* #region ---------------------------------------------- SOBRE MI ------------------------------------------- */

.sobremi{
    color: var(--blanco);
}

.sobremi .content-section{
    max-width: 1200px;
    margin: auto;
    padding: 0px 20px 0px 20px;
    background: 255,255,255,0.3;
}

.sobremi .content-section h2{
    font-size: 48px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin: 80px;
}

.sobremi .content-section p{
    font-size: 19px;
    line-height: 22px;
    margin-bottom: 20px;
}

.sobremi .content-section p span{
    font-size: 22px;
    color: var(--tema);
    font-weight: bold;
}

.sobremi .fila{
    display: flex;
}

.sobremi .fila .col{
    width: 50%;
}

#masInfo{
    text-align: center;
    margin: 50px 0px;
    padding: 50px 0px;
    border-bottom: 1px solid var(--tema);
    border-top: 1px solid var(--tema);
    box-shadow: inset 0px 50px 40px -60px var(--tema);
    display: none;
}

.col h3{
    font-size: 28px;
    font-family: 'Righteous';
    margin-bottom:  25px;
}

.col ul{
    list-style: none;
}

.col ul li{
    margin: 12px 0;
}

.col ul li strong{
    display: inline-block;
    color: var(--tema);
    width: 130px;
}

.sobremi .fila .col .content-intereses{
    display: flex;
    flex-wrap: wrap;
}

.sobremi .fila .col .content-intereses .interes{
    width: 95px;
    height: 95px;
    clip-path: polygon(50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%);
    background-color: var(--grisClaro);
    margin: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
    font-size: 12px;
}


.sobremi .fila .col .content-intereses .interes:hover{
    transition: 1s ease all;
    background-color: var(--tema);
}

.sobremi .fila .col .content-intereses .interes i{
    font-size: 25px;
    margin-bottom: 15px;
}

.sobremi button{
    cursor: pointer;
    background-color: transparent;
    border: none;
    width: fit-content;
    display: block;
    margin: 20px auto;
    padding: 10px 15px;
    font-size: 16px;
    color: var(--blanco);
    position: relative;
    z-index: 10;
}

.sobremi button i{
    margin-right: 15px;
}

.sobremi button .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background-color: var(--tema);
    z-index: -1;
    transition:  0.5s;
    border-radius: 50px;

}

.sobremi button:hover .overlay{
    width:  100%;
}

.botoni, .botond{
    text-align: center !important;
    padding: 10px 15px;
    margin: 40px auto 100px auto;
}

a{
    text-decoration: none;
    color: var(--blanco);
}

/* #endregion*/

/* #region ---------------------------------------------- SKILLS --------------------------------------------- */

.skills{
    color: var(--blanco);
    padding: 20px 0px 120px 0px;
}

.skills .content-seccion{
    max-width: 1200px;
    margin: auto;
}

.skills h2{
    font-size: 48px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin: 80px;
}


.skills .fila{
    display: flex;
}

.skills .fila .col{
    width: 50%;
}

.skills h3{
    text-align: center;
    font-size: 28px;
    font-family: 'Righteous';
    margin-bottom:  25px;
}

.skills .skill > span{
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.skills .skill .barra-skill{
    height: 8px;
    width: 90%;
    background-color: var(--tema);
    position: relative;
    margin-bottom: 30px;
}

.skills .skill .progreso{
    background-color: var(--blanco);
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
}

.skills .skill .barra-skill span{
    position: absolute;
    height: 0px;
    width: 0px;
    background-color: var(--negro);
    line-height: 40px;
    text-align: center;
    top: -17px;
    right: -15px;
    font-size: 0px;
}

/* #endregion*/

/* #region ---------------------------------------------- CURRICULUM ----------------------------------------- */

.curriculum{
    color: var(--blanco);
    padding: 20px 0px 120px 0px;
}

.curriculum .content-seccion{
    max-width: 1250px;
    margin: auto;
}

.curriculum h2{
    font-size: 48px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin: 80px;
}

.curriculum .fila{
    display: flex;
}

.curriculum .fila .col{
    width: 49%;
    padding: 0 20px;
}

.curriculum h3{
    text-align: center;
    font-size: 28px;
    font-family: 'Righteous';
    margin-bottom:  25px;
}

.curriculum .fila .izquierda{
    border-right: 2px solid #333639;
}

.curriculum .fila .derecha{
    border-left: 2px solid #42464a;
}

.curriculum .fila .item{
    background-color: rgba(71, 71, 71, 0.363);
    box-shadow: 0 8px 32px 0 rgba(1, 2, 6, 0.37);
    backdrop-filter: blur(6.0px);
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 10px;
}

.curriculum .fila .item h4{
    font-size: 20px;
    margin-bottom: 10px;
}

.curriculum .fila .item .casa{
    color: var(--tema);
    font-size: 22px;
    font-weight: bold;
    display: block;
}

.curriculum .fila .item .fecha{
    display: block;
    color: var(--tema) ;
    margin-bottom: 13px;
}

.curriculum .fila .item p{
    line-height: 24px;
}

.curriculum .fila .izq{
    margin-right: 20px;
}

.curriculum .fila .der{
    margin-left: 20px;
}

.curriculum .fila .item .conectori{
    height: 2px;
    background-color: var(--grisClaro);
    width: 46px;
    position: absolute;
    top: 50%;
    right: -44px;
    z-index: 5;
}

.curriculum .fila .item .conectord{
    height: 2px;
    background-color: var(--grisClaro);
    width: 46px;
    position: absolute;
    top: 20%;
    left: -44px;
    z-index: 5;
}

/* #endregion*/

/* #region ---------------------------------------------- PORTFOLIO ------------------------------------------ */

.portfolio{
    color: var(--blanco);
    padding: 50px;
}

.portfolio .content-seccion{
    margin: auto;
}

.portfolio h2{
    font-size: 48px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin: 40px;
}

.portfolio .galeria{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.portfolio .galeria .proyecto{
    position: relative;
    height: 100%;
    margin: 50px 10px 50px 10px;
    cursor: pointer;
    transition: 1.2s;
}
.portfolio .galeria .proyecto:hover{
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(1, 2, 6, 0.37);
    background-color: rgba(71, 71, 71, 0.363);
    backdrop-filter: blur(6.0px);
    width: 440px;
    margin: 50px 10px 20px 10px;
    border: 3px solid var(--tema);
}
.portfolio .galeria .proyecto .overlay{
    position: relative;
    width: 340px;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    display: none;
    transition: 1.2s;
    font-size: 18px;
    opacity: 0;
}

.portfolio .galeria .proyecto:hover .overlay{
    width: auto;
    height: auto;
    opacity: 1;
    display: block;
    transition: 1.2s;
}

.portfolio .galeria .proyecto .imgProyect{
    width: 440px;
    height: 250px;
    display: block;
    border-radius: 10px;
}

.portfolio .galeria .proyecto:hover .imgProyect{
    overflow: hidden;
    width: 435px;
    border-radius: 10px 10px 0px 0px;
}

.portfolio .galeria .proyecto:hover .imgProyect{
    overflow: hidden;
    width: 435px;
    border-radius: 10px 10px 0px 0px;
}

.portfolio .galeria .proyecto:hover .overlay .overlayContent{
    letter-spacing: 3px;
    position: relative;
    background-color: rgba(71, 71, 71, 0.363);
    backdrop-filter: blur(3.0px);
    padding: 20px;
    border-radius: 0px 0px 10px 10px;
    transition: 1.4s;
}

.portfolio .galeria .proyecto .overlay .overlayContent h3{
    margin: 10px;
    transition: 1s;
}

.portfolio .galeria .proyecto .overlay .overlayContent i{
    margin: 15px 0px;
    font-size: 25px;
    transition: 2s;
}

.portfolio .galeria .proyecto .overlay .overlayContent .icon{
    border-radius: 50%;
    background-color: transparent;
    width: 23px !important;
    height: 23px !important;
}

.portfolio .galeria .proyecto .overlay .overlayContent i p{
    position: absolute;
    margin-top: 10px;
    font-size: 15px;
    display: none;
}

.portfolio .galeria .proyecto .overlay .overlayContent i:hover p{
    display: block;
}

.fa-html5{ color: #ff7300; }
.fa-css3-alt{ color: #4a7bcf; }
.fa-square-js{ color: #ffb92e; }
.fa-sass{ color: #c66c9c; }
.fa-php{ color: #7974c3; }

.portfolio .galeria .container {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    max-height: 800px;
    margin: 50px;
    padding: 50px;
    z-index: 98;
    display: none;
}

.portfolio .galeria .container .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 60vw;
    max-width: 1300px;
    max-height: 700px;
    margin: auto;
    border: 2px solid var(--tema);
    border-radius: 10px;
}



.portfolio .galeria .container .divCerrar{
    position: absolute;
    text-align: center;
    padding: 10px 5px;
    z-index: 99;
    margin: -28px calc(50% - 100px);
}


.portfolio .galeria #cerrarProyect{
    text-align: center;
    margin: 0px 0px;
    padding: 0px 0px;
    border-bottom: 1px solid var(--tema);
    border-top: 1px solid var(--tema);
    box-shadow: inset 0px 50px 40px -60px var(--tema);
    z-index: 100;
}

.portfolio .galeria button{
    background-color: transparent;
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: 0px;
    z-index: 100;
}

.portfolio .galeria button i{
    margin-right: 15px;
    padding-left: 10px;
}

.portfolio .galeria button .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background-color: var(--tema);
    transition:  0.5s;
    border-radius: 50px;
    z-index: -1;

}

/* #endregion*/

/* #region ---------------------------------------------- CONTACTO ------------------------------------------- */

.contacto{
    background-color: var(--fondo);
    color: var(--blanco);
}

.contacto .content-seccion{
    max-width: 1100px;
    margin: auto;
}

.contacto h2{
    font-size: 48px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin: 80px;
}

.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: #414141;
    color: var(--blanco);
    font-size: 18px;
    border-radius: 10px;
}

.contacto button{
    cursor: pointer;
    background-color: transparent;
    border: none;
    width: fit-content;
    display: block;
    margin: 40px 0px 100px 35%;
    padding: 10px 10px;
    font-size: 16px;
    color: var(--blanco);
    position: relative;
    z-index: 0;
}

.contacto button i{
    position: absolute;
    left: 10px;
}

.contacto button #enviar{
    position: relative;
    background: transparent;
    color: white;
    height: 20px;
    width: 70px;
    margin: 0;
    padding: 0;
    left: 30px;
    z-index: 90;
    cursor: pointer;
}

.contacto button .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background-color: var(--tema);
    z-index: -1;
    transition:  0.5s;
    border-radius: 50px;

}

.contacto button:hover .overlay{
    width:  120px;
}

.contacto .col img{
    margin: 0px 0px 100px 0px;
    width: 100%;
}

.contacto .col input, .contacto .col textarea{
    color: var(--tema);
    font-weight: 550;
}

.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 i{
    color: var(--tema);
    display: inline-block;
    margin-right: 2px;
}

/* #endregion */

/* #region ---------------------------------------------- FOOTER --------------------------------------------- */

footer{
    background-color: var(--fondo);
    color: var(--blanco);
    border-top: 2px solid var(--tema);
    box-shadow: 0 8px 100px 0 var(--tema);
    padding: 50px 50px 10px 50px;
    text-align: center;
    position: relative;
    width: 100%;
    padding-bottom: 50px;
}

footer .redes a{
    color: var(--blanco);
    display: inline-block;
    text-decoration: none;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 30px 5px;
    font-size: 20px;
    transition: .6s;
}

footer .arriba{
    left: calc(50% - 30px);
    display: block;
    width: 50px;
    height: 50px;
    background-color: var(--tema);
    color: var(--blanco);
    position: absolute;
    transition: translateX(-50%);
    top: -25px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 18px;
}

footer .arriba:hover{
    transition: 0.3s;
    margin-top: 5px;
    box-shadow: 0px 0px 20px var(--tema);
}

/* #endregion */

/* #region ---------------------------------------------- RESPONSIVE ----------------------------------------- */

@media screen and (max-width: 1100px){ 
    .curriculum .fila .izquierda{
        border-right: 0px solid #000000;
    }

    .curriculum .fila .derecha{
        margin-left: 20px;
        border-left: 0px solid #000000;
    }

    .curriculum .fila .col{
        width: 95%;
    }

    .curriculum .fila .izq{
        border-right: 0px solid var(--tema);
        margin-left: 40px;
    }

    .curriculum .fila .der{
        border-left: 0px solid var(--tema);
        margin-right: 40px;
    }

    .curriculum .fila{
        display: block;
    }

    .conectori , .conectord{
        display: none;
    }
}

@media screen and (max-width: 980px){

    header{
        padding-left: calc(50% - 85px);
    }

    nav{
        display: none;
    }

    .nav-resposive{
        display: block;
    }

    nav.responsive{
        display: block;
        position: absolute;
        right: 0;
        top: 75px;
        width: 180px;
        background-color: rgba(71, 71, 71, 0.3);
        box-shadow: 0 8px 32px 0 rgba(1, 2, 6, 0.37);
        z-index: 99;
    }

    nav.responsive ul{
        display: block !important;
    }

    nav.responsive ul li{
        border-bottom: 1px solid rgba(71, 71, 71, 0.3);
        backdrop-filter: blur(9.0px) !important;
        padding: 10px 0;
    }

    nav.responsive ul li:hover{
        font-size: 17px;
        font-weight: 600;
        text-shadow: 0px 0px 20px rgb(206, 206, 206);
        background-color:  rgba(255, 255, 255, 0.477);
    }
    .portfolio .galeria .container .divCerrar{
        margin: 4vw calc(50% - 100px);
    }   
}

@media screen and (max-width: 700px){
    .botoni, .botond{
        margin: 0px auto 0px auto;
    }
    footer .arriba{
        left: 44%;
    }

    .sobremi .fila{
        display: block;
    }

    .sobremi .fila .col{
        width: fit-content;
    }

    .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%;
    }

    .contacto .fila{
        display: block;
    }

    .contacto .fila .col{
        width: 100%;
    }
    .portfolio .galeria .container .divCerrar{
        margin: 17vw calc(50% - 100px);
    } 
}

@media screen and (max-width: 550px){

    .sobremi{
        padding: 15px;
    }

    .sobremi .fila{
        display: block;
    }

    .sobremi .fila .col{
        width: fit-content;
    }

    .sobremi .fila{
        display: block;
    }

    .sobremi .fila .col{
        width: fit-content;
    }

    .skills{
        padding: 15px;
    }

    .skills .fila{
        display: block;
    }

    .skills .fila .col{
        width: 100%;
    }
    .skills .fila .col .barra-skill{
        width: 100%;
    }

    .curriculum{
        padding: 10px 0px;
        margin: 0px;
    }

    .curriculum .fila .col{
        margin: 0px;
        padding: 0px;
    }

    .curriculum .fila .izq{
        margin-left: 15px;
        margin-right: 0px;
    }

    .curriculum .fila .der{
        margin-left: 15px;
        margin-right: 0px;
    }

    .contacto .fila{
        display: block;
    }

    .contacto .fila .col{
        width: 100%;
    }

    .portfolio .galeria .proyecto:hover{
        width: 380px;
    }

    .portfolio .galeria .proyecto .imgProyect{
        width: 380px;
        height: 210px;
    }

    .portfolio .galeria .proyecto:hover .imgProyect{
        width: 375px;
    }

    .portfolio .galeria .container .divCerrar{
        margin: 36vw calc(50% - 100px);
    } 
}

@media screen and (max-width: 470px){

    .portfolio{
        padding: 3%;
        width: 100%;
        height: auto;
    }

    .portfolio .galeria .container .divCerrar{
        margin: 45vw calc(50% - 100px);
    }

    .inicio .content-banner, .fotoPerfil, .console-container{
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 400px){

    header{
        padding: 5%;
    }

    header .content-header, header .content-header .logo {
        padding: 0px !important;
        margin: 0px !important;
    }

    .nav-resposive{
        position: relative;
        margin: 0px !important;
    }

    .portfolio .galeria .container .divCerrar{
        margin: 50vw calc(50% - 100px);
    }
    
    h2{
        margin: 30px 0px !important;
    }

    .portfolio .galeria .proyecto .imgProyect,
    .portfolio .galeria .proyecto:hover,
    .portfolio .galeria .proyecto:hover .imgProyect{
        width: 100%;
        height: auto;
    }
}

/* #endregion */
