* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #a4a4a4;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
}

#contenedor {
  max-width: 1100px;
  margin: auto;
  margin-top: 20px;
}
header {
  min-height: 125px;
  width: 100%;
  background: #cee3f6;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
}

.direccion {
  font-size: 17px;
  color: #000000;
  padding: 15px;
  line-height: 17px;
  margin-right: 90px;
  vertical-align: middle;
  box-sizing: border-box;
}

nav {
  height: 60px;
  width: 100%;
  background: #d90000;
  list-style: none;
  border-radius: 10px;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

nav li {
  list-style: none;
  display: inline-block;
  padding: 15px 10px;
}

nav a {
  color: #effbfb;
  font-size: 20px;
  font-weight: bolder;
  text-decoration: none;
  margin: 0 8px;
  padding: 0 8px;
  height: 60px;
  display: flex;
  align-items: center;
  border-radius: 10px;
}

nav a:hover {
  background: #424242;
}
.contenido {
  display: flex;
  justify-content: space-between;
}


.invisible {
  /* height: 700px; */
  max-width: 800px;
  margin: 0 auto;
  padding: 0 25px;
  line-height: 30px;
  display: flex;
  justify-content: space-between;
}
.invisible a {
  text-align: center;
}

#recepcionista {
  max-width: 160px;
  margin: 0 auto;
}

.articulos {
  padding: 16px;
  min-height: 550px;
  max-width: 1000px;
  width: 100%;
  background: #d8d8d8;
  border-radius: 10px;
  margin-right: 8px;
}

.tienda {
  max-width: none;
  margin-right: 0;
}

.parafo p:first-of-type {
  text-indent: 60px;
}

.articulos p {
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 15px;
  font-size: 18px;
}
.parafo p {
  line-height: 25px;
}
.productos ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-around;
}
.productos li {
  margin: 0 20px;
}
.productos img {
  max-width: 1000px;
  height: auto;
}

.lavavajillas {
  float: right;
}
.hostelerias {
  float: right;
  margin: 20px;
}
.otros {
  float: right;
}
aside {
  min-height: 550px;
  min-width: 225px;
  background: #d8d8d8;
  border-radius: 10px;
  overflow: hidden;
  /*margin-right: 0.5em;*/
}
aside h2 {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
aside h4 {
  font-size: 25px;
  text-align: center;
  /*margin-top: 10px;*/
}
aside img {
  width: 200px;
  height: 450px;
  margin-top: 5px;
  margin-bottom: 5px;
}
video {
  max-width: 100%;
}
#png {
  display: flex;
  justify-content: center;
  text-align: center;
}
footer {
  width: 100%;
  background: #d90000;
  padding: 10px;
  margin-top: 25px;
  border-radius: 10px;
}
footer p {
  font-size: 15px;
  text-align: center;
}
footer li {
  list-style: none;
  display: inline-block;
  padding: 9px 10px;
}
footer a {
  color: #effbfb;
  font-size: 15px;
  font-weight: bolder;
  text-decoration: none;
  margin-bottom: 10px;
  padding: 10px;
}
footer a:hover {
  background: #424242;
}
footer ul {
  text-align: center;
}

/* Aqui X cosa */
.servicios {
  display: flex;
  justify-content: space-between;
}

.servicios p {
  font-size: 18px;
  line-height: 25px;
  height: 50px;
  margin: 0;
}
.servicios div:first-of-type {
  margin-right: 10px;
}

a {
  text-decoration: none;
  color: inherit;
}

.recep-centrat {
  text-align: center;
}

/* Electrodomesticos */
.electro {
  display: flex;
  margin: 16px 32px;
}

.electro-info {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Perdefecte, centrar horitzontal. Si existeix "flex-direction: column;", eslhores es centrar vertical. */
  /* align-items: center; /* Centrar vertical per defete, pero horitzontal en columna */
  margin: 0 8px;
}

.electro-info a img {
  vertical-align: middle;
}

.electro-info a {
  max-width: 160px;
  text-align: center;
  padding: 4px 8px;
}

.electro-info a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.electro-imagen {
  max-width: 125px;
  max-height: 150px;
  padding: 1px;
}

.lista-electros {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 530px) {
  .contenedor-contenido {
    flex-direction: column;
  }
  aside {
    margin-top: 8px;
  }
  #direccion {
    margin-right: 16px !important;
  }
}

@media (max-width: 600px) {
  #direccion p {
    font-size: 12px;
  }
  .contenido {
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .lista-electros {
    grid-template-columns: 1fr;
  }
}
nav a{
  font-size: .9em;
}