/* ============================= */
/* LAYOUT GENERAL */
/*Estructura general; Header,nav, footer, sections*/
/* ============================= */

header{
    background:var(--white);
    padding:15px 20px;
    position:sticky;
    top:0;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
    z-index:100;
}

nav{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav a{
    margin-left:15px;
    text-decoration:none;
    color:var(--purple);
    font-weight:600;
}

nav a:hover{
    color:var(--orange);
}

section{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

section h2{
    text-align:center;
    color:var(--purple);
    margin-bottom:35px;
}

/* Footer */
footer{
    background:#635E8F;
    color:white;
    padding:20px 0;
    text-align:center;
}

footer .footer-content{
    display:flex;
    justify-content:center;
    gap:40px;
}
