@import url('fonts.css');

html{
    font-size: 15px;
    background-color: black;
    /*user-select: none !important;*/
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: #0d2436;*/
    /*background-color: #020617;*/
    background-color: #00051d;
    z-index: -1;
}

body{
    color: white;
    font-family: 'Inter-Regular', 'WorkSans-Regular', 'SpaceGrotesk-Regular', 'Satoshi-Regular', 'CabinetGrotesk-Regular', 'Satoshi-Regular', 'CabinetGrotesk-Regular', 'FugazOne-Regular', system-ui, sans serif;
    font-weight: normal;
}

body h1{
    font-size: 20px;
    margin: 0px;
    font-weight: normal;
    font-family: 'Inter-Bold';
}

body h2{
    font-size: 16px;
    margin: 0px;
    font-weight: normal;
    font-family: 'Inter-SemiBold';
}

body a{
    text-decoration: none;
    color:inherit;
}

body svg{
    width: auto;
    height: auto;
}


body ul{
    padding: 0px;
}

header{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    z-index: 999;
}
#navbar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background-color: #07112c8a;
    border-radius: 25px;
    height: 30px;
    width: 560px;
}
#navbar a{
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    transition: color 0.3s;
}
#navbar a:hover{
    color: rgb(90, 120, 253);
}

@media screen and (min-width: 720px){
    header{
        width: 100%;
    }
    main{
        width: 720px;
        margin: 0 auto;
        padding: 20px;
    }
}

.boton-go-back{
    display: none;
    background-color: #20317c9a;  
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: none;
    position: fixed;
    top: 40px;
    left: 20px;
    align-items: center;
    justify-content: center;
}
.boton-go-back .icon{
    height: 40px;
    width: 40px;
    fill: white;
}
@media screen and (max-width: 760px){    
    .boton-go-back{
        display: flex;
    }
}

body .img-zoom{
    transition: transform 0.3s ease;
    z-index: 1;
}
body .img-zoom:hover{
    transform: scale(1.05);
}
body .img-zoom2{
    transition: transform 0.3s ease;
    z-index: 1;
}
body .img-zoom2:hover{
    transform: scale(1.02);
}

body main section{
    margin-top: 50px;
}

#mi-foto{
    border-radius: 50%;
    width: 150px;
}

.mi-nombre{
    font-size: 30px;
}

.personal-info{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 5px;
}

.facu-logo{
    height: 30px;
    margin-left: 10px;
}
#da-vinci-logo{
    border-radius: 10px;
}

.info{
    height: 35px;
    width: fit-content;
    background-color: rgb(99, 99, 99);
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 20px;
    padding: 0 15px 0 10px;
}
.info:hover{
    background-color: rgb(87, 87, 87);
}
.info-icon{
    width: 20px;
    fill: white;
}
.info-text{
    font-size: 13px;
    margin-left: 10px;
}
#cvs-div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
#cv-div{
    background-color: #bebebe;
    height: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
    padding: 0 15px 0 10px;
}
#cv-div:hover{
    background-color: #969696;
}
#cv-div .cv-icon{
    height: 30px;
}
#cv-div #cv-text{
    color: black;
    font-size: 15px;
}



