*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f7f4ef;
    color:#222;
}

/* HEADER */

header{

    position:fixed;
    width:100%;
    top:0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 60px;

    background:#ffffff;
    box-shadow:0 3px 10px rgba(0,0,0,.08);

}

.logo{

    width:180px;

}

nav a{

    text-decoration:none;
    color:#222;
    margin-left:30px;
    font-weight:bold;
    transition:.3s;

}

nav a:hover{

    color:#8B5E3C;

}

/* HERO */

.hero{

    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:linear-gradient(135deg,#ffffff,#ece3d5);

    padding:20px;

}

.contenido{

    max-width:700px;

}

h1{

    font-size:55px;
    margin-bottom:20px;
    color:#1d1d1d;

}

.contenido p{

    font-size:20px;
    line-height:1.7;
    margin-bottom:40px;

}

/* BOTON */

.boton{

    background:#8B5E3C;
    color:white;

    padding:15px 40px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;

    font-size:18px;

}

.boton:hover{

    background:#6b4529;
    transform:scale(1.05);

}

/* NOSOTROS */

.nosotros{

    padding:100px 20px;

    text-align:center;

    background:white;

}

.nosotros h2{

    font-size:38px;
    margin-bottom:25px;

}

.nosotros p{

    max-width:800px;
    margin:auto;
    line-height:1.8;
    font-size:18px;

}

/* FOOTER */

footer{

    background:#1d1d1d;
    color:white;

    text-align:center;

    padding:25px;

}