@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap");

@font-face {
  font-family: "CheltenhamStdLight";
  src: url(./fonts/CheltenhamStdLight/CheltenhamStdLight.eot);
  src: url(./fonts/CheltenhamStdLight/CheltenhamStdLight.eot?#iefix)
      format("embedded-opentype"),
    url(./fonts/CheltenhamStdLight/CheltenhamStdLight.otf) format("otf"),
    url(./fonts/CheltenhamStdLight/CheltenhamStdLight.svg#CheltenhamStdLight)
      format("svg"),
    url(./fonts/CheltenhamStdLight/CheltenhamStdLight.woff2) format("woff2"),
    url(./fonts/CheltenhamStdLight/CheltenhamStdLight.woff) format("woff"),
    url(./fonts/CheltenhamStdLight/CheltenhamStdLight.ttf) format("truetype");
}

:root {
  --color-text: #6e6e6e;
  --color-title: #000000;
  --color-background: #ffffff;
  --color-primary: #333333;
  --color-secondary: #f5f5f5;
  --color-accent: #000000;
  /* --font-serif: "Domine", serif; */
  --font-serif: "CheltenhamStdLight", serif;
  --font-sans-serif: "Lato", serif;
}

body {
  margin: 0;
  background-image: url("./img/textura_papel.jpg");
  background-repeat: repeat;
  background-position: center;
  font-family: var(--font-sans-serif);
  font-weight: 300;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text);
}

.mobile {
  display: none;
}

.h100p {
  height: 100%;
}

.h100 {
  height: 100vw;
}

.flex {
  display: flex;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.menu-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("./img/textura_papel_bg.webp");
  background-repeat: repeat-x;
  background-position: center;
  z-index: 999;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu-bg.visible {
  opacity: 1;
  visibility: visible;
}

#main {
  font-family: var(--font-serif);
  position: fixed;
  top: 0;
  width: 1270px;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-sizing: border-box;
}

.container {
  position: relative;
  width: 1270px;
  margin: 0 auto;
  box-sizing: border-box;
}

.title-big {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: lighter;
  text-transform: uppercase;
  line-height: 3rem;
}

.title-big h2 {
  font-weight: 400;
  color: var(--color-title);
}

.logo {
  height: 30px;
  position: relative;
  z-index: 3;
  cursor: pointer;
}

.logo img {
  height: 100%;
  width: auto;
}

.cursor-pointer {
  cursor: pointer;
}

/* Siempre mostrar el burger icon */
.burger-icon {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  margin-left: 2rem; /* Ajustado para dar espacio después del botón de idioma */
}

.burger-icon span {
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
}

/* Rotar las líneas cuando está activo */
.burger-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-icon.active span:nth-child(2) {
  opacity: 0;
}

.burger-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Nuevo estilo del menú */
.menu {
  position: absolute;
  right: 0;
  transform: translateX(-330px); /* Posición inicial cuando está visible */
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  color: var(--color-title);
  font-size: 0.9rem;
}

.menu.active {
  /* transform: translateX(-330px); */
  transform: translateX(-229px);
  opacity: 1;
  visibility: visible;
}

/* Cuando se está ocultando */
.menu:not(.active) {
  transform: translateX(100%); /* Se mueve hacia la derecha */
  opacity: 0;
}

.menu ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0px;
}

.menu li {
  cursor: pointer;
  padding: 10px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.menu li a {
  text-decoration: none;
  color: var(--color-title);
}

.menu_lines {
  display: flex;
  gap: 10px;
  margin-top: 0px;
}

.menu_line {
  flex: 1;
  /* width: 20px; */
  padding: 4px 0 6px 0;
}

.menu_line div {
  height: 2px;
  background: #0000004a;
  transition: all 0.3s ease;
}
.menu_line:hover div {
  background: rgb(86, 86, 86);
}

.menu_line.active div {
  background: black;
  transition: all 0.3s ease;
}

.menu li:hover {
  /* background-color: #f5f5f5; */
}

.menu .menu_line {
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.action-buttons {
  display: flex;
}

.btn {
  font-family: var(--font-serif);
  padding: 6px 10px 3px;
  border: 1px solid var(--color-accent);
  background: transparent;
  cursor: pointer !important;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  letter-spacing: 1px;
  color: var(--color-title);
  /* transition: all 0.3s ease; */
}

.action-buttons .btn {
  border-width: 1px 0 1px 1px;
}

.action-buttons .btn:last-child {
  border-right-width: 1px;
}

.btn:hover {
  background: #000;
  color: white;
}

.lang-btn {
  border: 1px solid black;
  border-radius: 50%;
  padding: 8px;
  width: 50px;
  height: 50px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-sans-serif);
  letter-spacing: 1px;
  position: relative;
  font-size: 0.7rem;
}

.lang-btn div:first-child {
  position: relative;
  left: -10px;
}

.lang-btn div:first-child::after {
  display: block;
  content: " ";
  height: 1px;
  background-color: black;
  width: 40px;
  transform: rotate(144deg);
  margin-left: 5px;
}

.lang-btn div:last-child {
  position: relative;
  left: 10px;
}

.intro {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* z-index: -1; */
}

.blank-page {
  margin-top: 100px;
  padding-bottom: 100px;
}

.blank-page a {
  color: var(--color-text);
}

.blank-page h1 {
  font-size: 2rem;
  font-weight: 400;

  color: var(--color-title);
  font-family: var(--font-serif);
}

.blank-page h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Pseudo-elemento para la textura sobre el video */
.intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/textura_papel.jpg");
  background-repeat: repeat;

  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: relative;
  z-index: 0;
  mix-blend-mode: normal;
}

.intro video.loaded {
  opacity: 1;
  pointer-events: none;
}

.video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid #000000;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-progress {
  color: black;
  font-size: 14px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.video-loader.hidden {
  display: none;
}

/* Site Loader */
body.loading {
  overflow: hidden;
}

#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background-color: white;
}

.site-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.site-loader-spinner {
  width: 50px;
  height: 50px;
  border: 2px solid #333;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.site-loader-text {
  color: white;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

body.loaded #site-loader {
  opacity: 0;
  visibility: hidden;
}

