:root {
    --blanco: rgb(255, 255, 255);
    --negro: rgb(0, 0, 0);
    --primario: #e5e4e2;
    --secundario: #C0C0C0;
    --verde: #B2BEB5;
    --grisClaro: #DFE9F3;
}

/* Globales */
html {
    font-size: 62.5%;
    box-sizing: border-box; /* Box Model */
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-image: linear-gradient(to top, var(--grisClaro) 0%, var(--blanco)100%) ;
    font-size: 16px;
}

.contenedor {
    max-width: 120rem;
    margin: 0 auto;
}

.boton{
    background-color: var(--verde);
    color: var(--blanco);
    padding: 1rem 3rem;
    margin-top: 1rem;
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: .5rem;
    width: 90%;
    text-align: center;
}

@media(min-width: 768px){
    .boton{
        width: auto;
    }
}

/* Tipografias */
h1{
    font-size: 3.8rem;
    font-family: 'Arvo', serif;
    font-weight: normal;
}

h2{
    font-size: 2.8rem;
}

h3{
    font-size: 1.8rem;
}

h1, h2, h3 {
    text-align: center;
}

/* Titulos */
.titulo span {
    display: block;
    font-size: 2rem;
}

/* Navegacion Principal */
.nav-bg {
    background-color: var(--secundario);
}

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

@media (min-width: 768px) {
    .navegacion-principal{
        flex-direction: row;
        justify-content: space-between;
    }
}

.navegacion-principal a {
    text-decoration: none;
    color: var(--blanco);
    font-size: 2rem;
    font-weight: 700;
    padding: 1rem;
}

@media(min-width: 768px){
    .navegacion-principal a {
        padding: 2rem;
    }
}

.navegacion-principal a:hover{
    background-color: var(--primario);
    color: var(--negro);
}

/* Hero */
.hero{
    background-image: url(../img/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    position: relative;
}

.contenido-hero{
    position: absolute;
    background-color: rgba(0, 0, 0, .3);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contenido-hero h2, 
.contenido-hero p{
    color: var(--blanco);
}