.titulo-section-div,
.titulo-article-div{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.titulo-section-icon,
.titulo-article-icon{
    width: 50px;
    margin-left: 5px;
    margin-right: 15px;
    fill: white;
}
.titulo-section-text{
    font-size: 50px;
}
.titulo-article-text{
    font-size: 40px;
}


.proyecto-titulo{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
}
@media screen and (max-width: 550px){
    .proyecto-titulo{
        flex-direction: column;
    }   
    .proyecto-titulo .estado{
        align-self: self-end;
        margin-right: 30px;
    }
}
.proyecto-titulo .proyecto-text{
    font-size: 30px;
}
.proyecto-titulo .estado,
.proyecto-section .estado{
    display: flex;
    align-items: center;
    width: fit-content;
    height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: rgb(230, 88, 88);
    border-radius: 15px;
    margin-left: 50px;
}
.proyecto-titulo .estado h2,
.proyecto-section .estado h2{
    font-size: 15px;
    color: black;
}
.proyecto-section .advertencia{
    background-color: rgb(204, 39, 39);
}
.proyecto-section .advertencia h2{
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
}

.proyecto-div-contenedor{
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
    margin-top: 10px;
}
@media screen and (max-width: 760px){
    .proyecto-div-contenedor{
        flex-direction: column;
        align-items: center;
    }
    main{
        margin-left: 15px;
    }
    .proyecto-info{
        max-width: 350px;
    }
    header{
        display: none;
    }
    .titulo-section-text{
        font-size: 40px;
    }
    .proyecto-text{
        font-size: 25px;
    }
    #mi-foto{
        width: 120px;
    }
}
.proyecto-img{
    width: 350px;
    border-radius: 10px;
}
.proyecto-info{
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    margin-left: 15px;
}
.proyecto-descripcion-text{
    font-size: 15px;
}
.proyecto-info ul{
    padding: 0px;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-top: 15px;
}

.proyecto-lenguajes{
    display: flex;
    flex-direction: row;
    align-items: center;
}
/* .proyecto-lenguajes li{
    background-color: rgb(15 23 42);
    height: 40px;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    padding: 5px 20px;
} */
.proyecto-lenguajes .icon{
    height: 30px;
    margin-right: 10px;
}

.proyecto-botones{
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
}
.proyecto-botones li button{
    padding: 0;
}
.proyecto-botones li button,
.proyecto-botones li a,
.boton-codigo-pagina{
    background-color: rgb(201, 201, 201);
    height: 40px;
    min-width: 90px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 10px;
    border:none;
    cursor: pointer;
}
/*      CAMBIAR LOS BOTONES DE CODIGO        */
.proyecto-botones li .boton-codigo-no-disponible{
    display: flex;
}
.proyecto-botones li .boton-codigo-disponible{
    display: none;
}
/*      CAMBIAR LOS BOTONES DE CODIGO        */
.proyecto-botones li button h2,
.proyecto-botones li a h2{
    font-family: 'FugazOne-Regular';
    font-size: 15px;
    color: #080f14;
    margin-left: 10px;
}
.proyecto-botones .icon{
    height:  25px;
    margin-left: 5px;
    margin-right: 10px;
}
.popup-container {
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
}
.popup-container .popup {
    background-color: #fff;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    padding: 30px 30px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.315);
    text-align: center;
}
@media screen and (max-width: 900px){
    .popup-container .popup {
        width: 50%;
    }
    .popup-container .popup p{
        font-size: 10px;
        margin-top: 40px;
    }
}
.popup-container .popup .boton-cerrar-popup{
    width: 50px;
    height: 50px;
    background-color: #131c4e;
    color: white;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-container .popup .boton-cerrar-popup .icon{
    width: 40px;
    height: 40px;
    margin: 0;;
}
.popup-container .popup p{
    font-size: 20px;
    color: black;
}
.ocultar-popup {
    display: none;
}
.mostrar-popup{
    display: block;
}



.conocimientos,
.lista-lenguajes {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.conocimientos li,
.lista-lenguajes li{
    background-color: rgb(15 23 42);
    height: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}
.conocimientos li h2,
.lista-lenguajes li h2 {
    font-size: 20px;
    color: white;
    margin-right: 20px;
}
.conocimientos li .icon,
.lista-lenguajes li .icon{
    height:  25px;
    margin-left: 10px;
    margin-right: 10px;
}
#idiomas{
    margin-top: 40px;
}
.idiomas{
    display: flex;
    flex-direction: column;
    list-style: none;
}
.idiomas li{
    display: flex;
    flex-direction: column;
    margin-left: 40px;
}
.idiomas li .titulo-idioma{
    display: flex;
    flex-direction: row;
}
.idiomas li .titulo-idioma h2{
    font-size: 25px;
}
.idiomas li .titulo-idioma .nivel-basico,
.idiomas li .titulo-idioma .nivel-intermedio-avanzado{
    background-color: rgb(197, 98, 52);
    width: fit-content;
    height: 20px;
    margin-left: 20px;
    color: black;
    font-size: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 6px 10px;
}
.idiomas li .titulo-idioma .nivel-basico{
    background-color: rgb(102, 192, 117);
}
.idiomas li p{
    margin-left: 15px;
    font-size: 15px;
}


.contacto-div-general{
    display: flex;
    flex-direction: column;
}
.contacto-div-general .seccion-mail{
    display: flex;
    flex-direction: row;
    margin-top: 15px;
}
.contacto-div-general .seccion-mail .mail{
    background-color: #0f172a;
    width: 400px;
    height: 40px;
    border-radius: 10px;
    border: rgb(192, 192, 192) solid;
    border-width: 1px;
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.contacto-div-general .seccion-mail .mail #mail{
    font-size: 20px;
    margin-right: 20px;
    margin-left: 15px;
    font-family: Lato;
}
.boton{
    background-color: #bebebe;
    /*#7dd3fc*/
    width: 70px;
    height: 40px;
    border-radius: 10px;
    margin-right: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}
.boton .icon{
    height: 25px;
    width: 25px;
}

.boton .tooltip{
    display: none;
    position: absolute;
    min-width: 110px;
    min-height: 30px;
    background-color: #333;
    padding: 5px;
    border-radius: 5px;
    margin-top: -30px;
    top: -20px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'FugazOne-Regular';
    font-size: 15px;
}
#boton-copiar-mail #copiar-tooltip.tooltip-copiado{
    display: block;
    background-color: rgb(3, 90, 3)
}
#boton-enviar-mail.boton #enviar-tooltip{
    top: -20px;
}

