@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

#toast-container .toast {
  border: none;
  background-color: #00a8ff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  opacity: 0.9;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
#toast-container .toast .toast-message {
  font-weight: normal;
}
#toast-container .toast:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 8px;
  opacity: 1;
}
#toast-container .toast-success {
  background-color: #20bf6b;
}
#toast-container .toast-error {
  background-color: #e84118;
}
#toast-container .toast-warning {
  background-color: #ffa801;
}
.text-discord {
  color: #7289da;
}
.main-wrapper {
  min-height: 90vh;
}
.bee_fly {
  -webkit-animation: bee_fly 5s ease-in-out 0s infinite;
  animation: bee_fly 5s ease-in-out 0s infinite;
}
@-webkit-keyframes bee_fly {
  0% {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg);
  }
  50% {
    -webkit-transform: translate(-20px, 0px) rotate(5deg);
    transform: translate(-20px, 0px) rotate(5deg);
  }
  to {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg);
  }
}
@keyframes bee_fly {
  0% {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg);
  }
  50% {
    -webkit-transform: translate(-20px, 0px) rotate(5deg);
    transform: translate(-20px, 0px) rotate(5deg);
  }
  to {
    -webkit-transform: translate(20px, 0px) rotate(-5deg);
    transform: translate(20px, 0px) rotate(-5deg);
  }
}
.nl2br {
  white-space: pre-line;
}
.loader-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 9999;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: white;
}
.product-feed-image {
  position: relative;
  overflow: hidden;
}
.product-feed-image.aspect-ratio-1-1 {
  padding-bottom: 100%;
}
.product-feed-image.aspect-ratio-16-9 {
  padding-bottom: 56.25%;
}
.product-feed-image.aspect-ratio-4-5 {
  padding-bottom: 125%;
}
.product-feed-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.code-block {
  font-family: Arial, sans-serif;
  background-color: #222;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #444;
  overflow-x: auto;
}
/*# sourceMappingURL=main.css.map */

/* Estilos para el login */

.bodylogin {
  margin: 0;
  font-family: "Nunito", sans-serif;
  --login-glow-1: rgba(253, 191, 0, 0.45);
  --login-glow-2: rgba(230, 169, 0, 0.2);
  --login-bg-1: #fff3d6;
  --login-bg-2: #ffe9b8;
  --login-bg-3: #f5d791;
  --login-overlay: rgba(82, 57, 6, 0.12);
  --login-card-surface: rgba(255, 255, 255, 0.94);
  --login-cta-1: #fdbf00;
  --login-cta-2: #e6a900;
}

.bodylogin.login-theme-natural {
  --login-glow-1: rgba(253, 191, 0, 0.45);
  --login-glow-2: rgba(230, 169, 0, 0.2);
  --login-bg-1: #fff3d6;
  --login-bg-2: #ffe9b8;
  --login-bg-3: #f5d791;
  --login-overlay: rgba(82, 57, 6, 0.12);
  --login-card-surface: rgba(255, 255, 255, 0.94);
  --login-cta-1: #fdbf00;
  --login-cta-2: #e6a900;
}

.bodylogin.login-theme-warm {
  --login-glow-1: rgba(253, 191, 0, 0.58);
  --login-glow-2: rgba(230, 169, 0, 0.28);
  --login-bg-1: #fff1cc;
  --login-bg-2: #ffe4a8;
  --login-bg-3: #efcc78;
  --login-overlay: rgba(88, 60, 8, 0.1);
  --login-card-surface: rgba(255, 255, 255, 0.96);
  --login-cta-1: #fdbf00;
  --login-cta-2: #edb000;
}

.bodylogin .navbar {
  width: 100%;
  min-height: 4.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.25rem;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(247, 251, 250, 0.95) 100%
  );
  border-bottom: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  position: sticky;
  top: 0;
  z-index: 20;
}

.bodylogin .navbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(253, 191, 0, 0.95) 0%,
    rgba(230, 169, 0, 0.9) 100%
  );
}

.bodylogin .navbar__logo--img {
  height: 48px;
  width: auto;
}

.bodylogin .navbar__ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.bodylogin .navbar__li a {
  color: #334155;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
}

.bodylogin .navbar__li a::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #e6a900;
  transition: 0.25s all ease-in-out;
}

.bodylogin .navbar__li a:hover {
  color: #0f172a;
}

.bodylogin .navbar__li a:hover::before {
  width: 100%;
}

.bodylogin .logincontainer {
  width: 100%;
  min-height: calc(100vh - 74px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url("../images/foodlogin.webp") center/cover no-repeat;
  position: relative;
  gap: 1.4rem;
}

.bodylogin .logincontainer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--login-overlay);
  z-index: 0;
}

.bodylogin .logincontainer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/wavelogin.svg") center top/cover no-repeat;
  opacity: 0.42;
  z-index: 0;
}

.bodylogin .cardlogin__title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: #0f172a;
  text-align: center;
  z-index: 2;
  letter-spacing: -0.02em;
}

.bodylogin .cardlogin__subtitle {
  color: #64748b;
  text-align: center;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
}