/* Ocultar el loader del video hasta que se quite el site-loader */
.video-loader {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.loaded .video-loader {
  opacity: 1;
  pointer-events: none;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2a2a29;
  padding: 12px 2rem;
  z-index: 1000;
  color: #a1a1a1;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-left-content {
}

.footer-legal-links {
  margin-top: 10px;
  display: flex;
  gap: 1rem;
}
.footer-legal-links a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.footer-legal-links a:hover {
  color: #898989;
}

.footer-logo img {
  height: 22px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #6c6c6c;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link i {
  color: #6c6c6c;
  font-size: 12px;
  transition: all 0.3s ease;
}

/* Efecto hover */
.social-link:hover {
  border-color: white;
  background-color: white;
}

.social-link:hover i {
  color: #2a2a29;
}

/* Ajustes específicos para cada icono */
.social-link .fa-facebook-f {
  position: relative;
  left: 1px;
}

.social-link .fa-twitter {
  position: relative;
  left: 1px;
}

.social-link .fa-instagram {
  font-size: 16px;
}

.footer-center {
  display: flex;
  gap: 2rem;
}

.footer-center a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-center a:hover {
  opacity: 1;
}

.footer-right {
  display: flex;
  gap: 1rem;
}

.footer-btn {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid #a1a1a1;
  border-radius: 100px;
  transition: all 0.3s ease;
  color: inherit;
}

.footer-btn:hover {
  background-color: #fff;
  color: #1c1c1c;
}

.legal-menu {
  position: absolute;
  bottom: 115%;
  background-color: #2a2a29;
  padding: 1rem;
  border: 1px solid #6c6c6c;
  display: none;
  min-width: 200px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.legal-menu.active {
  display: block;
}

.legal-menu a {
  display: block;
  color: #6c6c6c;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.legal-menu a:hover {
  color: #898989;
}

.restaurants-section {
  position: fixed;
  bottom: 100px;
  left: 0;
  width: 100%;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.restaurants-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Gap pequeño entre logo y + */
  cursor: pointer;
  padding-left: 2rem;
  transition: all 0.3s ease;
}

.restaurants-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.restaurants-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.restaurants-text {
  font-family: var(--font-serif);
  display: flex;
  align-items: center;
  gap: 0;
  color: #000;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.plus-icon {
  position: relative;
  width: 30px;
  height: 30px;
}

.plus-icon span {
  position: absolute;
  background-color: #000;
  transition: all 0.3s ease;
}

.plus-icon span:first-child {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.plus-icon span:last-child {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

/* Estado activo del icono + */
.restaurants-trigger.active .plus-icon span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.restaurants-trigger.active .plus-icon span:last-child {
  transform: translateX(-50%) rotate(45deg);
}

/* Menú de restaurantes */
.restaurants-menu {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(250px, -50%);
  /* transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s; */
  transition: all 0.3s ease;
  padding: 1rem 2rem;
  opacity: 0;
  visibility: hidden;
}

.restaurants-menu.active {
  transform: translate(120px, -50%);
  opacity: 1;
  visibility: visible;
}

.restaurants-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
  height: 35px;
}

.restaurants-menu li a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-serif);
}

.restaurants-menu--title {
  font-weight: 500;
}

.restaurants-menu--subtitle {
  font-size: 0.6rem;
}

.restaurants-menu li a:hover {
  opacity: 0.7;
}

/* Cuando se está ocultando */
.restaurants-menu:not(.active) {
  transform: translate(-100%, -50%);
  opacity: 0;
}

/* Ocultar inicialmente la palabra RESTAURANTES */
/* .restaurants-text span {
  opacity: 0;
  visibility: hidden;
  width: 0;
  transition: all 0.3s ease;
  overflow: hidden;
} */

/* Cuando está activo, mostrar la palabra RESTAURANTES */
.restaurants-trigger.active .restaurants-text {
  gap: 1.5rem;
}

.restaurants-trigger.active .restaurants-text {
  display: none;
}

.restaurants-trigger.active .restaurants-text span {
  opacity: 1;
  visibility: visible;
  width: auto;
  margin-right: 1.5rem;
}

/* Ajustar el trigger para mejor espaciado */
.restaurants-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Gap pequeño entre logo y + */
  cursor: pointer;
  padding-left: 2rem;
  transition: all 0.3s ease;
}

.restaurants-trigger.active {
  gap: 1.5rem; /* Gap más grande cuando está activo */
}

/* Mostrar cuando el video ha terminado */
.restaurants-section.visible {
  opacity: 1;
  visibility: visible;
}

/* Capa para el efecto de acuarela */
.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/textura_papel.webp");
  background-repeat: repeat;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 0s linear 1s;
  z-index: 2; /* Por encima del video y la textura actual */
  /* mix-blend-mode: multiply; */
}

/* Clase para mostrar el efecto cuando termine el video */
.intro.video-ended::before {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 0s linear 0s;
}

.plato-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0.5);
}

.plato-imagen {
  max-width: 70vh;
  height: auto;
  transition: inherit;
}

.plato-container.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.radar {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  /* Efecto glass */
  /* background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2); */
}

.radar1 {
  top: 12%;
  left: 11%;
}

.radar2 {
  top: 29%;
  left: 94%;
}

.radar3 {
  top: 10%;
  right: -22%;
}

.radar4 {
  bottom: 16%;
  right: 6%;
}

.radar5 {
  bottom: 28%;
  left: -6%;
}

.radar6 {
  top: 35%;
  left: -6%;
}

.radar-dot {
  width: 15px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
  /* Efecto glass para el punto central */
  /* backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); */
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 40px rgba(126, 0, 0, 0.5);
}

.radar-circle {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 50%;
  animation: radar-pulse 5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0;
  /* Efecto glass para los círculos */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

@keyframes radar-pulse {
  0% {
    width: 15px;
    height: 15px;
    opacity: 0.8;
  }
  100% {
    width: 130px;
    height: 130px;
    opacity: 0;
  }
}

/* Tooltip styles */
.radar-tooltip {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  min-height: fit-content;
  height: auto;
  z-index: 1000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-tooltip.top {
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-bottom: 10px !important;
}

.radar-tooltip.bottom {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
}

.radar-tooltip.top::before,
.radar-tooltip.bottom::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.radar-tooltip.top::before {
  bottom: -8px;
}

.radar-tooltip.bottom::before {
  top: -8px;
}

.radar:hover .radar-tooltip {
  opacity: 1;
  visibility: visible;
}

.radar-tooltip-mobile {
  display: none;
  position: fixed;
  z-index: 1000;
  text-align: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.radar:hover .radar-tooltip-mobile {
  display: flex;
}

.radar-year {
  color: black;
  position: relative;
  font-size: 1.3rem;
  font-family: var(--font-serif);
}

.radar-year.right {
  top: 4px;
  left: 45px;
}

.radar-year.bottom {
  top: 35px;
}

.universo-q-d {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("./img/textura_papel.webp");
  background-repeat: repeat;
  background-position: center;
  z-index: 3;
  overflow: hidden;
}

.universo-q-d.mobile {
  height: auto;
  background-image: none;
  overflow: hidden;
}

.universo-q-d::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/texturas/textura3_2.webp");
  background-repeat: no-repeat;
  background-position: left bottom;
  z-index: 0;
}

.universo-q-d-cocina,
.universo-q-d-estrellas,
.universo-q-d-reconocimientos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: opacity;
  display: flex;
  align-items: center;
}

.universo-q-d-cocina {
  z-index: 1;
}

.universo-q-d-estrellas {
  z-index: 2;
}

.universo-q-d-reconocimientos {
  z-index: 3;
}

#sprite-container-cocina {
  position: absolute;
  width: 1270px;
  height: 594px;
  /* left: 50%; */
  /* transform: translatey(-50%); */
  /* top: -20vh; */
  top: 15%;
  overflow: hidden;
  z-index: 1;
}

.sprite-cocina {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Ocultas por defecto */
  transition: opacity 0.3s ease-in-out; /* Suaviza las transiciones */
}

#sprite-container-octavo-numero {
  position: absolute;
  bottom: 130px;
  right: 53%;
  /* width: 334px; */
  height: 250px;
  aspect-ratio: 113/182;
  z-index: 10;
}

.sprite-octavo-numero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#sprite-container-octavo {
  position: absolute;
  bottom: 0;
  right: 53%;
  /* width: 334px; */
  height: 250px;
  /* aspect-ratio: 0.557; */
  aspect-ratio: 0.557;
  /* transform: rotate(360deg); */
  top: -134px;
}