.contacto-div-general .seccion-social{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}
.contacto-div-general .seccion-social .redes-sociales{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
}
.contacto-div-general .seccion-social .redes-sociales li{
    position: relative;
}
.contacto-div-general .seccion-social .redes-sociales li:hover {
    opacity: 0.8;
}
/* .contacto-div-general .seccion-social .redes-sociales li .red-social{
    background-color: #131c4e;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 7px 15px;
    margin-bottom: 10px;
    font-size: 15px;
} */
.contacto-div-general .seccion-social .redes-sociales li .red-social .icon{
    height:  45px;
}
.contacto-div-general .seccion-social .redes-sociales li .red-social h2{
    margin-left: 10px;
    font-size: 17px;
    color: white;   
}
.contacto-div-general .seccion-social .redes-sociales li .red-social .icon-git-type{ 
    height: 20px;
    position: absolute;
    right: -10px;
    bottom: -5px;
}



/****************  PROYECTO-mas-info.html  ***************/

.proyecto-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}
@media screen and (max-width: 760px){    
    .proyecto-section{
        margin-top: 150px;
    }
}
.titulo-proyecto{
    font-size: 30px;
    margin-bottom: 20px;
}
.img-titulo-proyecto {
    height: 70px;
    margin-bottom: 20px;
}
.proyecto-section .estado{
    margin: 0 0 10px 0;
    height: 20px;
}
.proyecto-section .estado h2{
    font-size: 10px;
}
.imagen-contenedor{
    display: flex;
    flex-direction: column;
    max-width: 80%;
    margin-bottom: 10px;
}
.main-img-proyecto{
    width: 100%;
    border-radius: 15px;
}
.epigrafe{
    font-size: 10px;
    align-self: self-end;
}
.lista-lenguajes {
    justify-content: center !important;
}
.descripcion{
    font-size: 15px;
    margin-top: 20px;
    font-weight: normal !important;
    margin-bottom: 25px;
}
.explicacion-actual{
    font-size: 13px;
    margin-top: 25px;
    line-height: 1.5;
}
.color1{
    color: #90a0ff;
}
.color2{
    color: #90ffba;
}

