body{
    margin:0;
    background:#F6F1DF;
    color:#1E2A24;
    font-family:Arial, sans-serif;
}

.menu{
    width:85%;
    margin:40px auto;
    display:flex;
    justify-content:flex-end;
    gap:35px;
}

.menu a{
    text-decoration:none;
    color:#23452F;
    font-weight:bold;
    font-size:17px;
}

.hero{
    width:85%;
    margin:100px auto 180px auto;
    display:grid;
    grid-template-columns:60% 40%;
    align-items:center;
    position:relative;
}

.hero-texto{
    max-width:700px;
}

.mini-texto{
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
}

.hero h1{
    font-family:Georgia, serif;
    font-size:110px;
    line-height:100px;
    margin:20px 0;
    color:#23452F;
}

.descripcion{
    font-size:26px;
    line-height:42px;
    max-width:650px;
}

.hero-imagen{
    position:relative;
    width:380px;
    height:500px;
    justify-self:center;
}

.bloque{
    position:absolute;
    width:340px;
    height:450px;
    background:#B8E28C;
    border-radius:30px;
    top:25px;
    left:-25px;
}

.hero-imagen img{
    width:340px;
    height:450px;
    object-fit:cover;
    border-radius:30px;
    position:absolute;
    top:0;
    left:0;
    box-shadow:0 18px 35px rgba(35,69,47,0.25);
}

section{
    width:85%;
    margin:150px auto;
}

section h2{
    font-family:Georgia, serif;
    font-size:72px;
    margin-top:10px;
    margin-bottom:40px;
    color:#23452F;
}

section p{
    font-size:22px;
    line-height:40px;
}

.sobre-mi{
    display:grid;
    grid-template-columns:35% 55%;
    gap:60px;
    align-items:start;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.timeline div{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

.timeline h3{
    font-size:30px;
    margin-top:0;
}

.proyecto{
    padding:100px;
    border-radius:35px;
}

.oscuro{
    background:#1E2A24;
    color:#F6F1DF;
}

.oscuro h2{
    color:#F6F1DF;
}

.claro{
    background:#EDE7D7;
}

.proyecto-texto{
    margin-bottom:70px;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}

.tags span{
    padding:12px 18px;
    border-radius:30px;
    background:#B8E28C;
    color:#1E2A24;
    font-size:15px;
    font-weight:bold;
}

.galeria-editorial{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:25px;
}

.imagen-proyecto{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:24px;
    display:block;
    background:white;
    transition:0.3s;
}

.imagen-proyecto:hover{
    transform:translateY(-8px);
}

.grande{
    grid-row:span 2;
    height:550px;
}

.ancho{
    grid-column:span 2;
    height:260px;
}

.verde{
    background:#B8E28C;
}

.rosa{
    background:#F1B7C8;
}

.mostaza{
    background:#F6D36E;
}

.proyectos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.proyecto-card{
    text-decoration:none;
    color:#1E2A24;

    display:flex;
    flex-direction:column;
    justify-content:center;

    min-height:140px;

    padding:35px;
    border-radius:25px;

    transition:0.3s;
    cursor:pointer;
}

.proyecto-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.10);
}

.proyecto-card h3{
    margin-top:0;
    font-size:38px;
    font-family:Georgia, serif;
    color:#1E2A24;
    text-decoration:none;
}

.proyecto-card p{
    font-size:18px;
    line-height:30px;
    color:#1E2A24;
    text-decoration:none;
}

.skill-tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.skill-tags span{
    background:#1E2A24;
    color:white;
    padding:15px 22px;
    border-radius:30px;
    font-size:18px;
}

footer{
    margin-top:180px;
    background:#1E2A24;
    color:#F6F1DF;
    padding:120px;
    text-align:center;
}

footer h2{
    font-family:Georgia, serif;
    font-size:70px;
    margin:20px 0;
    color:#F6F1DF;
}

footer p{
    font-size:20px;
}
.proyecto-card{
    text-decoration:none;
    color:#1E2A24;
    transition:0.3s;
    cursor:pointer;
}

.proyecto-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

.proyecto-card h3{
    margin-top:0;
}