@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

main {
  display: flex;
  justify-content: center;
  background-color: #f4f4f6;
  width: 100%; /* Hace que el contenido dentro ocupe el 100% del ancho del body */
  box-sizing: border-box;
}

.columna-central {
  width: 100%;
  background-color: #f4f4f6;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.mensaje {
  width: 68%;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 20vh clamp(1px, 1vw, 0.9rem);
}
@media (min-width: 320px) and (max-width: 900px) {
  .mensaje {
    width: 100%;
  }
}

.texto-msj {
  width: 55%;
  display: flex;
  flex-direction: column;
}

.titulo {
  font-family: "Work Sans", sans-serif;
  margin: 4vh 0;
  width: 80%;
}
@media (min-width: 320px) and (max-width: 900px) {
  .titulo {
    font-size: clamp(1px, 6vw, 5.4rem);
  }
}

.texto {
  font-family: "Work Sans", sans-serif;
  margin-bottom: 4vh;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 900px) {
  .texto {
    font-size: clamp(1px, 4vw, 3.6rem);
  }
}

.icono {
  display: flex;
  width: 40%;
  justify-content: center;
}

img {
  width: 70%;
}

a:visited,
a:after,
a:link {
  text-decoration: none;
}

.btnInicio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 5px;
  box-sizing: border-box;
  color: #FBD300;
  cursor: pointer;
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1px, 1.1vw, 0.99rem);
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-width: 0;
  outline: none;
  width: 50%;
  padding: 0.5em 2.3em;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
@media (min-width: 320px) and (max-width: 900px) {
  .btnInicio {
    width: 70%;
    font-size: 3vw;
  }
}

.btnInicio:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.btnInicio:active {
  box-shadow: none;
  transform: translateY(0);
}

.columna-categorias {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 30%;
}
@media (min-width: 320px) and (max-width: 900px) {
  .columna-categorias {
    display: none;
  }
}

.titulo-categorias {
  font-family: "Work Sans", sans-serif;
  margin: 3vh 0 0 clamp(1px, 4vw, 3.6rem);
}

.lista-categorias {
  width: 70%;
  background-color: rgba(158, 161, 168, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3vh 0 3vh clamp(1px, 4vw, 3.6rem);
  padding-bottom: 1.5vh;
}

.lista-categorias li {
  border-bottom: 1.5px solid #000000;
  width: 90%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 1.5vh;
  padding-bottom: 1.5vh;
}

.lista-categorias li a {
  text-decoration: none;
  color: #ffffff;
  font-family: "Work Sans", sans-serif;
}

.cantidad-productos {
  color: gray;
  font-size: clamp(1px, 0.7vw, 0.63rem);
  margin-left: clamp(1px, 0.4vw, 0.36rem);
  padding-bottom: 2px;
}

.btn-wsp {
  position: fixed;
  width: 60px;
  height: 60px;
  line-height: 63px;
  bottom: 25px;
  right: 25px;
  color: #FFF;
  text-align: center;
  font-size: 2.4vw;
  z-index: 100;
  border-radius: 50px;
  transition: all 300ms ease;
  transition: all 0.4s ease;
  border-radius: 50px;
  background-color: #25d366;
  box-shadow: 2px 2px 4px #c9c9c9, -2px -2px 4px #ffffff, inset 0 0 0 transparent, inset 0 0 0 transparent;
}
@media (min-width: 320px) and (max-width: 900px) {
  .btn-wsp {
    font-size: 6.4vw;
  }
}

.btn-wsp:active {
  transition: all 0.4s ease;
  border-radius: 50px;
  background-color: #25d366;
  box-shadow: 0 0 0 transparent, 0 0 0 transparent, inset 2px 2px 4px rgb(30.152016129, 171.947983871, 83.1217741935), inset -2px -2px 4px rgb(71.1407258065, 222.7592741935, 127.7798387097);
}/*# sourceMappingURL=mensaje.css.map */