.sprite-octavo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#sprite-container-boutique {
  position: absolute;
  top: 0;
  right: 10%;
  /* width: 334px; */
  height: 350px;
  aspect-ratio: 181/179;
}

.sprite-boutique-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trofeo-michelin {
  position: absolute;
  top: 291px;
  left: 259px;
}

.trofeo-michelin img {
  height: 180px;
}

#sprite-container-estrella {
  position: absolute;
  width: 500px; /* Ajusta al tamaño de las imágenes */
  height: 665px; /* Ajusta al tamaño de las imágenes */
  margin: 0 auto;
  overflow: hidden; /* Oculta cualquier desbordamiento */
  z-index: -1;
}

.sprite-estrella {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Ocultas por defecto */
}

.universo-q-d-cocina__text {
  padding: 5% 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  z-index: 2;
}

.universo-q-d-estrellas__text {
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  padding-left: 40%;
}

.estrellas-michelin {
  display: flex;
  gap: 1rem;
  margin-bottom: 20px;
}

.estrellas-michelin img {
  width: 40px;
  height: 40px;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.galleta-container {
  position: absolute;
  right: 25%;
  z-index: 10;
  pointer-events: none;
  bottom: 20%;
}

.galleta {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  width: 250px;
  transform-origin: center center;
}

.galleta img {
  width: 100%;
  animation: rotateCookie 20s linear infinite;
  will-change: transform;
}

@keyframes rotateCookie {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.universo-q-d-reconocimientos__text {
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  margin-top: -50px;
}

.universo-q-d-reconocimientos__image {
  position: relative;
  margin-top: 50px;
  transform: scale(0.8);
  left: -70px;
}

.universo-q-d-reconocimientos__image__timeline {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
}

.universo-q-d-reconocimientos__image__elementos {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
}

.universo-q-d-reconocimientos__image__elementos img {
  width: 100%;
}

.radar.radar2-1 {
  top: 161px;
  left: 89px;
}

.radar.radar2-1 .radar-tooltip {
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
}

.radar.radar2-2 {
  left: 31.5%;
  bottom: -98px;
}

.radar.radar2-2 .radar-tooltip {
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.radar.radar2-3 {
  left: 49.85%;
  bottom: -57px;
}

.radar.radar2-3 .radar-tooltip {
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.radar.radar2-5 {
  left: 91.5%;
  bottom: -23px;
}

.radar.radar2-5 .radar-tooltip {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.radar.radar2-4 {
  left: 75%;
  bottom: -92px;
}

.radar.radar2-4 .radar-tooltip {
  bottom: -51px;
  left: 50%;
  transform: translateX(-50%);
}

.universo-q-d .content {
  line-height: 1.6rem;
}

.universo-q-d-reconocimientos__text .content {
  max-height: 65vh;
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.universo-q-d-reconocimientos__text .content::-webkit-scrollbar {
  display: none;
}

#sprite-container {
  position: relative;
  width: 500px; /* Ajusta al tamaño de las imágenes */
  height: 500px; /* Ajusta al tamaño de las imágenes */
  margin: 0 auto;
  overflow: hidden; /* Oculta cualquier desbordamiento */
}

.sprite-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Ocultas por defecto */
  transition: opacity 0.3s ease-in-out; /* Suaviza las transiciones */
}

#sprite-container-timeline {
  position: relative;
  width: 1270px; /* Ajusta al tamaño de las imágenes */
  height: 117px; /* Ajusta al tamaño de las imágenes */
  margin: 0 auto;
  overflow: hidden; /* Oculta cualquier desbordamiento */
  top: 100px;
}

.sprite-timeline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#sprite-container-timeline-elementos {
  position: absolute;
  top: -100px;
  left: 0;
  width: 1270px;
  height: 375px;
  filter: grayscale(1);
}

.sprite-timeline-elemento {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.restaurante-q-d {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-image: url("./img/textura_papel.webp");
  background-repeat: repeat;
  background-position: center;
}

.restaurante-q-d::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/texturas/textura5.webp");
  background-repeat: no-repeat;
  background-position: 800px bottom;
  background-size: auto 100%;
  z-index: 0;
}

.restaurante-q-d-intro,
.restaurante-q-d-quique,
.restaurante-q-d-menu,
.restaurante-q-d-team,
.restaurante-q-d-team-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: opacity;
  display: flex;
  align-items: center;
}

.restaurante-q-d-team-carousel {
  margin-top: -50px;
}

.restaurante-q-d-team__text {
  margin: 0 auto;
}

.restaurante-q-d-team__text-content {
  display: flex;
  gap: 20px;
  margin-top: 190px;
}

.restaurante-q-d-team__text-content__image {
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.restaurante-q-d-team__text-content__image__carousel-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.restaurante-q-d-team__text-content__image__carousel__controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 20px;
  z-index: 13;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.restaurante-q-d-team__text-content__image__carousel__controls__button {
  background: none;
  border: none;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.restaurante-q-d-team__text-content__image__carousel__controls__button:hover {
}

.restaurante-q-d-team__text-content__image__carousel__controls__button img {
  height: 100%;
}

.restaurante-q-d-team__text-content__image__carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.restaurante-q-d-team__text-content__image__carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.restaurante-q-d-team__text-content__text {
  flex: 1;
}

.restaurante-q-d-intro__text {
  padding: 2.5% 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 55%;
  padding-left: 45%;
}

.restaurante-q-d-menu {
  padding: 300px 0 300px 0;
  overflow: hidden;
}

.restaurante-q-d-menu {
  padding: 50px 0;
}

.restaurante-q-d-menu__text {
  padding: 150px 0 300px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
}

.restaurante-q-d-quique__image-box {
  display: flex;
  gap: 40px;
  align-items: center;
}

.restaurante-q-d-quique__image {
  flex: 3;
  position: relative;
}

.restaurante-q-d-quique__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurante-q-d-quique__text {
  flex: 2;
}

.restaurante-q-d-intro__image {
  position: absolute;
}

.restaurante-q-d-intro__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/textura_papel.jpg");
  background-repeat: repeat;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 3;
}

.restaurante-q-d-intro__image_lechuga {
  position: absolute;

  left: -200px;
  z-index: 1;
}

.restaurante-q-d-team__images {
  position: relative;
  pointer-events: none;
  display: flex;
  gap: 20px;

  justify-content: center;
}

@media (max-width: 768px) {
  .restaurante-q-d-team__images {
    max-height: 200px;
  }
}

.restaurante-q-d-team__image1 {
  position: relative;
}

.restaurante-q-d-team__image2 {
  flex: 3;
  position: relative;
}

.restaurante-q-d-team__image2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/textura_papel.jpg");
  background-repeat: repeat;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 3;
}

.restaurante-q-d-team__image1 img,
.restaurante-q-d-team__image2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.elementos-flotantes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.elemento-flotante {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

/* Posiciones específicas para cada elemento */
.brizna-1 {
  top: 0px;
  left: 399px;
}

.brizna-2 {
  top: -124px;
  left: 128px;
}

.brizna-3 {
  top: 178px;
  left: -50px;
  z-index: 2;
}

.brizna-4 {
  top: -87px;
  left: 6px;
  z-index: 2;
}

.conejo-1 {
  top: -148px;
  left: -144px;
}

.conejo-2 {
  top: -50px;
  left: 181px;
}

.conejo-3 {
  top: 218px;
  left: 350px;
}

#sprite-container-firma {
  position: absolute;
  width: 650px;
  aspect-ratio: 2.72 / 1;
  z-index: 10;
  bottom: 245px;
  left: calc(50vw - 600px);
}

.sprite-firma {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Ocultas por defecto */
  transition: opacity 0.3s ease-in-out; /* Suaviza las transiciones */
}

.restaurante-q-d-menu__image {
  position: absolute;
  right: -250px;
  top: -50px;
}

/* .restaurante-q-d-menu__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/textura_papel.jpg");
  background-repeat: repeat;
  background-position: center;

  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 3;
} */

.restaurante-q-d-menu__image img {
  position: relative;
  z-index: 1;
}

.plato-condimentos {
  position: absolute;
  right: 300px;
  top: 250px;
}

.plato-condimentos__col1 {
  position: absolute;
  top: 0px;
  right: 171px;
}

.plato-condimentos__col2 {
  position: absolute;
  top: 0px;
  right: -48px;
}

.plato-condimentos__col3 {
  position: absolute;
  top: 172px;
  right: 87px;
}

.plato-condimentos__pulpo-blanco {
  position: absolute;

  top: 089px;
  right: 184px;
}

.plato-condimentos__pulpo-negro {
  position: absolute;
  top: 38px;
  right: 70px;
}

.content p {
  font-weight: 400;
  color: var(--color-text);
}

.content span.small {
  font-size: 0.6rem;
}

.mt0 {
  margin-top: 0;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mas-restaurantes {
  position: relative;
  background-image: url("./img/texturas/textura3_50.webp");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto 100%;
  overflow: hidden;
  padding-bottom: 200px;
}

.mas-restaurantes-title {
  margin-top: 100px;
}

.mas-restaurantes-flor {
  position: absolute;
  bottom: 0px;
  z-index: -1;
}

.mas-restaurantes-flor img {
  width: 350px;
}

.mas-restaurantes-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

.mas-restaurantes-item .mas-restaurantes-item__image:nth-child(odd) {
  position: relative;
  left: -30px;
}

.mas-restaurantes-item .mas-restaurantes-item__image:nth-child(even) {
  position: relative;
  right: -30px;
}

.mas-restaurantes-item__image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mas-restaurantes-item__image img {
  width: 100%;
  object-fit: cover;
}

.mas-restaurantes-item__logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 40px;
}

.mas-restaurantes-item__logo img {
  max-width: 50%;
  max-height: 100px;
  max-width: 180px;
}

.mas-restaurantes-item__text {
  flex: 1;
}

.mas-restaurantes-item__footer {
  max-width: 80%;
}

.mas-restaurantes__title__estrellas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-bottom: 5px;
}

