:root{
  --fuente:'Kanit', sans-serif;
  --colorTexto: #222222;
  --colorTitulo: #3D3937;
  --blanco: #ffffff;
}
html{
  box-sizing: border-box;
  font-size: 62.5%;/*1 rem = 10px*/
}
*,*:before, *:after{
  box-sizing: inherit;
}
body{
  font-family: var(--fuente);
  font-size: 1.6rem;
  line-height: 1.2;
}
.body{
  background-color: #FFF3DA;
}
/** Globales **/
.contenedor{
  width: min(90%, 120rem);
  margin: 0 auto;
}
.contenedor__navegacion{
  width: min(95%, 140rem);
  margin: 0 auto;
}
a{
  text-decoration: none;
}
h1,h2,h3,h4{
  font-family: var(--fuente);
  line-height: 1.2;
  color: var(--colorTitulo);
  text-transform: uppercase;
}
h1{
  font-size: 5rem;
}
h2{
  font-size: 4rem;
}
h3{
  font-size: 2.7rem;
}
h4{
  font-size: 2.5rem;
}
img{
  max-width: 100%;
}

/**hader**/
.header{
  padding: 4rem;
}
.logo{
  margin: 0 auto;
  display: block;
  height: 20rem;
}
.botones{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.boton{
  background-color: #3D3937;
  padding: 1rem 2rem;
  border-radius: 1rem;
  color: var(--blanco);
  font-size: 2rem;
}

@media (max-width: 480px) {
  .botones{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10rem;
  }
  .boton{
    margin-bottom: 5rem;
  }
}
.tituloProducto{
  margin-bottom: 0;
}
.tituloProducto_compartir{
  padding: 0 4rem 0 0;
}
.precioProducto{
  margin-top: 0;
  display: flex;
  flex-direction:row;
  justify-content:space-between;
}
.precioContenido{
  margin-top: 0;
  display: flex;
  flex-direction:row;
  justify-content:space-around;
}
.precioContenido p{
  font-size: 2rem;
}

.bold{
  font-weight: bold;
}
.description{
  font-size: 1.8rem;
}
.border{
  border-bottom: var(--colorTitulo) solid 0.1rem;
}
.footer{
  background-color: var(--colorTitulo);
  padding: 3rem 0 ;
  margin-top: 4rem;
}
.footer-contenido{
  color: var(--blanco);
  text-align: center;
}
.logo-hotel{
  margin: 0 auto;
  display: block;
  height: 15rem;
}
.pedido{
  font-size: 2.4rem;
  margin-bottom: 0;
}
.pedidoContenido{
  margin-top: 0.5rem;
}
.botonFooter{
  background-color: #222222;
}