body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #222;
    line-height: 1.6;
}

.hero {
    position: relative;
    height: 70vh;
    background: url('img/foto.jpg') center/cover no-repeat;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
}

.hero h2 {
    font-size: 1.8rem;
    margin-top: 10px;
    font-weight: 300;
}

.section {
    padding: 60px 10%;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.proyecto {
    margin-bottom: 40px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #f3f3f3;
    margin-top: 40px;
}
.bio-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 900px;
}

.bio-foto {
    width: 180px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.bio-texto {
    flex: 1;
}
/* Ajustes para móvil */
@media (max-width: 768px) {
    .bio-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bio-foto {
        width: 150px;
        margin-bottom: 15px;
    }

    .bio-texto {
        text-align: left;
        width: 100%;
    }
}
