body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  font-optical-sizing: auto;
  color: #362029;
  background-color: #f6f2ed;
}
body .page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  top: 0;
}
body .page-container::selection {
  background-color: #93556c;
  color: white;
}
body .page-container .content {
  flex: 1;
  margin-top: 0;
}
body .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
body h2,
body h3,
body h4 {
  font-weight: bold;
}
body h2 {
  display: none;
}
body h3 {
  font-size: 1rem;
}
@media (min-width: 1024px) {
  body {
    padding: 0;
    margin-top: 1rem;
  }
  body .page-container {
    top: 0;
  }
  body .page-container .content {
    margin-top: 0;
  }
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: #e8d0c4;
  border: 1px solid #d6baab;
}

::-webkit-scrollbar-thumb {
  background: #93556c;
  transition: background 0.3s ease;
  border: 1px solid #8c4e63;
}

::-webkit-scrollbar-thumb:hover {
  background: #80475b;
}

.whatsapp-float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  border-radius: 8.75rem;
  z-index: 100;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.3);
  display: flex;
}
.whatsapp-float img {
  width: 3rem;
  height: auto;
}
@media (min-width: 1024px) {
  .whatsapp-float {
    bottom: 5rem;
    right: 0.3rem;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  .whatsapp-float img {
    width: 3.75rem;
    height: 3.75rem;
  }
  .whatsapp-float:hover {
    transform: scale(1.04);
  }
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  margin: 0 auto;
  max-width: 100vw;
}
.carousel-wrapper .carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
.carousel-wrapper .carousel .carousel-images {
  width: 100%;
  overflow: hidden;
}
.carousel-wrapper .carousel .carousel-images .image-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.carousel-wrapper .carousel .carousel-images .image-track img {
  width: 100%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  pointer-events: none;
}
.carousel-wrapper .image-track img {
  max-height: 20rem;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
    padding: 0 50px;
  }
  .carousel-wrapper .carousel {
    flex: 1;
    border-radius: 15px;
  }
  .carousel-wrapper .image-track img {
    max-height: 550px;
  }
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  background-color: #f3e3db;
  border: none;
  border-radius: 8px;
  padding: 0.9rem;
  color: #362029;
  cursor: pointer;
  z-index: 2;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prev.prev,
.next.prev {
  left: 10px;
}
.prev.next,
.next.next {
  right: 10px;
}

@media (min-width: 1024px) {
  .prev,
  .next {
    position: absolute;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    color: white;
    background-color: #e8d0c4;
    border-radius: 0.5rem;
    padding: 0;
    transition: background-color 0.3s, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .prev.prev,
  .next.prev {
    left: -25px;
  }
  .prev.next,
  .next.next {
    right: -25px;
  }
  .prev:hover,
  .next:hover {
    background-color: #d6baab;
    transform: translateY(-50%) scale(1.04);
  }
}
.botones-de-fotos {
  display: none;
}
@media (min-width: 1024px) {
  .botones-de-fotos {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .botones-de-fotos button {
    width: 14px;
    height: 14px;
    background-color: #e8d0c4;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .botones-de-fotos button.active, .botones-de-fotos button:hover {
    background-color: #d6baab;
    transform: scale(1.1);
  }
}

.beneficios {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  color: #362029;
  text-align: center;
  margin-top: auto;
}
.beneficios section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5em;
  flex-grow: 1;
  margin: 0;
  background-color: #fff9f4;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.beneficios section img {
  width: 3rem;
  padding: 0.3rem;
  filter: brightness(0) saturate(100%) invert(14%) sepia(28%) saturate(798%) hue-rotate(311deg) brightness(92%) contrast(88%);
}
.beneficios section h2 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
.beneficios section h3 {
  font-size: 0.9rem;
  margin: 0;
  font-weight: bold;
}
.beneficios .beneficio-1,
.beneficios .beneficio-2,
.beneficios .beneficio-3 {
  position: relative;
}
@media (min-width: 1024px) {
  .beneficios {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 6em;
    padding: 30px 10px;
    margin: 2rem;
  }
  .beneficios section {
    padding: 1em;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
  }
  .beneficios section img {
    width: 70px;
    margin-bottom: 8px;
    transition: filter 0.3s ease;
  }
  .beneficios section h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
  }
  .beneficios section h3 {
    font-size: 1rem;
    transition: transform 0.3s ease;
  }
  .beneficios section:hover {
    background-color: #93556c;
    color: white;
  }
  .beneficios section:hover img {
    filter: brightness(0) invert(1);
  }
  .beneficios section:hover h2,
  .beneficios section:hover h3 {
    transform: translateY(-5px);
  }
}

.presentaciones-tipo-de-producto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0;
  margin-bottom: 1em;
}
.presentaciones-tipo-de-producto .tipo-de-producto {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.presentaciones-tipo-de-producto .producto-contenedor {
  position: relative;
  width: 100%;
  height: auto;
}
.presentaciones-tipo-de-producto .producto-contenedor img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.presentaciones-tipo-de-producto .producto-contenedor p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.6);
  z-index: 2;
  text-align: center;
}
@media (min-width: 1024px) {
  .presentaciones-tipo-de-producto {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 10px 8em;
    margin-bottom: 2em;
  }
  .presentaciones-tipo-de-producto .tipo-de-producto {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .presentaciones-tipo-de-producto .tipo-de-producto:hover {
    transform: scale(1.02);
  }
  .presentaciones-tipo-de-producto .producto-contenedor {
    height: 100%;
  }
  .presentaciones-tipo-de-producto .producto-contenedor img {
    height: 600px;
    border-radius: 15px;
  }
  .presentaciones-tipo-de-producto .producto-contenedor p {
    font-size: 2rem;
  }
  .presentaciones-tipo-de-producto .producto-contenedor::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    border-radius: 15px;
    z-index: 1;
    pointer-events: none;
  }
  .presentaciones-tipo-de-producto .tipo-de-producto:hover .producto-contenedor::before {
    background-color: rgba(0, 0, 0, 0.2);
  }
}

