* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
    list-style: none;
}

header {

    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    background-color: black;
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5rem;
    z-index: 1000;

}

.logo {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;

}

.logo:hover {
    transform: scale(1.1);
}

.nav_enlaces {
    display: flex;
    gap: 2rem;

}

li a {
    position: relative;
    color: white;
    font-weight: 300;

}

li a::before {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    height: 5px;
    top: 25px;
    border-radius: 1rem;
    transition: 0.3s ease-in-out;
    /* GRADIENTE */
    background: linear-gradient(to right, grey, white);

}

li a:hover::before {
    width: 100%;
}

.btn_conexiones {
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    color: black;
    cursor: pointer;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;

    /* GRADIENTE 2*/

}

.btn_conexiones:hover {

    /* GRADIENTE 3 */
    transform: scale(1.03);

}

#menu-icon {
    font-size: 2rem;
    display: none;

}

section {
    min-height: 100vh;
    padding: 8rem 12%;
    width: 100%;
    position: relative;
}

.acerca {
    display: flex;
    align-items: center;
    justify-content: center;
}

.acerca .contenedor_acerca {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;

}

.acerca img {
    width: 30vw;
    border-radius: 45%;

}

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

.info_box h3 {
    font-size: 1.8rem;
    font-weight: 500;
    opacity: 0.8;
}



.info_box h1 {
    font-size: 4rem;
    font-weight: 600;
}



.info_box span {
    background-clip: text;
    font-size: 2rem;
}

.btn_group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    border-radius: 3rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid black;
    cursor: pointer;
    font-weight: 500;
    text-wrap: nowrap;
    transition: 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



.btn:hover {
    background-color: black;
    color: white;
}

.temporal {
    min-height: auto;
    padding-bottom: 2rem;
    text-align: center;
}

.proceso-contenido h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.img-proceso {
    max-width: 400px;
    width: 100%;
    border-radius: 1rem;
}









.sociales {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.sociales i {
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.2s ease-in-out
}

.sociales i:hover {
    transform: scale(1.1);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 5px;
    background: black;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.experiencia_info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    justify-content: center;
}

.grid-card {
    border: 2px solid black;
    border-radius: 3rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: left;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.grid-card:hover {
    transform: scale(1.02);
    background-color: black;
    color: white;
}

.gird-card i {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.grid-card span {
    font-size: 1.5rem;
    font-weight: 500;
}



/*Scroll*/

::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: rgb(209, 208, 208);
}

::-webkit-scrollbar-thumb {
    background: rgb(173, 173, 173);
}





/*Proyectos*/

.proyecto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;

}

.proyecto-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    border: 2px solid black;
    border-radius: 3rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.proyecto-card:hover {
    background-color: black;
    color: white;
    transform: translateY(-10px)scale(1.02);
}

.proyecto-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top;
    border-radius: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.proyecto-card:hover .btn {
    border: 2px solid black;
    color: white;
}

.proyecto-card:hover .btn:hover {
    border: 2px solid black;
    background-color: white;
    color: black;
}

.proyecto-card h3 {
    font-size: 2rem;
    font-weight: 500;
}