@keyframes fadeBottomTop {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bodylogin .cardlogin {
  min-width: 400px;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 480px;
  width: 100%;
  padding: 2.2rem 1.8rem;
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(253, 191, 0, 0.15);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--login-card-surface), var(--login-card-surface))
      padding-box,
    linear-gradient(120deg, rgba(253, 191, 0, 0.72), rgba(230, 169, 0, 0.52))
      border-box;
  backdrop-filter: blur(4px);
  border-radius: 18px;
  z-index: 2;
  position: relative;
  overflow: hidden;
  animation: fadeBottomTop 0.7s ease-in-out 0s 1 forwards;
}

.bodylogin .cardlogin__logo {
  width: 10rem;
  margin-bottom: 1rem;
}

.bodylogin .cardlogin__btnlogin {
  background: linear-gradient(120deg, var(--login-cta-1), var(--login-cta-2));
  padding: 11px;
  color: #3f2b00;
  border: none;
  border-radius: 10px;
  width: 100%;
  margin: 1.8rem 0 1rem;
  transition: 0.25s ease-in-out;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(253, 191, 0, 0.35);
}

.bodylogin .cardlogin__btnlogin:hover {
  background: linear-gradient(120deg, #ffd049, #f2b300);
  transform: translateY(-1px);
  cursor: pointer;
}

.bodylogin .containerfield {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-top: 1.35rem;
}

.bodylogin .containerfield__input {
  width: 100%;
  padding: 0.84rem 0.7rem;
  border: 1px solid #d8dee7;
  border-radius: 10px;
  background: #fff;
  font-size: 0.96rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.bodylogin .containerfield__input:focus {
  outline: none;
  border-color: #e6a900;
  box-shadow: 0 0 0 3px rgba(230, 169, 0, 0.22);
}

.bodylogin .containerfield__label {
  position: absolute;
  left: 12px;
  top: 13px;
  color: #94a3b8;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  background: transparent;
  padding: 0 4px;
}

.bodylogin .containerfield__input:focus + .containerfield__label,
.bodylogin
  .containerfield__input:not(:placeholder-shown)
  + .containerfield__label {
  left: 10px;
  top: 0;
  transform: translateY(-50%);
  font-size: 12px;
  color: #b88400;
  background: #fff;
  font-weight: 700;
}

.bodylogin .containerfield__input:placeholder-shown::placeholder,
.bodylogin .containerfield__input:focus::placeholder {
  color: transparent;
}

.bodylogin .containerfield__showpass {
  font-size: 14px;
  color: #64748b;
  background: none;
  cursor: pointer;
  border: none;
  margin-left: auto;
  margin-top: 7px;
  font-weight: 500;
  position: relative;
  transition: 0.3s all ease-in-out;
}

.bodylogin .containerfield__showpass:hover {
  color: #0f172a;
}

.bodylogin .cardlogin__reset {
  color: #b17f00;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}

.bodylogin .cardlogin__reset:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #8a6200;
}

.bodylogin .cardlogin__legal {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.45;
}

.bodylogin .cardlogin__legal a {
  color: #b88400;
  text-decoration: none;
  font-weight: 700;
}

.bodylogin .cardlogin__legal a:hover {
  color: #8e6800;
  text-decoration: underline;
}

.bodylogin .footerlogin {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 10px;
  z-index: 2;
  margin-top: 0;
}

.bodylogin .footerlogin__text {
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
  color: #000000;
}

.bodylogin .footerlogin__text--legal {
  font-size: 0.75rem;
}

.bodylogin .footerlogin__text a {
  color: #2b6b31;
  text-decoration: none;
  font-weight: 700;
}
.bodylogin .footerlogin__text a:hover {
  color: #fdbf00;
  text-decoration: underline;
}

.bodylogin .cardlogin__logo {
  transition: all 1s ease; /* animación suave */
}

.bodylogin .cardlogin.animate .cardlogin__logo {
  margin: 0 auto;
  display: block;
}

.bodylogin .cardlogin.animate .containerfield,
.bodylogin .cardlogin.animate .cardlogin__btnlogin,
.bodylogin .cardlogin.animate .cardlogin__reset,
.bodylogin .cardlogin.animate .cardlogin__subtitle,
.bodylogin .cardlogin.animate .cardlogin__legal {
  display: none;
}

.bodylogin .cardlogin.animate .cardlogin__title {
  margin-bottom: 0;
  margin-top: 15px;
}

@media (max-height: 500px) {
  .bodylogin .logincontainer {
    height: auto;
  }

  .bodylogin .cardlogin {
    margin-top: 1rem;
  }
}

@media (max-width: 680px) {
  .bodylogin .navbar {
    width: 100%;
    margin-top: 0;
    padding: 0.45rem 0.75rem;
  }

  .bodylogin .navbar__logo--img {
    height: 42px;
  }

  .bodylogin .navbar__li a {
    font-size: 0.82rem;
  }

  .bodylogin .logincontainer {
    height: auto;
    min-height: 100dvh;
    gap: 0.8rem;
  }

  .bodylogin .cardlogin {
    min-width: auto;
    width: 95%;
    min-height: auto;
    padding: 1.75rem 1.1rem;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
  }

  .bodylogin .cardlogin__logo {
    width: 8rem;
  }

  .bodylogin .cardlogin__title {
    font-size: 1.45rem;
  }
}
/* Terminan estilos para el login */
