@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');


* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 1px;
}

html {
    scroll-behavior: smooth;
}

.contenedor-header {
    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: 'Inter', sans-serif;
    font-size: 34px;
    color: #000000;
    text-decoration: none;
}

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

.contenedor-header header nav ul li a {
    text-align: none;
    color: #000000;
    margin: 0 25px;
    padding: 3px;
    transition: .2s;
    text-decoration: none;
}

.contenedor-header header nav ul li a:hover {
    color: #fff;
}

.nav-responsive {
    background-color: #000000;
    color: #2691cffb;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

.inicio {
    background: linear-gradient(to top, #ffffff72, #2691cf00),
        url(img/gif.gif);
    background-size: 100% 100%;
    height: 100vh;
    padding: 0%;
    color: #000000;
    display: flex;
    align-items: center;
}

.inicio .contenido-banner {
    padding: 25px;
    background-color: #00000000;
    max-width: 450px;
    margin: auto;
    text-align: center;

}

.inicio .contenido-banner img {
    margin-top: 45px;
    border: 12px solid #000000;
    display: block;
    width: 54%;
    margin: auto;
    border-radius: 100%;
}

.inicio .contenido-banner h1 {
    margin-top: 40px;
    font-size: 32px;
    font-family: 'Inter', sans-serif;
}

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

}

.inicio .contenido-banner h2:hover {
    border-radius: 70px;

}

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

/* SECTION ABOUT ME */

.sobremi {
    background: linear-gradient(#fff, #d3d3d3);
    color: #000000;
    padding: 50px 20px;
}

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

.sobremi h2 {
    font-size: 48px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 20px 0;

}

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

.sobremi .contenido-seccion p span {
    color: #000000;
    font-weight: bold;
}

.sobremi .fila {
    display: flex;
}

.sobremi .fila .col {
    width: 50%;
}

.sobremi .fila .col h3 {
    font-size: 28px;
    font-family: 'Inter', sans-serif;
    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: #000000;
    width: 130px;
}

.sobremi .fila .col ul li span {
    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: #2691cffb;
    border-radius: 10px;
    margin: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .6s;
}

.sobremi .fila .col .contenedor-intereses .interes:hover {
    background-color: #dddddd;
}

.sobremi .fila .col .contenedor-intereses .interes i {
    font-size: 32px;
    margin-bottom: 10px;
    color: #000000;
}

.sobremi button {
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #dfdddd00;
    width: fit-content;
    display: block;
    margin: 20px auto;
    padding: 10px 22px;
    font-size: 16px;
    color: #000000;
    position: relative;
    z-index: 10;
}

.sobremi button .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #2691cffb;
    border-radius: 12px;
    z-index: -1;
    transition: 1s;
    
    
}

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

/* SECTION SKILLS */
.skills {
    background-color: #d3d3d3;
    color: #000000;
    padding: 50px 20px;
}

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

.skills h2 {
    font-size: 48px;
    font-family: 'Inter', sans-serif;
    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: 'Inter', sans-serif;
    margin-bottom: 25px;
}

.skills .skill>span {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.skills .skill .barra-skill {
    height: 8px;
    width: 80%;
    background-color: #000000;
    position: relative;
    margin-bottom: 30px;
}

.skills .skill .progreso {
    background-color: #2691cffb;
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
}

.skills .skill .barra-skill span {
    position: absolute;
    height: 40px;
    width: 40px;
    background-color: #2691cffb;
    border-radius: 50px;
    line-height: 40px;
    text-align: center;
    top: -17px;
    right: -15px;
    font-size: 14px;
}

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

@keyframes javascript {
    0% {
        width: 0%;
    }

    100% {
        width: 85%;
    }
}

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

@keyframes html {
    0% {
        width: 0%;
    }

    100% {
        width: 89%;
    }
}

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

@keyframes mongoDB {
    0% {
        width: 0%;
    }

    100% {
        width: 80%;
    }
}

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

@keyframes express {
    0% {
        width: 0%;
    }

    100% {
        width: 87%;
    }
}

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

@keyframes react {
    0% {
        width: 0%;
    }

    100% {
        width: 80%;
    }
}

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

@keyframes node {
    0% {
        width: 0%;
    }

    100% {
        width: 75%;
    }
}

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

@keyframes communication {
    0% {
        width: 0%;
    }

    100% {
        width: 95%;
    }
}

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

@keyframes teamwork {
    0% {
        width: 0%;
    }

    100% {
        width: 90%;
    }
}

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

@keyframes creativity {
    0% {
        width: 0%;
    }

    100% {
        width: 90%;
    }
}

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

@keyframes dedication {
    0% {
        width: 0%;
    }

    100% {
        width: 99%;
    }
}

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

@keyframes empathy {
    0% {
        width: 0%;
    }

    100% {
        width: 92%;
    }
}

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

@keyframes management {
    0% {
        width: 0%;
    }

    100% {
        width: 85%;
    }
}


.tech {

    background-color: #d3d3d3;
}

/* SECTION CURRICULUM */

.curriculum {
    background-color: #d3d3d3;
    color: #000000;
    font: bold;
    padding: 50px 20px;
}

.curriculum h2 {
    font-size: 48px;
    font-family: 'Inter', sans-serif;
    font: bold;
    text-align: center;
    padding: 20px 0;

}

.curriculum .fila .item {
    flex: 1;
    padding: 25px;
    margin-bottom: 30px;
    font: bold;
    background-color: #80808050;
    position: relative;
}

.curriculum .fila .col {
    padding: 0 20px;
}


@media (max-width: 768px) {
    .curriculum .fila {
        flex-direction: column;
    }

    .curriculum .fila .item {
        margin: 0;
    }
}

.curriculum .fila .item .posicion {
    display: block;
    color: #206b96;
    margin-bottom: 1px;
    font-size: 20px;
}

.curriculum .fila .item .fecha {
    display: block;
    color: #206b96;
    margin-bottom: 12px;
    font-size: 15px;
}

.curriculum .fila .izq {
    border-right: 7px solid #206b96;
    margin-right: 20px;
}

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

/* SECTION PROJECTs */

.projects {
    background-color: #d3d3d3;
    color: #000000;
    padding: 50px 20px;
}

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

.projects h2 {
    font-size: 48px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 20px 0;
}

.projects .sub-title {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 20px 0;

}

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

.projects .galeria .proyecto {
    position: relative;
    max-width: 610px;
    height: fit-content;
    margin: 20px;
    cursor: pointer;
}

.projects .galeria .proyecto img {
    width: 100%;
    display: block;
}

.projects .galeria .proyecto .overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: linear-gradient(#808080, #2da0e2fc);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 1s;
    font-size: 18px;
    letter-spacing: 3px;
    opacity: 0;
}

.projects .galeria .proyecto .overlay h3 {
    margin-bottom: 20px;
    transition: 1s;
}

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

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

/* SECTION CONTACT */

.contact {

    background-color: #d3d3d3;
    color: #000000;
    padding: 50px 0;
}

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

.contact h2 {
    font-size: 48px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 20px 0;
}

.contact .fila {
    display: flex;
}

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

}

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

.contact button {
    cursor: pointer;
    border: 0px solid #b4b2b2fe;
    border-radius: 5px;
    width: fit-content;
    display: block;
    margin: 20px auto;
    padding: 10px 22px;
    font-size: 18px;
    color: #ffffff;
    position: relative;
    z-index: 10;
    
}

.btn {
  
    height: 100%;
    background-color: #808080;
    z-index: -1;
    transition: 1s;
}

.btn:hover {
  background-color: #2691cffb;
  color: #000000; 
}

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

.contact .col .info {
    position: absolute;
    top: 40%;
    padding: 20px;
    max-width: 350px;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

/* SECTION FOOTER */

.footer {
    width: 100%;

}

.footer-link {
    text-decoration: none;
}

.content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 3.5rem;
    background-color: #8080808a;
}

.footer_contacts h1 {
    margin-bottom: 0.75rem;
}

.social_media {
    display: flex;
    gap: 3.5rem;
    margin-top: 1.5rem;
}

#footer_social_media .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    transition: all 0.4s;
}