.mas-restaurantes-item__logo__estrella {
  width: 25px;
  height: 25px;
}

.mas-restaurantes__title {
  font-family: var(--font-serif);
  color: var(--color-title);
  font-size: 1.2rem;
  display: flex;
  gap: 5px;
  align-items: center;
}

.mas-restaurantes__title i {
  font-weight: lighter !important;
}

.la-boutique {
  position: relative;
  background-image: url("./img/texturas/textura5.webp");
  background-repeat: no-repeat;
  background-position: -400px bottom;
  background-size: auto 100%;
  overflow: hidden;
}

.la-boutique__title {
  /* max-width: 600px; */
}

.la-boutique__title__content {
  max-width: 600px;
}

.la-boutique__experiencia {
  margin-top: 100px;
}

.la-boutique__experiencia__items {
  position: relative;
  min-height: 400px;
  margin-bottom: 50px;
  margin-top: 50px;
  box-sizing: border-box;
}

.la-boutique__experiencia__item {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  gap: 40px;
  padding: 30px 60px;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  box-sizing: border-box;
}

.la-boutique__experiencia__item__image {
  flex: 1;
}

.la-boutique__experiencia__item__image img {
  width: 80%;
  height: 80%;
  object-fit: cover;
}

.la-boutique__experiencia__item__text__title h3 {
  padding: 0;
  margin: 0;
  color: var(--color-title);
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.8rem;
  font-family: var(--font-serif);
}

.la-boutique__experiencia__item__text {
  flex: 1;
}

.la-boutique__experiencia__steppers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.la-boutique__experiencia__stepper {
  width: 150px;
  height: 150px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
  transform: scale(0.95);
}

.la-boutique__experiencia__stepper.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.la-boutique__experiencia__stepper:hover {
  opacity: 0.8;
  transform: scale(0.98);
}

.la-boutique__experiencia__stepper.active:hover {
  opacity: 1;
  transform: scale(1);
}

.la-boutique__experiencia__stepper img {
  width: 80%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.la-boutique__cervezas {
  padding-bottom: 100px;
}

.la-boutique__cervezas__consent {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 45px;
}

.la-boutique__cervezas__consent__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.la-boutique__cervezas__consent__image img {
  max-width: 90%;
}

.la-boutique__cervezas__consent__older {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-title);
}

.la-boutique__cervezas__consent__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.la-boutique__cervezas__consent__text {
  width: 50%;
}
.la-boutique__cervezas__consent__text img {
  width: 100%;
}

.la-boutique__cervezas__content {
  display: none;
}

.la-boutique__cervezas__intro {
  display: flex;
  gap: 200px;
  padding-top: 20px;
}

.la-boutique__intro__fuego-frase img {
  width: 80%;
}

.la-boutique__intro__text {
  flex: 8;
  padding-top: 150px;
}

.la-boutique__intro__text p {
  max-width: 500px;
}

.la-boutique__intro__fuego {
  flex: 4;
}

.la-boutique__cervezas__steppers {
  position: relative;
  top: 200px;
  display: flex;
  gap: 15px;
  z-index: 2;
  width: 100px;
}

.la-boutique__cervezas__steppers__item img {
  height: 200px;
  cursor: pointer;
  opacity: 0.4;
  filter: blur(1px);
  transition: all 0.2s ease-in-out;
  transform: scale(0.95);
}

.la-boutique__cervezas__steppers__item.active img {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5)) blur(0px);
  transform: scale(1);
}

.la-boutique__cervezas__productos {
  z-index: 1;
  position: relative;
  min-height: 250px;
}

.la-boutique__cervezas__productos__item {
  position: relative;
  display: flex;
  gap: 40px;
  opacity: 1;
  transform: translateX(0);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  width: 100%;
}

.la-boutique__cervezas__productos__item__image {
  flex: 2;
  position: relative;
  z-index: 1;
}

.la-boutique__cervezas__productos__item__image img {
  position: absolute;
  bottom: -50px;
  height: 700px;
  right: 0;
  z-index: 1;
  will-change: opacity, display; /* Optimización para la animación */
}

.la-boutique__cervezas__productos__item__text {
  flex: 3;
}

