/** Media Queries **/
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fbfbf0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #5e2f0d;
}

.esneda-header {
  display: block;
  width: 100%;
  background-color: #fbfbf0;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.esneda-header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 95%;
  padding: 1rem;
  flex-grow: 1;
}
@media (min-width: 900px) {
  .esneda-header__menu {
    justify-content: space-between;
    max-width: 95%;
    padding: 1rem;
    flex-grow: 1;
  }
}

.menu-btn {
  display: none;
  font-size: 1.3rem;
  font-weight: 500;
  color: #5e2f0d;
  cursor: pointer;
}
.menu-btn:hover {
  color: #8B4513;
}
@media (min-width: 900px) {
  .menu-btn {
    display: block;
  }
}

.menu-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-logo__imagen {
  max-height: 3rem;
  cursor: pointer;
}
@media (min-width: 900px) {
  .menu-logo__imagen {
    max-height: 5rem;
    cursor: pointer;
  }
}

.main-banner {
  margin-top: 10rem;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: auto;
  text-align: center;
}
.main-banner__imagen {
  height: auto;
  display: block;
}
.main-banner__titulo {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  color: #F5F5DC;
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 0.5rem;
}

.main-productos {
  margin: 0 5rem;
  padding: 1rem;
}
.main-productos p {
  color: #5e2f0d;
  font-size: 1.4rem;
  font-weight: 500;
}
.main-productos__logos {
  display: inline;
  justify-content: center;
  text-align: center;
}
.main-productos__logos .logo-empretienda {
  padding: 1rem 3rem;
}
.main-productos__logos .logo-empretienda__imagen {
  max-height: 15rem;
  cursor: pointer;
}
.main-productos__logos .logo-wps {
  padding: 1rem 3rem;
}
.main-productos__logos .logo-wps__imagen {
  max-height: 15rem;
  cursor: pointer;
}
@media (min-width: 900px) {
  .main-productos__logos {
    display: flex;
    justify-content: center;
  }
}

.cafe-separador {
  width: 100%;
  height: 5rem;
  background-image: url("/dist/img/flores.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
}

.laMarca {
  display: flex;
  margin: 2rem;
}
.laMarca .div-mitad {
  flex: 1;
  padding: 1rem;
}
.laMarca .div-ochenta {
  flex: 8;
  padding: 1rem;
}
.laMarca .div-setenta {
  flex: 7;
  padding: 1rem;
}
.laMarca .div-treinta {
  display: none;
}
@media (min-width: 900px) {
  .laMarca .div-treinta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 3;
    padding: 1rem;
  }
}
.laMarca .div-veinte {
  display: none;
}
@media (min-width: 480px) {
  .laMarca .div-veinte {
    display: flex;
    flex: 2;
    padding: 1rem;
  }
}
.laMarca .contenedor-texto-vineta {
  display: flex;
  justify-content: left;
  align-items: center;
}
.laMarca .contenedor-texto-vineta .img-vineta {
  max-height: 8rem;
}

.objetivos-ods {
  margin: 2rem;
}
.objetivos-ods .contenedor-objetivos {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Mas {
  margin: 2rem;
}
.Mas .Sandra {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Mas .Sandra__texto {
  flex: 5;
}
.Mas .Sandra__imagen {
  display: none;
}
@media (min-width: 900px) {
  .Mas .Sandra__texto {
    flex: 5;
  }
  .Mas .Sandra__imagen {
    display: flex;
    flex: 5;
    justify-content: center;
    text-align: center;
  }
  .Mas .Sandra img {
    max-width: 35%;
  }
}

.MisRedes {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.MisRedes .redes {
  padding: 1rem;
  display: block;
  max-width: 5rem;
}
.MisRedes .redes .logo {
  display: block;
}

.footer {
  display: block;
  height: 100%;
  padding: 0.5rem;
  background-color: #f8f8e8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.footer p {
  font-size: 0.8rem;
}