/****************  mas-personal-info.html  ***************/
.mas-personal-info-section{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 50px;
}
@media screen and (max-width: 760px){    
    #primer-personal-info-section{
        margin-top: 160px;
    }
}
#foto-yo{
    width: 250px;
    border-radius: 50%;
}
#nombre{
    font-size: 50px;
    line-height: 1.0;
    margin-top: 10px;
    margin-bottom: 10px;
}
#carrera{
    font-size: 16px;
}

.texto{
    flex-wrap: wrap;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 25px;
}
.lenguajes{
    width: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-block-start: 0px;
    margin-block-end: 0px;
}
.lenguaje{
    width: fit-content;
    height: 20px;
    background-color: #bebebe;
    border-radius: 25px;
    display: flex;
    align-items: center;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 15px;
}
.lenguaje .icon{
    height: 20px;
    margin-right: 5px;
    margin-left: 5px;
}
.lenguaje .lenguaje-text{
    margin-right: 10px;
    font-size: 15px;
    color: black;
}
.fotos-mini-proyectos{
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    margin-top: 30px;
}
.mini-proyecto{
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 40px;
}
.img-mini-proyecto{
    width: 300px;
    box-shadow: 4px 4px 10px rgba(28, 84, 122, 0.39);  /* Sombra sutil */
    border-radius: 10px;
}
@media (max-width: 720px){
    .fotos-mini-proyectos{
        flex-direction: column;
        align-items: center;
        margin-top: 0px;
    }
    .mini-proyecto{
        margin-top: 20px;
        margin-right: 0px;
    }
}

.mas-personal-info-section {
    display: flex;
    flex-direction: column;
}
.mas-personal-info-section .titulo-seccion{
    font-size: 30px;
}
.lenguajes-web{
    font-weight: bold;
}

.titulo-div{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.titulo-div .icon{
    height: 30px;
    width: 30px;
    margin-right: 10px;
}
.mas-personal-info-section a{
    width: auto;
    display: flex;
    justify-content: center;
}
.pagina-img{
    width: 80%;
    align-self: center;
    border-radius: 10px;
}
.boton-codigo-pagina{
    width: fit-content;
    padding-left: 10px;
    margin-top: 10px;
    align-self: center;
}
.boton-codigo-pagina .icon{
    height: 30px;
    width: 30px;
    margin: 0;
}

.proyectos{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.proyectos img{
    height: 300px;
    width: auto;
    margin: 10px 20px;
    box-shadow: 4px 4px 10px rgba(28, 84, 122, 0.39);  /* Sombra sutil */
    border-radius: 10px;
}
@media (max-width: 720px){
    .proyectos{
        flex-direction: column;
        align-items: center;
        margin-top: 0px;
    }
    .proyectos img{
        margin-top: 20px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .pagina-img{
        width: 380px;
    }
}


.cuenta-ig-3d{
    display: flex;
    flex-direction: row;
    min-width: fit-content;
    margin-bottom: 40px;
    margin-top: 30px;
}
.cuenta-ig-3d .red-social{
    background-color: #131c4e;
    height: 40px;
    min-width: 100px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 15px;
}
.cuenta-ig-3d .red-social .icon{
    height: 30px;
    margin-left: 10px;
    margin-right: 10px;
}
.cuenta-ig-3d h2{
    font-size: 20px;
    color: white;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-right: 15px;
}





.boton-ir-al-site{
    background-color: #4151aa;
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 7px 10px;
    gap: 8px;
    transition: 300ms ease;
}
.boton-ir-al-site .icon{
    height: 20px;
}
.boton-ir-al-site:hover{
    background-color: #1c2973;
}