.la-boutique__cervezas__productos__item__text__content {
  padding: 20px;
  position: relative;
  left: -45px;
  max-width: 80%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.la-boutique__description {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

.la-boutique__description ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .la-boutique__description {
    margin-top: 200px;
  }
}

.cerveza-link {
  color: var(--color-text);
  text-decoration: none;
}

.la-boutique__cervezas__productos__item__text__claim {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.la-boutique__a-fuego__video {
  position: relative;
}

.la-boutique__a-fuego__video__desktop {
  display: block;
}

.la-boutique__a-fuego__video__mobile {
  display: none;
}

.la-boutique__a-fuego__video img {
  width: 100%;
}

.a-fuego-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  14% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  28% {
    transform: translate(-50%, -50%) scale(1);
  }
  42% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.a-fuego-play-button img {
  width: 44%;
  padding-left: 10px;
}

.button {
  display: block;
  padding: 19px 20px 12px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  text-decoration: none;
  color: white !important;
  text-transform: uppercase;
  font-family: var(--font-serif);
  cursor: pointer;
}

.where-buy {
  color: var(--color-title);
  font-family: var(--font-serif);
}

.la-boutique__a-fuego {
  margin-top: 50px;
}

.la-boutique__kits {
  margin-top: 50px;
}

.la-boutique__a-fuego__items {
  display: flex;
  gap: 30px;
}

.la-boutique__a-fuego__items a {
  text-decoration: none !important;
  color: inherit;
}

.a-fuego-item {
  visibility: visible; /* Cambiamos de opacity a visibility */
  will-change: transform, opacity, filter; /* Optimización de rendimiento */
  cursor: pointer;
  transition: transform 0.2s ease;
}

.a-fuego-item:hover {
  transform: scale(1.01) !important;
}

.a-fuego__image {
  position: relative;
}

.a-fuego__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/textura_papel.jpg");
  background-repeat: repeat;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
}

.a-fuego__image img {
  max-width: 100%;
  position: relative;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.a-fuego__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.a-fuego__image:hover::after {
  opacity: 1;
}

.a-fuego-item__content {
  padding: 5px;
  line-height: 1.4rem;
  display: flex;
  justify-content: space-between;
}

.a-fuego__text {
  text-transform: uppercase;
  font-size: 0.9rem;
}

.la-boutique__libro__title {
  margin-top: 100px;
}

.la-boutique__libros {
  margin-top: 50px;
  display: flex;
  gap: 30px;
}

.la-boutique__libros__stepper__container {
  display: flex;
  align-items: end;
  width: 100px;
}

.la-boutique__libros__stepper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.la-boutique__libros__stepper__item {
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
  transform: scale(0.95);
}

.la-boutique__libros__stepper__item:hover {
  transform: scale(1);
  box-shadow: 0 0 12px;
}

.view-more-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #808080;
  font-style: italic;
}

.la-boutique__libros__stepper__item.active {
  opacity: 1;
  transform: scale(1);
}

.la-boutique__libros__stepper__item img {
  max-width: 80px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 0 7px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #8d8d8d;
}

.la-boutique__libros__stepper__item.active img {
  box-shadow: 0 0 12px;
}

.la-boutique__libros__content {
  flex: 1;
}

.la-boutique__libros__content .title-big {
  margin-bottom: 20px;
}

.la-boutique__libros__items {
  position: relative;
  min-height: 400px;
  margin-bottom: 60px;
}

.la-boutique__libros__item {
  position: absolute;
  height: 100%;
  display: none;
  gap: 40px;
  padding: 30px 60px;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateX(0);
}

.libro-img {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.libro-img a {
  text-decoration: none;
  color: inherit;
}

.libro-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 15px;
  transition: all 0.3s ease-in-out;
}

.libro-img img:hover {
  transform: scale(1.01);
}

.libro-content {
  flex: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.libro-content__description {
}

.libro-content__cta {
  margin-top: 20px;
}

.libro-content__description small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-title);
  font-family: var(--font-serif);
}

.libro-content__title h3 {
  padding: 0;
  margin: 0;
  color: var(--color-title);
  font-family: var(--font-serif);
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.8rem;
}

.magazine {
  padding: 200px 0;
  position: relative;
  overflow: hidden;
}

.magazine .title-big {
  position: relative;
  z-index: 5;
  margin-bottom: 20px;
}

.magazine-items {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.magazine-item-a {
  text-decoration: none !important;
  color: inherit !important;
  width: calc(33% - 50px);
}

.magazine-items__view-more {
  display: flex;
  justify-content: end;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.magazine-items__view-more a {
  text-decoration: none;
  color: var(--color-title);
  font-family: var(--font-serif);
}

.magazine-item__content {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.magazine-item__content:hover {
  transform: scale(1.015) !important;
}

.magazine-item__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-title);
  text-transform: uppercase;
}

.magazine-item__description {
}

.magazine-item__image {
  position: relative;
}

.magazine-item__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/textura_papel.jpg");
  background-repeat: repeat;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.magazine-item__image img {
  max-width: 100%;
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.magazine-item {
  position: relative;
}

.magazine-item::after {
  content: "";
  height: 100%;
  width: 2px;
  background: #6e6e6e;
  position: absolute;
  top: 0;
  right: -50px;
}

.magazine-item:last-child::after {
  content: none;
}

.contacto {
  position: relative;
  padding-bottom: 200px;

  background-image: url("./img/texturas/textura2.webp");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 100%;

  overflow: hidden;

  min-height: 600px;
}

.contacto__donde-estamos {
  display: flex;
  gap: 30px;
  align-items: end;
}

.contacto a {
  color: var(--color-title);
  font-weight: 600;
  text-decoration: none;
}

.contacto__donde-estamos__content {
  display: flex;
  gap: 30px;
  align-items: end;
}

.contacto-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-title);
  font-family: var(--font-serif);
}

.contacto-subtitle {
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-title);
  font-family: var(--font-serif);
}

.contacto__donde-estamos__line {
  position: relative;
}

.contacto__donde-estamos__icon img {
  width: 35px;
}

.contacto__donde-estamos__line::after {
  position: absolute;
  bottom: 0;
  height: 60px;
  background: var(--color-text);
  width: 1px;
  content: "";
}

.contacto__mas-info__content {
  display: flex;
  justify-content: end;
}

.contacto__mas-info {
  margin-top: 50px;
  display: flex;
  justify-content: end;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
}

.contacto__mas-info .button {
  min-width: 200px;
  text-align: center;
}

.contacto__mas-info__empty {
  flex: 2;
}
.contacto__mas-info__text {
  flex: 1;
}

.contacto-manos {
  position: absolute;
  top: -50px;
  left: 0px;
  width: 1000px;
}

.contacto-manos img {
  max-width: 100%;
}

.sprite-oy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.magazine__fondo1 img {
  max-width: 100%;
  mix-blend-mode: darken;
}

.magazine__fondo1 {
  position: absolute;
  top: -134px;
  left: -152px;
  width: 800px;
}

.magazine-fondo-left {
  position: absolute;
  top: -195px;
  left: -25vw;
  width: 100vw;
}

.magazine-fondo-left img {
  max-width: 100%;
  /* mix-blend-mode: darken; */
}

.magazine__fondo2 img {
  max-width: 100%;
  mix-blend-mode: darken;
}

.magazine__fondo2 {
  position: absolute;
  bottom: -169px;
  right: -260px;
  width: 951px;
}

#sprite-container-gamba {
  width: 80vh;
  /* height: auto; */
  aspect-ratio: 800 / 757;
}

.sprite-gamba {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  opacity: 0;
  cursor: pointer;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal__content {
  width: 90%;
  max-width: 1000px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background: #000;
  border-radius: 15px;
  border: 4px solid #fff;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.3s ease;
}

.video-modal.active .video-modal__content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.video-modal__content video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.video-modal__close img {
  width: 20px;
  height: 20px;
}

.close-icon {
  position: relative;
  width: 100%;
  height: 100%;
}

.close-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: white;
}