.instagram-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0;
  max-width: 100%;
  padding: 2rem;
  flex-direction: column;
  text-align: center;
}
.instagram-section .instagram-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-direction: column;
}
.instagram-section .instagram-link .instagram-icon {
  width: auto;
  height: 3rem;
  filter: brightness(0) saturate(100%) invert(37%) sepia(11%) saturate(1942%) hue-rotate(286deg) brightness(97%) contrast(81%);
  margin: 0 0 0.5rem 0;
}
.instagram-section .instagram-link .instagram-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  color: #362029;
  align-items: center;
}
.instagram-section .instagram-link .instagram-text .follow-us {
  font-size: 0.8rem;
  pointer-events: none;
}
.instagram-section .instagram-link .instagram-text .account-name {
  font-weight: bold;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .instagram-section {
    margin: 4rem auto;
    max-width: 500px;
    padding: 1rem 1rem;
    flex-direction: row;
  }
  .instagram-section .instagram-link {
    flex-direction: row;
    transition: filter 0.3s ease;
  }
  .instagram-section .instagram-link .instagram-icon {
    width: 4rem;
    height: auto;
    margin-right: 0.75rem;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  .instagram-section .instagram-link .instagram-text {
    align-items: flex-start;
    transition: transform 0.3s ease;
  }
  .instagram-section .instagram-link .instagram-text .follow-us {
    font-size: 1rem;
  }
  .instagram-section .instagram-link .instagram-text .account-name {
    font-size: 1.5rem;
  }
  .instagram-section .instagram-link:hover .instagram-icon {
    transform: scale(1.05);
    filter: brightness(0) saturate(100%) invert(28%) sepia(13%) saturate(1589%) hue-rotate(287deg) brightness(97%) contrast(95%);
    cursor: pointer;
  }
  .instagram-section .instagram-link:hover .instagram-text {
    cursor: pointer;
    transform: rotate(2deg);
  }
}

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin: 2rem 0;
  width: 100%;
  padding: 0 1rem;
}
.newsletter label {
  color: #362029;
  font-size: 0.8rem;
}
.newsletter input[type=email] {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.8rem;
  width: 100%;
  transition: border-color 0.3s ease;
}
.newsletter input[type=email]:focus {
  border-color: #93556c;
  outline: none;
}
.newsletter button {
  font-size: 0.8rem;
  background-color: #93556c;
  color: white;
  font-weight: bold;
  padding: 0.3rem 0.3rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 200px;
}
.newsletter button:active {
  background-color: #80475b;
}
@media (min-width: 1024px) {
  .newsletter {
    flex-direction: row;
    gap: 0px;
    margin: 4rem 0;
    padding: 0;
  }
  .newsletter label {
    margin-right: 1rem;
    font-size: 1rem;
  }
  .newsletter input[type=email] {
    font-size: 1rem;
    width: 400px;
    border-radius: 10px 0 0 10px;
  }
  .newsletter button {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid #93556c;
    border-radius: 0 10px 10px 0;
    width: auto;
    max-width: none;
  }
  .newsletter button:hover {
    background-color: #80475b;
  }
  .newsletter button:active {
    background-color: #6d3a4b;
  }
}

