@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: 'Work Sans';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
/* MENU */
.contenedor-header{
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}
.logo-img {
    width: 250px;
    height: auto;
    float: left;
}
.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-size: 36px;
    color: 	#FF7000;
    text-decoration: none;
}
.contenedor-header header ul{
    display: flex;
    list-style: none;
}
.contenedor-header header nav ul li a{
    text-align: none;
    color: #000;
    margin: 0 15px;
    padding: 3px;
    transition: .5s;
    text-decoration: none;
}
.contenedor-header header nav ul li a:hover{
    color: 	#FF7000;
}
.nav-responsive{
    background-color: #FF7000;
    color:#FFf;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}
/* SECCION RESPONSIVE */
@media screen and (max-width:980px){
    nav{
        display: none;
    }
    .nav-responsive{
        display: block;
    }
    nav.responsive{
        display: block;
        position: absolute;
        right: 0;
        top: 75%;
        background-color: #Fff;
        width: 180px;
    }
    nav.responsive ul{
        display: block !important;
    }
    nav.responsive ul li{
        border-bottom: 1px solid #FF7000;
        padding: 10px 0;
    }
}
@media screen and (max-width:700px){
    .contacto .fila {
        flex-direction: column;
    }

    .contacto .col {
        width: 100%;
        padding: 0;
    }

    .contacto .col .info {
        width: 100%;
        margin-top: 20px;
    }

    .fila {
        flex-direction: column;
    }

    .col {
        margin-bottom: 20px;
    }

    .index.html .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;
    }
    .portafolio .galeria{
        display: block;
        width: 100%;
    }
    .portafolio .galeria .proyecto{
        max-width: 100%;
    }
    .portafolio .galeria .proyecto img{
        width: 100%;
    }
    .contacto .fila{
        display: block;
    }
    .contacto .fila .col{
        width: 100%;
    }
}
.contacto{
    background-image: url(img/contact_bg.png);
    background-color: #f1f1f1;
    color: #000;
    padding: 110px 100px;
    background-size: 100%; /* Esto ajustará la imagen para cubrir todo el fondo */
    background-position: 100%;
}
.contacto .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.contacto h2{
    font-size: 48px;
    font-family: "Righteous";
    text-align: center;
    padding: 20px 0;
    color: #FF7000;
}
.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: #f1f1f1;
    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 22px;
    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: #FF7000;
    z-index: -1;
    transition: 1s;
}
.contacto button:hover .overlay{
    width: 100%;
}
.contacto .col img{
    width: 100%;
    height: 100%;
}
.contacto .col .info{
    position: absolute;
    top: 40%;
    background-color: #ffffff;
    padding: 20px;
    width: 380px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 110%;
    align-items: center;
}
.contacto .info ul{
    list-style: none;
}
.contacto .info ul li{
    margin-bottom: 20px;
    text-align: center;
}
.contacto .info ul li i{
    color: #FF7000;
    display: inline-block;
    margin-right: 20px;
}
.contenido-seccion {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info {
    margin-top: 20px;
}
.contenido-seccion {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info {
    margin-top: 20px;
}