.close-icon span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Ajustar el hover para que afecte al icono */
.video-modal__close:hover .close-icon span {
  background-color: rgba(255, 255, 255, 0.85);
}

/* Estilos del menú móvil */
.menu-mobile-button {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  margin-left: 2rem;
}

.menu-mobile-button span {
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
}

.menu-mobile-button span:nth-child(1) {
  top: 0;
}
.menu-mobile-button span:nth-child(2) {
  top: 10px;
}
.menu-mobile-button span:nth-child(3) {
  top: 20px;
}

/* Animación del botón cuando está activo */
.menu-mobile-button.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-mobile-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-mobile-button.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.menu-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: scroll;
}

.menu-mobile-overlay.active {
  opacity: 1;
}

.menu-mobile-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.menu-mobile-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-mobile-content li {
  margin: 40px 0;
  text-align: center;
}

.menu-mobile-content li a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1.2rem;
  font-family: var(--font-serif);
}

.menu-mobile-content .lang-btn {
  font-size: 1.3rem;
  height: 70px;
  width: 70px;
  font-weight: lighter;
}

.menu-mobile-content .lang-btn div:first-child::after {
  width: 60px;
}

.menu-mobile-content-sub {
  margin-top: 60px;
}

.menu-mobile-content-sub li {
  margin: 8px 0;
}

.menu-mobile-content-sub li a {
  font-size: 1rem;
  font-family: var(--font-sans-serif);
  color: var(--color-text);
  font-weight: lighter;
}

.mobile-action-buttons {
  display: none;
  position: fixed;
  bottom: 0px;
  justify-content: center;
  width: 100%;
  z-index: 22;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 10px;
}

.page-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  opacity: 0;
  cursor: pointer;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-modal.active {
  opacity: 1;
  visibility: visible;
}

.page-modal__content {
  width: 90%;
  max-width: 1000px;
  height: 80vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background: #fff;
  border-radius: 15px;
  border: 4px solid #fff;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-modal.active .page-modal__content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.page-modal__header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-modal__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-title);
}

.page-modal__body {
  flex: 1;
  overflow: hidden;
}

.page-modal__body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.page-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.page-modal__close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.page-modal__close .close-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: black;
}

.page-modal__close .close-icon span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-modal__close .close-icon span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Ajustar el hover para que afecte al icono */
.page-modal__close:hover .close-icon span {
  background-color: rgba(0, 0, 0, 0.7);
}

.page-modal {
  cursor: pointer; /* Indica que se puede hacer click */
}

.page-modal__content {
  cursor: default; /* Evita que el cursor pointer se herede al contenido */
}

/* Estilos base para ambos modales */
.modal-reserva,
.modal-regala,
.modal-terminos,
.modal-puntos-venta,
.modal-privacidad,
.modal-contacto {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  align-items: center;
  justify-content: center;
}

.modal-reserva.active,
.modal-regala.active,
.modal-puntos-venta.active,
.modal-terminos.active,
.modal-privacidad.active,
.modal-contacto.active {
  opacity: 1;
  visibility: visible;
}

.modal-reserva-image {
  height: 50px;
  background-color: #fff;
}

.modal-content__regala {
  padding: 40px 40px 0 40px;
  display: flex;
  align-items: start;
  gap: 30px;
}

/* Contenedor del contenido del modal */
.modal-content {
  width: 90%;
  max-width: 1400px;
  max-height: 95%;
  border-radius: 15px;
  overflow: scroll;
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.3s ease;
  cursor: default; /* Evita que se herede el cursor pointer */
}

.modal-contacto-content {
  max-width: 600px;
}

.modal-content-venta {
  width: 90%;
  max-width: 800px;
  max-height: 95%;
  border-radius: 15px;
  overflow: scroll;
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.3s ease;
  cursor: default; /* Evita que se herede el cursor pointer */
}

.modal-reserva.active .modal-content,
.modal-regala.active .modal-content,
.modal-terminos.active .modal-content,
.modal-privacidad.active .modal-content,
.modal-contacto.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-puntos-venta.active .modal-content-venta {
  transform: scale(1);
  opacity: 1;
}

.modal-reserva.active .modal-content-venta,
.modal-regala-content__wrapper {
  background-image: url("./img/textura_papel.jpg");
}

.modal-puntos-venta-content {
  background: white;
  padding: 14px;
}

.modal-terminos-content__text h2,
.modal-privacidad-content__text h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-title);
}

.modal-terminos .modal-content,
.modal-privacidad .modal-content,
.modal-contacto .modal-content {
  padding: 40px;
  background-image: url("./img/textura_papel.jpg");
}

.regala-content {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  align-items: start;
}

.regala-image-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.regala-image-box {
  flex: 1;
}

.modal-puntos-venta-content__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-title);
  padding: 20px;
}

.regala-content__description {
  margin-top: 30px;
  text-align: center;
}

.modal-gradient {
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  position: relative;
  z-index: 1;
}

/* Ajustar el contenedor del iframe para que se solape con el gradiente */
.modal-iframe {
  position: relative;
  width: 100%;
  height: 600px;
  background: #fff;
  overflow-y: scroll;
  z-index: 0;
}

.modal-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Botón de cierre */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #fff;
  transform: scale(1.1);
}

.modal-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.image-regala {
  width: 100%;
  margin: 0 auto;
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.image-regala__image {
  width: 100%;
  position: relative;
}

.image-regala__title {
  position: relative;
  max-width: 350px;
}

.blog-post img {
  max-width: 100%;
}

.blog-post__header {
  display: flex;
  align-items: center;
  gap: 40px;
}

.blog-post__title {
  flex: 1;
  font-family: var(--font-serif);
  color: var(--color-title);
}

.blog-post__title h1 {
  text-transform: uppercase;
}

.blog-post__image {
  flex: 1;
  position: relative;
}

.blog-post__date {
  color: black;
}

.blog-post__image img {
  width: 100%;
  -webkit-mask-image: -webkit-gradient(
    linear,
    right top,
    left bottom,
    from(rgba(0, 0, 0, 1)),
    to(rgba(0, 0, 0, 0))
  );
  mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
  );
}

.blog-post__content {
  flex: 2;
  line-height: 1.4;
}

.blog-post__back-button {
  margin-top: 30px;
}

.blog-post__back-button a {
  color: var(--color-title);
}

.legal-links {
  font-size: 0.8rem;
  line-height: 1.2rem;
  opacity: 0.6;
}

.reserva-content__title {
  text-align: center;
  font-family: var(--font-serif);
}

.reserva-content__area {
  margin-top: 30px;
  display: flex;
  align-items: start;
  gap: 80px;
}

.reserva-content__description {
  flex: 1;
}

.reserva-content__area-iframe {
  flex: 1;
}

.regala-content__iframe {
  margin-top: 30px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .modal-content {
    width: 95%;
  }

  .modal-iframe {
    height: 500px;
  }

  .magazine-item-a {
    width: 100%;
  }

  .blog-post__header {
    flex-direction: column;
  }

  .blog-post__image {
    width: 100%;
  }
}

.modal-regala {
  cursor: pointer; /* Indica que se puede hacer clic para cerrar */
}

.modal-reserva {
  cursor: pointer; /* Indica que se puede hacer clic para cerrar */
}

.modal-content {
  cursor: default; /* Evita que se herede el cursor pointer al contenido */
}
/* 
.sprite-alma {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

#sprite-container-alma {
  position: absolute;
  width: 150px;
  /* height: 220px; */