#footer_social_media .footer-link i {
    font-size: 1.25rem;
}

#footer_social_media .footer-link:hover {
    opacity: 0.5;
}

#instagram {
    background: linear-gradient(#7f37c9, #ff2992, #ff9807);
}

#github {
    background-color: #f1f1f1;
}

#linkedin {
    background-color: #1a91c8;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.footer-list .footer-link {
    color: var(--color-neutral-30);
    transition: all 0.4s;
}

.footer-list .footer-link:hover {
    color: #fff;
}

#footer_subscribe {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

#footer_subscribe p {
    color: var(--color-neutral-30);
}

#footer_copyright {
    display: flex;
    justify-content: flex-start;
    color: #000000;
    font-size: 0.9rem;
    padding: 0.5rem;

}

/* SECTION 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: #808080;
        width: 180px;
        border-radius: 20px;
    }

    nav.responsive ul {
        display: block !important;
    }

    nav.responsive ul li {
        border-bottom: 1px solid #000000;
        border-radius: 90px;
        padding: 10px 0;
    }
}

@media screen and (max-width:980px) {
    .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%;
    }

    .contact .fila {
        display: block;
    }

    .contact .fila .col {
        width: 100%;
    }
}



@media screen and (max-width: 700px) {
    #footer_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 700px) {
    #footer_content {
        grid-template-columns: repeat(1, 1fr);
        padding: 3rem 2rem;
    }
}