.categoria {
  margin: 1rem auto;
  padding: 0 1rem;
  margin-bottom: 2rem;
}
.categoria h3 {
  font-size: 0.8rem;
  text-align: left;
  margin-bottom: 0.5rem;
}
.categoria .galeria-productos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.categoria .galeria-productos .producto {
  text-align: center;
  padding: 5px;
  background-color: #fff9f4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  border-radius: 10px;
}
.categoria .galeria-productos .producto:hover {
  transform: scale(1.03);
}
.categoria .galeria-productos .producto img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
}
.categoria .galeria-productos .producto .nombre-producto {
  font-weight: 600;
  margin: 0.3rem;
  font-size: 0.8rem;
}
.categoria .galeria-productos .producto .precio-producto {
  display: flex;
  justify-content: start;
  font-size: 0.8rem;
  color: #444;
  margin: 0;
  padding: 0.2rem;
  border-top: 1px solid #362029;
}
@media (min-width: 1024px) {
  .categoria {
    margin: 1rem auto;
    padding: 2rem 4rem 4rem 4rem;
    max-width: 60rem;
    margin-bottom: 4rem;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  .categoria h3 {
    font-size: 25px;
    margin-bottom: 1rem;
  }
  .categoria .galeria-productos {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
  .categoria .galeria-productos .producto {
    padding: 10px;
  }
  .categoria .galeria-productos .producto img {
    max-width: 300px;
  }
  .categoria .galeria-productos .producto .nombre-producto {
    margin: 10px 0 5px;
    font-size: 1.2rem;
  }
  .categoria .galeria-productos .producto .precio-producto {
    font-size: 1rem;
  }
}

.contacto-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1rem 1rem;
}
.contacto-container .contacto-info,
.contacto-container .contacto-formulario {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #fff9f4;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  max-width: 100%;
  padding: 1rem;
  min-height: 30em;
}
.contacto-container .contacto-info h4,
.contacto-container .contacto-formulario h4 {
  text-align: center;
  color: #362029;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.contacto-container .contacto-info p,
.contacto-container .contacto-formulario p {
  text-align: center;
  font-size: 0.8rem;
}
@media (min-width: 1024px) {
  .contacto-container {
    gap: 5rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
  }
  .contacto-container .contacto-info,
  .contacto-container .contacto-formulario {
    min-width: 300px;
    max-width: 500px;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-height: 40em;
  }
  .contacto-container .contacto-info h4,
  .contacto-container .contacto-formulario h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .contacto-container .contacto-info p,
  .contacto-container .contacto-formulario p {
    font-size: 1rem;
  }
}

.contacto-info .info-item {
  display: flex;
  align-items: center;
  justify-content: left;
  background-color: white;
  border: 1px solid #ddd;
  margin-top: 1.5em;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.contacto-info .info-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.contacto-info .info-item a p {
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: 600;
  color: #362029;
  transition: color 0.3s ease;
}
.contacto-info .info-item a p:hover {
  color: #93556c;
  cursor: pointer;
}
.contacto-info .info-item img {
  width: 35px;
  height: auto;
  margin-right: 0.8rem;
  filter: invert(40%) sepia(15%) saturate(1342%) hue-rotate(286deg) brightness(90%) contrast(86%);
  transition: filter 0.3s ease;
}
.contacto-info .info-item img:hover {
  filter: invert(30%) sepia(22%) saturate(1080%) hue-rotate(288deg) brightness(95%) contrast(82%);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .contacto-info .info-item {
    margin-top: 2.5em;
    border-radius: 1rem;
    padding: 1rem;
  }
  .contacto-info .info-item img {
    width: 50px;
    margin-right: 1rem;
  }
  .contacto-info .info-item p {
    font-size: 1rem;
  }
}

.contacto-formulario input[type=text],
.contacto-formulario input[type=email],
.contacto-formulario textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  resize: none;
  padding: 0.3rem;
  font-size: 0.8rem;
}
.contacto-formulario input[type=text]:focus,
.contacto-formulario input[type=email]:focus,
.contacto-formulario textarea:focus {
  border-color: #93556c;
  outline: none;
}
.contacto-formulario label {
  display: block;
  margin: 1rem 0 0.3rem;
  font-weight: 600;
  color: #362029;
  font-size: 0.8rem;
}
.contacto-formulario textarea {
  height: 150px;
}
.contacto-formulario input[type=submit] {
  margin-top: 1.5rem;
  background-color: #93556c;
  color: white;
  font-weight: bold;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  font-size: 0.8rem;
}
.contacto-formulario input[type=submit]:hover {
  background-color: #80475b;
}
@media (min-width: 1024px) {
  .contacto-formulario label {
    font-size: 1rem;
  }
  .contacto-formulario input[type=text],
  .contacto-formulario input[type=email],
  .contacto-formulario textarea {
    padding: 0.8rem;
    font-size: 1rem;
  }
  .contacto-formulario input[type=submit] {
    font-size: 1rem;
  }
}

.local {
  max-width: 100%;
  margin: 1rem 1rem;
  padding: 1rem;
  border-radius: 20px;
  background-color: #fff9f4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
  box-sizing: border-box;
}
.local h4 {
  font-size: 1.2em;
  margin-bottom: 1.5rem;
}
.local p {
  margin-bottom: 1rem;
  font-size: 1em;
}
.local .content h3 {
  text-align: center;
  margin-bottom: 1em;
  margin-top: 1.5rem;
  font-size: 1rem;
}
.local .mapa-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 1.5rem;
}
.local .mapa-container iframe {
  width: 100%;
  height: 150px;
  border: none;
  border-radius: 10px;
}
@media (min-width: 1024px) {
  .local {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem;
    margin-bottom: 3rem;
    font-size: 1rem;
  }
  .local h4 {
    font-size: 1.5rem;
  }
  .local .content h3 {
    margin-top: 1em;
  }
  .local .mapa-container iframe {
    height: 400px;
  }
}

.politica {
  border-radius: 1rem;
  background-color: #fff9f4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: justify;
  max-width: 100%;
  margin: 1rem 1rem 1rem 1rem;
  padding: 1rem;
  box-sizing: border-box;
}
.politica p,
.politica li {
  font-size: 0.8rem;
  margin: 0;
  padding: 0;
}
.politica h4 {
  font-size: 0.9rem;
  text-align: left;
}
.politica .list-group-item {
  list-style-type: decimal;
  padding: 0.5rem;
  background-color: #f3e3db;
  border: 2px solid #f5f5f5;
}
@media (min-width: 1024px) {
  .politica {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem;
    margin-bottom: 3rem;
  }
  .politica p,
  .politica li {
    font-size: 1rem;
  }
  .politica h4 {
    font-size: 1.2rem;
  }
}

.top-bar {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background-color: #93556c;
  color: white;
  border-bottom: 2px solid #e8d0c4;
  transition: all 0.3s ease;
  font-size: 1rem;
  height: auto;
  min-height: 1.5rem;
  padding: 3px;
  transform: translateY(0);
}
.top-bar p {
  margin: 0;
  font-weight: 500;
  font-size: 0.5rem;
  transition: text-shadow 0.3s ease;
  padding: 0.2rem 0;
}
.top-bar.hidden {
  transform: translateY(-100%);
}
@media (min-width: 1024px) {
  .top-bar {
    padding: 0;
    height: 2rem;
  }
  .top-bar p {
    font-size: 0.8rem;
  }
  .top-bar p:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
}

header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background-color: #f3e3db;
  border-bottom: 2px solid #e8d0c4;
  box-shadow: 0 0.3125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0;
  top: var(--header-top, 1.5rem);
  transition: top 0.3s ease;
}
header .header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  position: relative;
}
header .header-container .logo {
  margin-left: 0 auto;
  display: flex;
  justify-content: center;
}
header .header-container .logo img {
  height: auto;
  width: 5rem;
  transition: transform 0.3s ease;
}
header .header-container .hamburger-btn {
  display: block;
  position: absolute;
  left: 1rem;
  top: 50%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 0;
  transform: translateY(-50%);
}
header .header-container .hamburger-btn .hamburger-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #362029;
  position: relative;
  transition: all 0.3s ease;
}
header .header-container .hamburger-btn .hamburger-icon::before, header .header-container .hamburger-btn .hamburger-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #362029;
  transition: all 0.3s ease;
  left: 0;
}
header .header-container .hamburger-btn .hamburger-icon::before {
  top: -8px;
  transform-origin: left center;
}
header .header-container .hamburger-btn .hamburger-icon::after {
  top: 8px;
  transform-origin: left center;
}
header .header-container .desktop-nav {
  display: none;
  width: 100%;
}
header .header-container .desktop-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
header .header-container .desktop-nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-container .desktop-nav ul li a {
  font-weight: 600;
  text-decoration: none;
  color: #362029;
  display: inline-block;
  border-radius: 5px;
  transition: all 0.3s;
  font-size: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: rgba(232, 208, 196, 0.3);
  text-align: center;
}
header .header-container .desktop-nav ul li a.active {
  background-color: #e8d0c4;
}
header .header-container .mobile-menu-panel {
  position: fixed;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100vh;
  background-color: #f3e3db;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 20;
  transition: left 0.3s ease;
  padding: 5rem 1rem 1rem;
  overflow-y: auto;
}
header .header-container .mobile-menu-panel .close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #362029;
  cursor: pointer;
  z-index: 1002;
}
header .header-container .mobile-menu-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
header .header-container .mobile-menu-panel ul li a {
  font-weight: 600;
  text-decoration: none;
  color: #362029;
  display: block;
  padding: 0.8rem;
  border-radius: 5px;
  transition: all 0.3s;
  background-color: rgba(232, 208, 196, 0.3);
  font-size: 0.9rem;
}
header .header-container .mobile-menu-panel ul li a:hover, header .header-container .mobile-menu-panel ul li a.active {
  background-color: #e8d0c4;
}
header .header-container .mobile-menu-panel.active {
  left: 0;
}
header .header-container .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
header .header-container .menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media (min-width: 1024px) {
  header {
    top: var(--header-top, calc(1.7em + 2rem));
  }
  header.shifted-up {
    top: var(--header-top, 2rem);
  }
  header .header-container {
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
    padding: 0.5rem 2rem;
    display: grid;
  }
  header .header-container .hamburger-btn,
  header .header-container .mobile-menu-panel,
  header .header-container .menu-overlay {
    display: none;
  }
  header .header-container .logo {
    margin-left: 6rem;
    justify-self: start;
  }
  header .header-container .logo img {
    width: 8rem;
    margin-left: 6rem;
  }
  header .header-container .logo img:hover {
    transform: scale(0.98);
  }
  header .header-container .desktop-nav {
    display: block;
    width: auto;
  }
  header .header-container .desktop-nav ul {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 1em;
  }
  header .header-container .desktop-nav ul li a {
    font-size: 1rem;
    padding: 0.5em 0.8em;
    background-color: transparent;
  }
  header .header-container .desktop-nav ul li a:hover {
    background-color: #e8d0c4;
  }
}