/* top: 0;
  left: 50px;
  aspect-ratio: 10 / 11;
}  */

.palabra.alma {
  position: relative;
}

#sprite-container-fronteras {
  position: absolute;
  width: 250px;
  /* height: 358px; */
  aspect-ratio: 150 / 179;
  top: -11%;
  right: -9%;
}

.sprite-fronteras {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#sprite-container-actitud {
  position: absolute;
  width: 200px;
  /* height: 291px; */
  aspect-ratio: 100 / 97;
  top: 24%;
  right: -18%;
}

.sprite-actitud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#sprite-container-tesoros {
  cursor: pointer;
  position: absolute;
  width: 230px;
  bottom: 10.3%;
  right: -7.3%;
  aspect-ratio: 400 / 257;
  z-index: 4;
}

.sprite-tesoros {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#sprite-container-pureza {
  position: absolute;
  width: 200px; /* Ajusta según el tamaño de tus imágenes */
  /* height: 231px; */
  top: 47%;
  right: -19%;
  aspect-ratio: 322 / 231;
}

.sprite-pureza {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#sprite-container-nexo {
  cursor: pointer;
  position: absolute;
  width: 120px;
  top: 4%;
  right: -18%;
  aspect-ratio: 395 / 517;
  z-index: 3;
}

.sprite-nexo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#sprite-container-ecos {
  cursor: pointer;
  position: absolute;
  width: 280px;
  bottom: 16%;
  left: -21%;
  aspect-ratio: 223 / 108;
  z-index: 3;
}

.sprite-ecos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#sprite-container-prisma {
  cursor: pointer;
  position: absolute;
  width: 200px;
  top: 33%;
  left: -20%;
  aspect-ratio: 309 / 317;
  z-index: 3;
}

.sprite-prisma {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#sprite-container-arte {
  cursor: pointer;
  position: absolute;
  width: 359px;
  top: 65px;
  left: -121px;
  aspect-ratio: 800 / 343;
  z-index: 4;
}

.sprite-arte {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#sprite-container-quique {
  cursor: pointer;
  position: absolute;
  width: 270px;
  top: 26%;
  right: -22%;
  aspect-ratio: 400 / 439;
  z-index: 3;
}

.sprite-quique {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#sprite-container-el-plato {
  position: absolute;
  width: 220px;

  bottom: 11%;
  right: -23%;
  aspect-ratio: 320 / 233;
}

.sprite-el-plato {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

#sprite-container-oy2 {
  position: absolute;
  width: 239px;
  top: 0;
  left: 0;
  aspect-ratio: 334 / 314;
}

.sprite-oy2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

@media (max-width: 1500px) {
  #sprite-container-alma {
    width: 114px;
  }
  #sprite-container-fronteras {
    width: 179px;
    top: -9%;
  }
  #sprite-container-actitud {
    width: 159px;
  }
  #sprite-container-pureza {
    width: 149px;
    top: 44%;
  }
  #sprite-container-el-plato {
    width: 179px;
  }
  #sprite-container-tesoros {
    width: 154px;
  }
  #sprite-container-quique {
    width: 174px;
  }

  #sprite-container-nexo {
    width: 100px;
  }

  #sprite-container-arte {
    width: 297px;
    top: 31px;
  }

  #sprite-container-prisma {
    width: 150px;

    top: 216px;
  }

  #sprite-container-ecos {
    width: 168px;
    bottom: 16%;
  }

  #lottie-scroll-down {
    bottom: 72px !important;
  }

  .restaurante-q-d-team__title {
    margin-top: 50px;
  }

  .restaurants-section {
    bottom: 75px;
  }

  .la-boutique__cervezas {
    padding-bottom: 180px;
  }
}

@media (max-width: 1270px) {
  #main {
    width: calc(100% - 40px);
  }
  .container {
    width: 100%;
    padding: 0 40px;
  }
}

@media screen and (max-width: 1470px) {
  body {
    font-size: 15px;
  }
  .galleta-container {
    right: 12%;
  }

  /* .universo-q-d-reconocimientos__text .content {
    height: 50vh;
  } */

  .la-boutique__cervezas__productos__item__image img {
    height: 650px;
  }

  .la-boutique__cervezas__productos__item__image {
    transform: scale(0.8);
  }
  #sprite-container-firma {
    width: 415px;
  }
  .restaurante-q-d-intro__image_lechuga {
    transform: scale(0.8);
    top: -100px;
  }
  .brizna-1 {
    left: 311px;
  }
  .brizna-3 {
    top: 56px;
  }
  .conejo-1 {
    top: -111px;
    left: -99px;
    width: 210px;
  }
  .conejo-2 {
    width: 208px;
  }
  .conejo-3 {
    top: 156px;
    left: 271px;
    width: 150px;
  }
  .restaurante-q-d-menu__image img {
    transform: scale(0.9);
  }
  .restaurante-q-d-menu__image {
    right: -131px;
  }
  .plato-condimentos__pulpo-blanco {
    right: 311px;
    width: 118px;
  }
  .plato-condimentos__pulpo-negro {
    right: 169px;
  }
  .plato-condimentos__col1 {
    right: 278px;
    width: 80px;
  }
  .plato-condimentos__col2 {
    right: 77px;
    width: 71px;
  }

  .plato-condimentos__col3 {
    right: 198px;
    width: 66px;
  }
  .la-boutique__cervezas__productos {
    margin-top: -100px;
  }
  .la-boutique__cervezas__steppers {
    top: 100px;
  }
}