.no-scroll {
  overflow: hidden;
}

.shallow-footer {
  font-optical-sizing: auto;
  text-align: left;
  color: white;
  border-top: 0.3125rem solid #e8d0c4;
  display: grid;
  box-sizing: border-box;
  background-color: #8c4e63;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1rem;
  padding: 0.5rem;
  box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.6);
}
.shallow-footer h3 {
  text-align: left;
  border-bottom: 1px solid white;
  color: #f5f5f5;
  margin: 0;
}
.shallow-footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shallow-footer .footer-column ul li a {
  text-decoration: none;
  color: white;
  display: inline-block;
}
.shallow-footer img {
  filter: drop-shadow(0 0 0.1rem rgba(0, 0, 0, 0.5));
}
.shallow-footer ::selection {
  background-color: white;
  color: #8c4e63;
}
.shallow-footer h3 {
  font-size: 0.7rem;
  padding: 0.2rem;
}
.shallow-footer .footer-column ul li {
  line-height: 1;
}
.shallow-footer .footer-column ul li a {
  font-size: 0.7rem;
}
.shallow-footer img {
  max-width: 1.5rem;
}
@media (min-width: 1024px) {
  .shallow-footer {
    background-color: #93556c;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 3em;
    padding: 0.25rem 20rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.8);
  }
  .shallow-footer h3 {
    font-size: 0.8rem;
    padding: 0.3rem;
    margin: 0.3125rem 0;
  }
  .shallow-footer .footer-column ul li a {
    font-size: 0.75rem;
    transition: text-shadow 0.3s ease;
  }
  .shallow-footer .footer-column ul li a:hover {
    text-shadow: 0 0 4px white;
  }
  .shallow-footer img {
    max-width: 2.8rem;
    transition: transform 0.3s ease;
    padding: 0.1rem;
  }
  .shallow-footer img:hover {
    transform: scale(0.95);
  }
  .shallow-footer ::selection {
    color: #93556c;
  }
}