@media screen and (max-width: 1100px) {
  .radar {
    display: none;
  }

  .universo-q-d-reconocimientos-mobile__image .radar {
    display: flex;
  }

  .burger-icon {
    display: flex;
  }

  .contacto__mas-info__text {
    display: none;
  }

  .menu.active {
    display: none;
  }

  .mobile-action-buttons {
    display: flex;
  }

  .restaurants-section {
    display: none;
  }
  .footer {
    display: none;
  }

  #main .nav-right {
    display: none;
  }

  .menu-mobile-button {
    display: flex;
  }

  .menu-mobile-overlay.active {
    display: block;
  }

  body {
    font-size: 14px;
  }

  .title-big {
    font-size: 1.1rem;
  }

  .universo-q-d-cocina__text {
    width: 100%;
  }
  .universo-q-d .content {
    line-height: 1rem;
  }

  .mas-restaurantes-item:nth-child(odd) {
    flex-direction: column;
  }

  .mas-restaurantes-item {
    flex-direction: column-reverse;
  }

  .mas-restaurantes-item__logo img {
    width: 100%;
    max-width: 70%;
    max-height: 70%;
  }
  .la-boutique__a-fuego__items {
    flex-direction: column;
  }

  .la-boutique__cervezas__intro {
    gap: 5px;
  }

  .la-boutique__intro__text {
    padding-top: 5px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 30px;
  }

  .la-boutique__cervezas__productos__item {
    gap: 0px;
  }

  .la-boutique__cervezas__productos__item__image img {
    transform: scale(0.5);
    bottom: -110px;
    height: 770px;
    left: 0;
  }

  .la-boutique__cervezas__productos__item__text {
    flex: 20;
  }

  .la-boutique__cervezas__productos__item__text__content {
    padding-left: 80px;
    margin-left: 70px;
    left: 0;
    margin-top: 80px;
  }

  .la-boutique__intro__fuego {
    flex: 8;
  }

  .la-boutique__cervezas__productos__item__image {
    /* right: -126px; */
    bottom: -45px;
    flex: 1;
  }

  .la-boutique__cervezas__steppers {
    justify-content: end;
    width: 100%;
    top: 0;
    margin-bottom: 30px;
    right: 10%;
  }

  .la-boutique__cervezas__productos__item__text__claim {
    position: relative;
    gap: 20px;
    top: 20px;
  }

  .la-boutique__cervezas__productos__item__text__claim__buy {
    flex: 2;
  }

  .la-boutique__cervezas__productos__item__text__claim__button {
    flex: 3;
  }

  .magazine-items {
    flex-direction: column;
  }

  .la-boutique__libros {
    gap: 10px;
  }

  .la-boutique__libros__item {
    flex-direction: column;
    padding: 20px 40px 20px 20px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .la-boutique__libros__item::-webkit-scrollbar {
    display: none;
  }

  .libro-content__title h3 {
    font-size: 1.1rem;
  }
  .libro-content__description {
    margin-top: 0px;
  }

  .contacto__donde-estamos__content {
    width: 100%;
  }

  .contacto__donde-estamos__line {
    display: none;
  }
  .contacto__donde-estamos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 80px;
  }
  .contacto__mas-info {
    flex-direction: column;
  }

  #sprite-container-gamba {
    width: 50vh;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  #sprite-container-oy {
    display: none;
  }
  .la-boutique__cervezas__steppers__item img {
    height: 125px;
  }

  .la-boutique__cervezas__productos__item__text__content .content {
    max-height: 20vh;
    overflow: scroll;
  }

  .la-boutique__cervezas__productos__item__text__claim {
    top: 50px;
  }

  .la-boutique__a-fuego__video {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .la-boutique__a-fuego__video__desktop {
    display: none;
  }

  .la-boutique__a-fuego__video__mobile {
    display: block;
  }

  .mas-restaurantes {
    padding-bottom: 50px;
  }

  .la-boutique__experiencia__item {
    flex-direction: column;
    gap: 10px;
  }
  .la-boutique__experiencia__item__text {
    overflow: scroll;
  }

  .la-boutique__experiencia__items {
    margin-bottom: 20px;
  }

  .la-boutique__experiencia__stepper {
    height: 100px;
  }

  .contacto-manos img {
    max-width: 100%;
    position: relative;
    left: -50%;
    top: 50px;
  }

  #sprite-container-firma {
    width: 450px;
  }

  #sprite-container-alma {
    top: -108px;
    left: 34px;
    width: 82px;
  }
  #sprite-container-fronteras {
    width: 110px;
    top: -44%;
    right: 16%;
  }

  #sprite-container-actitud {
    width: 81px;
    top: -24%;
    right: 14%;
  }

  #sprite-container-pureza {
    width: 105px;
    top: -9%;
    right: 3%;
  }

  #sprite-container-el-plato {
    width: 94px;
    bottom: -18%;
    right: 4%;
  }

  #sprite-container-quique {
    width: 128px;
    top: -8%;
    right: 4%;
  }

  #sprite-container-tesoros {
    width: 103px;
    bottom: -10%;
    right: 13%;
  }

  #sprite-container-arte {
    width: 203px;
    top: -30%;
    left: 4%;
  }

  #sprite-container-prisma {
    width: 103px;
    top: -4%;
    left: 4%;
  }

  #sprite-container-nexo {
    width: 77px;
    top: -30%;
    right: 12%;
  }

  #sprite-container-ecos {
    width: 103px;
    bottom: -10%;
    left: 9%;
  }

  .image-regala {
    width: 100%;
  }
  .regala-content {
    flex-direction: column;
  }

  .reserva-content__area {
    flex-direction: column;
  }

  .reserva-content__area-iframe {
    width: 100%;
  }
}

.hidden {
  display: none;
}

.universo-q-d-mobile__image {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.universo-q-d-mobile__image__galleta img {
  opacity: 1;
  transition: transform 0.5s ease-in-out;
  transform-origin: center center;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.universo-q-d-reconocimientos-mobile {
  margin-top: 80px;
  display: flex;
  align-items: start;
  gap: 20px;
  overflow: hidden;
}

.universo-q-d-reconocimientos-mobile__text {
  flex: 2;
}

.universo-q-d-reconocimientos-mobile__image {
  position: relative;
  flex: 2;
  overflow: hidden;
  padding-bottom: 100px;
}

.universo-q-d-reconocimientos-mobile__image img {
  position: relative;
  right: -40px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radar3-1 {
  top: 49px;
  left: 50px;
}

.radar3-2 {
  top: 171px;
  left: 99px;
}

.radar3-3 {
  top: 291px;
  left: 47px;
}

.radar3-4 {
  top: 415px;
  left: 105px;
}

.radar3-5 {
  top: 551px;
  left: 55px;
}

.restaurante-q-d-mobile__team-image {
  position: relative;
}

.restaurante-q-d-mobile__team-image img {
  width: 100%;
}

.universo-q-d-estrellas-mobile__image {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.universo-q-d-reconocimientos-mobile__image {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.guardiantes-de-la-memoria img {
  max-width: 100%;
}

#lottie-scroll-down {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  position: absolute;
  bottom: 100px;
  left: calc(50% - 25px);
  z-index: 2;
  opacity: 0;
}

#lottie-scroll-down.visible {
  opacity: 1;
}

.nota-musical {
  position: absolute;
  font-size: 20px; /* Aumentamos el tamaño */
  color: white; /* Cambiamos a un color más oscuro */
  opacity: 1;
  pointer-events: none;
  transform-origin: center;
  z-index: 10; /* Aseguramos que esté por encima de la imagen */
  left: 63%;
  bottom: 300px;
}

.nota-musical::after {
  content: "♪";
  font-size: 2em;
  display: block;
}

.nota-musical:nth-child(2)::after {
  content: "♫";
}

.nota-musical:nth-child(3)::after {
  content: "♩";
}

.nota-musical:nth-child(4)::after {
  content: "♪";
}

.nota-musical:nth-child(5)::after {
  content: "♫";
}

.modal-contacto-content {
  padding: 40px;
  text-align: center;
}

.modal-contacto-content__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  color: var(--color-title);
}

.modal-contacto-content__text {
  line-height: 1.6;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.modal-contacto-content__text p {
  margin-bottom: 1rem;
}

.modal-contacto-content__text a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.modal-contacto-content__text a:hover {
  color: var(--color-title);
}

.modal-contacto-content__text .legal-links {
  margin-top: 2rem;
  font-size: 0.8rem;
  line-height: 1.2rem;
  opacity: 0.6;
}

.modal-contacto-content__text .legal-links a {
  display: block;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.modal-contacto-content__text .legal-links a:hover {
  opacity: 1;
}

#listado-reconocimientos {
  list-style: none;
  padding-inline-start: 0;
}

#listado-reconocimientos li {
  text-indent: -2.75em;
  padding-left: 2.75em;
  padding-bottom: 0.5em;
}

.experiencias-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 4rem 0;
}

.experiencia-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.experiencia-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

.experiencia-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.experiencia-image:hover img {
  transform: scale(1.05);
}

.experiencia-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.experiencia-content h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
}

.experiencia-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .experiencias-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .experiencias-container {
    grid-template-columns: 1fr;
  }
}