.deep-footer {
  font-optical-sizing: auto;
  text-align: center;
  color: white;
  background-color: #753e52;
  border-top: 5px solid #80455a;
  padding: 4px;
}
.deep-footer p {
  margin-bottom: 0;
  font-size: 0.5rem;
}
.deep-footer p b,
.deep-footer p a {
  font-size: 0.5rem;
}
.deep-footer p a {
  text-decoration: none;
  color: white;
}
.deep-footer ::selection {
  background-color: white;
  color: #93556c;
}
@media (min-width: 1024px) {
  .deep-footer {
    padding: 0.25rem 20rem;
  }
  .deep-footer p {
    font-size: 0.75rem;
  }
  .deep-footer p b,
  .deep-footer p a {
    font-size: 0.75rem;
  }
  .deep-footer p a {
    transition: text-shadow 0.3s ease;
  }
  .deep-footer p a:hover {
    text-shadow: 0 0 4px white;
  }
}

.creator {
  font-family: "Orbitron", sans-serif;
  display: flex;
  justify-content: center;
  background-color: #5c3040;
  text-align: center;
  color: white;
  padding: 0.25rem 0rem 2rem 0rem;
}
.creator p {
  font-family: "Orbitron", sans-serif;
  display: flex;
  justify-content: center;
  background-color: #753e52;
  border-radius: 20px;
  transition: box-shadow 0.3s ease;
}
.creator p:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}
.creator ::selection {
  background-color: white;
  color: #362029;
}
.creator p {
  font-size: 0.5rem;
  margin: 0.3rem;
  padding: 0.5rem 2rem;
}
@media (min-width: 1024px) {
  .creator {
    padding: 0.25rem 0rem 1rem 0rem;
    font-family: "Orbitron", sans-serif;
  }
  .creator p {
    font-family: "Orbitron", sans-serif;
    font-size: 0.75rem;
    margin: 0.5rem;
    padding: 0.5rem 5rem;
  }
}

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

.custom-tooltip {
  --bs-tooltip-bg: #ffffff;
  --bs-tooltip-color: black;
}

/*# sourceMappingURL=style.css.map */
