body {
  opacity: 0; /* Oculta el contenido al cargar la página */
  transition: opacity 0.3s ease-in-out;
}

body.fonts-loaded {
  opacity: 1; /* Muestra el contenido cuando las fuentes están cargadas */
}

* {
  list-style: none;
  text-decoration: none;
  background-color: rgb(243, 240, 231);
  color: black;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

/* Alerta */

.modal {
  font-family: "Oswald", sans-serif;
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000; /* Incremented z-index to ensure it is above the header */
}

.modal-content {
  font-family: "Oswald", sans-serif;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.modal-content h2 {
  font-family: "Oswald", sans-serif;
  margin-top: 0;
  background-color: white;
}

.modal-content p {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  background-color: white;
}

.modal-content p strong {
  background-color: white;
}

.btn-yes,
.btn-no {
  padding: 10px 20px;
  margin: 10px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
}

.btn-yes {
  font-family: "Oswald", sans-serif;
  transition: 0.3s ease-in-out;
  background-color: #1a9348;
  color: #fff;
}

.btn-yes:hover {
  background-color: #014d1e;
}

.btn-no {
  transition: 0.3s ease-in-out;
  background-color: #ccc;
  color: #333;
}

.btn-no:hover {
  background-color: #333;
  color: white;
}

strong {
  font-family: "Oswald", sans-serif;
}

/* Alerta */

/* Alerta Cookies*/

#cookieAlert {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgb(240, 240, 240);
  color: white;
  padding: 20px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2); /* Sombra en la parte superior */
}

#cookieAlert p {
  background-color: rgb(240, 240, 240);
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
}

#acceptCookies {
  margin-right: 10px;
  padding: 10px 20px;
  background-color: green;
  color: white;
  border: none;
  font-family: "Oswald", sans-serif;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 8px;
}

#acceptCookies:hover {
  background-color: rgb(0, 82, 0);
}

#rejectCookies {
  padding: 10px 20px;
  background-color: rgb(70, 70, 70);
  color: white;
  border: none;
  font-family: "Oswald", sans-serif;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 8px;
}

#rejectCookies:hover {
  background-color: rgb(48, 48, 48);
}

/* Alerta Cookies*/

/* Header */

.header {
  height: 105px;
  width: 100%;
  position: fixed;
  background-color: rgb(243, 240, 231);
  z-index: 1000; /* Ensure header stays below modal */
}

.header_container {
  margin: auto;
  display: grid;
  grid-template-columns: 0.25fr 0.5fr 0.25fr;
  place-items: center;
  height: 100%;
  width: 95%;
  max-width: 1620px;
  height: 107px;
}

.menu_icons {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
}

.menu_icon {
  margin-left: 0;
  cursor: pointer;
}

.bar {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  transition: all 0.3s ease-in-out;
  background-color: black;
  border-radius: 4px;
}

/* Menú link active */

.menu_icon.active .bar:nth-last-child(1) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu_icon.active .bar:nth-last-child(2) {
  opacity: 0;
}

.menu_icon.active .bar:nth-last-child(3) {
  transform: translateY(7px) rotate(45deg);
}

.menu_links {
  position: fixed;
  margin-top: 0px;
  left: -110%;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90%;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  background-color: black;
  align-items: center;
  padding-left: 0;
  justify-content: space-between;
  z-index: 9999;
}

.menu_link {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 75px;
  background: transparent;
  margin: auto;
}

.menu_link a {
  font-family: "Oswald", sans-serif;
  color: white;
}

.menu_link a:hover {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: rgb(26, 147, 72);
  transition: all 0.2s ease-in-out;
}

.menu_links.active {
  left: 0;
  display: flex;
  justify-content: center;
  background-color: black;
  align-items: center;
  padding-left: 0;
  justify-content: space-between;
  z-index: 9999; /* Aseguramos que el menú activo esté por encima de otros elementos */
}

.redes {
  margin-bottom: 40px;
  background-color: inherit;
}

.bxl-instagram,
.bxl-tiktok,
.bxl-facebook,
.bxl-youtube {
  background: transparent;
  font-size: 40px;
  color: white;
}

.bxl-instagram:hover,
.bxl-tiktok:hover,
.bxl-facebook:hover,
.bxl-youtube:hover {
  color: rgb(26, 147, 72);
}

/* Menú link active */

.nav_logo {
  width: 200px;
  height: auto;
  position: relative; /* Asegúrate de que este contenedor sea relativo para el posicionamiento absoluto de los hijos */
  overflow: hidden;
  display: grid;
  place-items: center;
}

.logo {
  padding: 5px;
  width: 180px;
  display: flex;
  transform: translateX(-5%);
  transition: opacity 0.3s ease-out; /* Asegúrate de que la transición esté aquí para la opacidad */
}

.logo:hover {
  opacity: 0.5;
}

.logo_face {
  position: absolute;
  display: flex;
  height: 100px;
  background-color: transparent;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease-out;
}

.nav_logo:hover .logo_face {
  transform: translate(-50%, -103%);
  transition: 0.3s ease-out;
  pointer-events: none;
}

.animate .logo_face {
  transform: translate(-50%, -103%);
  pointer-events: none;
}

.logo:hover,
.animate .logo {
  opacity: 0.5;
}

.button_header {
  display: flex;
  align-self: center;
  justify-self: right;
}

.button_store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background-color: rgb(26, 147, 72);
  height: 50px;
  padding: 3px 30px;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
  border-bottom: 0 solid transparent;
  border-radius: 8px;
}

.button_store:hover {
  border-bottom: 3px solid black;
  background-color: rgb(18, 100, 49);
}

.header_line {
  display: flex;
  justify-content: center;
  margin: auto;
}

.header_lines {
  position: fixed;
  display: flex;
  height: 5px;
  width: 95%;
  max-width: 1620px;
  border-top: 1px solid;
  border-bottom: 2px solid;
  border-color: black;
  background-color: rgb(243, 240, 231);
}

/* Header */

/* main-content */

.main-content {
  padding: 115px 0px 0px 0px;
  max-width: 1620px;
  max-height: 1000000px;
  margin: auto;
  width: 95%;
}

/* main-content */

/* Landing Banner */

.landing-module {
  margin: auto;
  margin-top: 20px;
  width: 95%;
  max-width: 1620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 1; /* Aseguramos que el banner tenga un z-index bajo */
}

.srhop-verse {
  position: relative;
  width: 100%;
  height: 750px;
  background: transparent;
  z-index: 1; /* Aseguramos que .srhop-verse tenga un z-index bajo */
}

.summerWave-verse {
  position: absolute;
  height: 600px;
  width: 600px;
  background: transparent;
  top: 70%;
  left: 50%;
  transform: translate(-150%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.summer-verse {
  position: absolute;
  height: 550px;
  width: 550px;
  background: transparent;
  top: 40%;
  left: 50%;
  scale: 0.85;
  transform: translate(-50%, -20%);
  transition: 0.5s;
  opacity: 0;
}

.sw-active {
  position: absolute;
  height: 600px;
  width: 600px;
  background: transparent;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.leGrisette-verse {
  position: absolute;
  height: 500px;
  width: 500px;
  background: transparent;
  top: 55%;
  left: 55%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.northernChampagne-verse {
  position: absolute;
  height: 350px;
  width: 350px;
  background: transparent;
  top: 37%;
  left: 27%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.lg-active,
.nc-active {
  opacity: 1;
}

.tropicalRain-verse {
  position: absolute;
  height: 550px;
  width: 550px;
  background: transparent;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  transition: 0.5s;
  opacity: 0;
}

.tr-active {
  opacity: 1;
  transform: translate(-60%, -50%);
}

.sw2-active {
  opacity: 1;
  transform: translate(-40%, -60%);
}

.espacio {
  background-color: rgb(243, 240, 231);
  width: 100%;
  height: 3000px;
}

.landing-message {
  height: 750px;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
}

.intro-message {
  margin-bottom: 20px;
  line-height: 0.85;
  font-size: 120px;
  height: 240px;
  padding-top: 0.67em;
  margin-top: 0;
}

.landing-message h1 {
  font-family: "Oswald", sans-serif;
  font-size: 120px;
  font-weight: 800;
  background-image: url(IMG/TEXTURE.webp);
  background-repeat: no-repeat;
  background-clip: text;
  color: transparent;
  background-color: #000;
  background-size: 1250px;
}

.hop-message {
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
  height: 100%;
  line-height: 1;
  margin-bottom: 20px;
  box-sizing: border-box;
  display: block;
  position: static;
  font-size-adjust: none;
  max-width: 650px;
}

.button_beer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background-color: black;
  height: 50px;
  padding: 3px 30px;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
  border-bottom: 0 solid transparent;
  border-radius: 8px;
}

.button_beer:hover {
  background-color: rgb(26, 147, 72);
}

/* Landing Banner */

/* Line up */

#lineup {
  margin: auto;
  margin-top: 50px;
  width: 95%;
  max-width: 1620px;
  z-index: 1; /* Aseguramos que el banner tenga un z-index bajo */
}

.cervezas-srhop {
  font-family: "Oswald", sans-serif;
  font-size: 120px;
  font-weight: 700;
  background-image: url(IMG/TEXTURE.webp);
  background-repeat: no-repeat;
  background-clip: text;
  color: transparent;
  background-color: #000;
  background-size: 1250px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 0px;
  width: 70%;
  margin: auto;
  opacity: 0;
}

.cervezas-estilos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  margin-top: 40px;
  padding: 0;
}

.cerveza {
  text-align: center;
  opacity: 0;
}

.cerveza img {
  display: block;
  margin: 0 auto;
  aspect-ratio: 175/384;
  height: 350px;
}

.beer-name {
  text-align: center;
  text-transform: uppercase;
  font-size: 25px;
  margin: 10px 0px 10px 0px;
  line-height: 0.8;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.beer-name:hover {
  color: #1a9348;
}

.beer-description {
  text-align: justify;
  font-size: 0.7rem;
}

.btns {
  display: flex;
  justify-content: center;
}

.btn.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 600;
  background-color: rgb(26, 147, 72);
  height: 40px;
  padding: 3px 10px;
  letter-spacing: 0.01em;
  border-bottom: 0 solid transparent;
  margin-right: 50px;
  transition: 0.2s ease-in-out;
  border-radius: 8px;
}

.btn.btn-green:hover {
  background-color: rgb(18, 100, 49);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 600;
  background-color: black;
  height: 40px;
  padding: 3px 15px;
  letter-spacing: 0.01em;
  transition: 0.2s ease-in-out;
  border-radius: 8px;
  cursor: pointer;
}

.btn:hover {
  background-color: rgb(18, 100, 49);
}

.verproducto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 600;
  background-color: rgb(26, 147, 72);
  height: 40px;
  padding: 3px 10px;
  letter-spacing: 0.01em;
  border-bottom: 0 solid transparent;
  margin-right: 50px;
  transition: 0.2s ease-in-out;
}

/* Hover beers */

.botella-container {
  position: relative;
  height: 500px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.botella-container img {
  height: 500px;
}

.botella-video-grisette,
.botella-video-tropical,
.botella-video-summer,
.botella-video-champagne {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
  filter: brightness(1.4);
  background-color: transparent;
}

.botella-container:hover .legrisette,
.botella-container:hover .tropicalrain,
.botella-container:hover .summerwave,
.botella-container:hover .champagne {
  opacity: 0;
}

.botella-container:hover .botella-video-grisette,
.botella-container:hover .botella-video-tropical,
.botella-container:hover .botella-video-summer,
.botella-container:hover .botella-video-champagne {
  opacity: 1;
  pointer-events: auto;
}

/* Hover beers */

/* Line up */

/* Quién es el Sr. Hop */

#quien_es {
  margin: auto;
  width: 95%;
  max-width: 1620px;
  height: 800px;
  margin-top: 90px;
  position: relative;
}

.quien_es_srhop {
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-size: 120px;
  font-weight: 700;
  background-image: url(IMG/TEXTURE.webp);
  background-repeat: no-repeat;
  background-clip: text;
  color: transparent;
  background-color: #000;
  background-size: 1250px;
  text-align: center;
  width: 100%;
  height: 180px;
  margin: auto;
  opacity: 0;
}

.dynamic_face {
  aspect-ratio: 0.666;
  height: 400px;
  position: relative;
  margin: auto;
  margin-top: 80px;
}

.face {
  background-image: url(IMG/SR_HOP_DYNAMIC.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
}

.left_eye {
  aspect-ratio: 1/1;
  height: 24px;
  background-image: url(IMG/OJO_IZQUIERDO.webp);
  background-size: contain;
  background-color: transparent;
  position: absolute;
  left: 31%;
  top: 42%;
  z-index: 1;
}

.right_eye {
  aspect-ratio: 1/1;
  height: 24px;
  background-image: url(IMG/OJO_DERECHO.webp);
  background-size: contain;
  background-color: transparent;
  position: absolute;
  right: 31%;
  top: 42%;
  z-index: 1;
}

.life_hard {
  position: absolute;
  height: 100px;
  width: 300px;
  background-image: url(IMG/LIFE_IS_HARD.webp);
  background-size: contain;
  background-repeat: no-repeat;
  left: -15px;
  top: -70px;
  scale: 0;
}

.life_hard:hover,
.drink_good:hover {
  scale: 1.1;
}

.drink_good {
  position: absolute;
  height: 100px;
  width: 300px;
  background-image: url(IMG/DRINK_GOOD.webp);
  background-size: contain;
  background-repeat: no-repeat;
  left: -15px;
  top: 370px;
  scale: 0;
}

.show {
  transition: 0.5s;
  scale: 1;
}

.left_side_point,
.right_side_point {
  position: absolute;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 300ms ease-in-out;
  transform: scale(1);
}

.left_side_point.one.final:hover,
.left_side_point.two.final:hover,
.left_side_point.three.final:hover,
.right_side_point.one.final:hover,
.right_side_point.two.final:hover,
.right_side_point.three.final:hover {
  background-color: rgb(0, 58, 22);
}

.left_side_point.one {
  text-align: center;
  right: 32%;
  top: 50%;
}

.left_side_point.one.final {
  display: grid;
  place-items: center;
  height: 100px;
  width: 180px;
  right: 130%;
  top: 0%;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  background-color: #1a9348;
  color: white;
  border-radius: 44% 56% 71% 29% / 59% 46% 54% 41%;
  animation: move 3s linear infinite;
  animation-direction: alternate;
}

.left_side_point.two {
  text-align: center;
  right: 32%;
  top: 50%;
}

.left_side_point.two.final {
  display: grid;
  place-items: center;
  height: 100px;
  width: 180px;
  right: 140%;
  top: 40%;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  background-color: #1a9348;
  color: white;
  border-radius: 35% 65% 32% 68% / 51% 44% 56% 49%;
  animation: move 3s linear infinite;
  animation-direction: alternate;
}

.left_side_point.three {
  text-align: center;
  right: 32%;
  top: 50%;
}

.left_side_point.three.final {
  display: grid;
  place-items: center;
  height: 100px;
  width: 180px;
  right: 120%;
  top: 80%;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  background-color: #1a9348;
  color: white;
  border-radius: 64% 36% 48% 52% / 51% 44% 56% 49%;
  animation: move 3s linear infinite;
  animation-direction: alternate;
}

.right_side_point.one {
  text-align: center;
  left: 32%;
  top: 50%;
}

.right_side_point.one.final {
  display: grid;
  place-items: center;
  height: 100px;
  width: 180px;
  left: 130%;
  top: 0%;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  background-color: #1a9348;
  color: white;
  border-radius: 72% 28% 39% 61% / 59% 46% 54% 41%;
  animation: move 3s linear infinite;
  animation-direction: alternate;
}

.right_side_point.two {
  text-align: center;
  left: 32%;
  top: 50%;
}

.right_side_point.two.final {
  display: grid;
  place-items: center;
  height: 100px;
  width: 180px;
  left: 140%;
  top: 40%;
  font-family: "Oswald", sans-serif;
  line-height: 0.9;
  background-color: #1a9348;
  color: white;
  border-radius: 36% 64% 19% 81% / 59% 46% 54% 41%;
  animation: move 3s linear infinite;
  animation-direction: alternate;
}

.right_side_point.three {
  text-align: center;
  left: 32%;
  top: 50%;
}

.right_side_point.three.final {
  display: grid;
  place-items: center;
  height: 100px;
  width: 180px;
  left: 120%;
  top: 80%;
  font-family: "Oswald", sans-serif;
  line-height: 0.8;
  background-color: #1a9348;
  color: white;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: move 3s linear infinite;
  animation-direction: alternate;
}

@keyframes move {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

.scaled {
  transition: 0.3s;
  scale: 0;
}

/* Quién es el Sr. Hop */

/* Mensaje del Sr. Hop */

#history_srhop {
  width: 100%;
  height: 400px;
  opacity: 0;
}

.srhop_title {
  height: 40px;
  width: 80%;
  text-align: center;
  font-size: 2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin: auto;
  margin-bottom: 50px;
}

.srhop_description {
  width: 70%;
  margin: auto;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  text-align: justify;
}

.first_logo {
  margin-top: 30px;
  display: grid;
  place-items: center;
  background: transparent;
  opacity: 0;
}

.first_logo img {
  height: 200px;
  background: transparent;
  z-index: 100;
}

/* Mensaje del Sr. Hop */

/* footer */

.Footer {
  height: 100%;
  width: 100%;
  background-color: #000;
}

.footer_image {
  width: 100%;
  background: transparent;
}

.footer_fondo {
  background: transparent;
}

.footer_container {
  height: 300px;
  max-width: 1620px;
  margin: auto;
  background-color: transparent;
  border-bottom: 1px solid white;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.copyright {
  height: 100%;
  width: 100%;
  text-align: center;
}

.copyright p {
  color: white;
  margin: 10px 0px 0px 0px;
  padding-bottom: 10px;
  background-color: black;
  font-family: "Oswald", sans-serif;
}

.developed {
  font-size: 0.8rem;
  background-color: #000;
  color: white;
  font-family: "Oswald", sans-serif;
}

.bravo {
  color: white;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  transition: 0.3s;
}

.bravo:hover {
  color: #1a9348;
}

.sociedad_anonima {
  color: #1a9348;
  font-family: "Oswald", sans-serif;
  background-color: #000;
}

.footer_links {
  background-color: transparent;
  margin-top: 0px, 0px;
  text-align: right;
}

.footer_registro,
.footer_input,
.logo_blanco,
.advertencia_footer {
  background-color: #000;
}

.footer_registro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.registro_titulo {
  margin-bottom: 10px;
  font-size: 2rem;
}

.footer_email {
  height: 38px;
}

.footer_registro .redes {
  margin: 20px 0px 0px 0px;
}

.registro_titulo {
  color: white;
  background-color: #000;
  font-family: "Oswald", sans-serif;
}

.advertencia {
  background-color: #000;
  color: white;
  font-family: "Oswald", sans-serif;
  text-align: justify;
}

.input {
  background-color: #000;
  display: flex;
  align-items: center;
}

.input input:focus {
  border-color: green;
  outline: none; /* Quita el borde azul predeterminado */
}

input.btn {
  height: 43px;
  margin-left: 20px;
  border: 2px solid white;
}

.logo_blanco {
  background-image: url(IMG/Logo-SrHOP-BlancoyNegro.webp);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
}

.logo_blanco:hover {
  background-image: url(IMG/Logo-SrHOP-Verde.webp);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.legal {
  display: flex;
  background-color: #000;
  padding-left: 0px;
  margin-top: 0;
}

.legal_list {
  background-color: #000;
  font-family: "Oswald", sans-serif;
  color: white;
  font-size: 0.8rem;
}

.legal a:nth-child(2) {
  margin-left: 20px;
}

.legal_list:hover {
  color: #1a9348;
  transition: 0.3s;
  cursor: pointer;
}

input::placeholder {
  font-family: "Oswald", sans-serif;
}

/* footer */

/* Whatsapp */

/* Whatsapp */

/* Móviles medianos */

@media (max-width: 500px) {
  html,
  body {
    overflow-x: hidden; /* Eliminar scroll horizontal */
    overscroll-behavior: none; /* Evitar forzar scroll extra */
    margin: 0; /* Eliminar márgenes que puedan causar desplazamiento */
    padding: 0;
    /* Elimina esta línea para que se mantenga el scroll vertical */
    /* overflow-y: hidden; */ /* Esta línea estaba bloqueando el scroll vertical */
  }

  body {
    touch-action: manipulation; /* Mejora la experiencia en dispositivos táctiles */
  }

  .landing-module {
    margin: auto;
    margin-top: 20px;
    width: 95%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 1; /* Aseguramos que el banner tenga un z-index bajo */
  }

  /* Header */

  .header_lines {
    position: fixed;
    display: flex;
    height: 5px;
    width: 95%;
    border-top: 1px solid;
    border-bottom: 2px solid;
    border-color: black;
    background-color: rgb(243, 240, 231);
  }

  .header_container {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
  }

  .button_store {
    margin-right: 0;
    padding: 3px 10px;
    text-align: center;
    font-size: 1rem;
  }

  /* Header */

  /* Landing page */

  .landing-module {
    margin: auto;
    width: 95%;
    z-index: 1; /* Aseguramos que el banner tenga un z-index bajo */
    display: flex;
    flex-direction: column;
  }

  .srhop-verse {
    position: relative;
    width: 100%;
    height: 380px;
    background: transparent;
    z-index: 1; /* Aseguramos que .srhop-verse tenga un z-index bajo */
  }

  .summerWave-verse {
    position: absolute;
    height: 400px;
    width: 400px;
    background: transparent;
    top: 69%;
    transform: translate(-150%, -50%);
    transition: 0.5s;
    opacity: 0;
  }

  .summer-verse {
    position: absolute;
    height: 320px;
    width: 320px;
    background: transparent;
    top: 40%;
    left: 55%;
    scale: 0.85;
    transform: translate(-50%, -20%);
    transition: 0.5s;
    opacity: 0;
  }

  .sw-active {
    position: absolute;
    height: 340px;
    width: 340px;
    background: transparent;
    top: 69%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }

  .leGrisette-verse {
    position: absolute;
    height: 280px;
    width: 280px;
    background: transparent;
    top: 55%;
    left: 55%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
  }

  .northernChampagne-verse {
    position: absolute;
    height: 220px;
    width: 220px;
    background: transparent;
    top: 38%;
    left: 30%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
  }

  .lg-active,
  .nc-active {
    opacity: 1;
  }

  .tropicalRain-verse {
    position: absolute;
    height: 330px;
    width: 330px;
    background: transparent;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -20%);
    transition: 0.5s;
    opacity: 0;
  }

  .tr-active {
    opacity: 1;
    transform: translate(-50%, -70%);
  }

  .sw2-active {
    opacity: 1;
    transform: translate(-40%, -60%);
  }

  .btns {
    position: relative;
    z-index: 100;
  }

  .summerwave {
    z-index: 1;
  }

  /* Landing page */

  #cookieAlert {
    width: 90vw;
  }

  #cookieAlert p {
    font-size: 1rem;
    width: 100%;
  }

  /* landing-message */

  .landing-message {
    height: 250px;
  }

  .landing-message h1 {
    margin-bottom: 20px;
    font-size: 50px;
    height: 100px;
    margin-top: 0;
    padding-top: 10px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .hop-message {
    font-size: 1rem;
    height: 50px;
    margin-bottom: 10px;
  }

  /* landing-message */

  /* Line up */

  #lineup {
    margin-top: 20px;
  }

  .cervezas-srhop {
    font-size: 4rem;
    width: 80%;
  }

  .cervezas-estilos {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
  }

  .botella-container:hover .legrisette,
  .botella-container:hover .tropicalrain,
  .botella-container:hover .summerwave,
  .botella-container:hover .champagne {
    opacity: 1;
  }

  .botella-container:hover .botella-video-grisette,
  .botella-container:hover .botella-video-tropical,
  .botella-container:hover .botella-video-summer,
  .botella-container:hover .botella-video-champagne {
    opacity: 0;
    pointer-events: auto;
  }

  .beer-description {
    margin: auto;
    width: 80%;
    margin-bottom: 10px;
  }

  .botella-container.summer,
  .botella-container.champagne {
    height: 300px;
    position: relative;
    overflow: hidden;
  }

  img.summerwave,
  img.champagne {
    position: absolute;
    height: 400px;
    left: 50%;
    top: -30%;
    transform: translate(-50%);
    background: transparent;
  }

  /* Line up */

  /* Quien es el Sr. Hop */

  #quien_es {
    margin-top: 25px;
    height: 520px;
  }

  .quien_es_srhop {
    font-size: 4rem;
    width: 100%;
  }

  .dynamic_face {
    margin-top: 30px;
    height: 200px;
  }

  .left_eye,
  .right_eye {
    display: none;
  }

  .face {
    background-image: url(IMG/SR_HOP.webp);
    top: 25px;
    background-position: center;
  }

  .left_side_point.one.final {
    top: -10%;
    left: -85%;
    height: 80px;
    width: 120px;
    font-size: 1rem;
  }

  .left_side_point.two.final {
    left: -95%;
    height: 80px;
    width: 120px;
    font-size: 1rem;
  }

  .left_side_point.three.final {
    height: 80px;
    width: 120px;
    font-size: 1rem;
    left: -85%;
    top: 90%;
  }

  .right_side_point.one.final {
    top: -10%;
    left: 95%;
    height: 80px;
    width: 120px;
    font-size: 1rem;
  }

  .right_side_point.two.final {
    left: 105%;
    height: 80px;
    width: 120px;
    font-size: 1rem;
  }

  .right_side_point.three.final {
    height: 80px;
    width: 120px;
    font-size: 1rem;
    left: 90%;
    top: 90%;
  }

  .life_hard {
    height: 100px;
    width: 300px;
    top: 0;
    left: -80px;
    top: -50px;
  }

  .drink_good {
    top: 200px;
    left: -90px;
  }

  #history_srhop {
    height: 500px;
  }

  .srhop_description {
    width: 80%;
    font-size: 1rem;
    height: 450px;
  }

  .botella-video-grisette,
  .botella-video-tropical,
  .botella-video-summer,
  .botella-video-champagne {
    display: none; /* Oculta los videos */
  }

  .botella-container img {
    opacity: 1; /* Asegura que las imágenes sean visibles */
  }

  /* Quien es el Sr. Hop */

  /* Footer */
  .footer_container {
    display: flex;
    flex-direction: column;
    height: 500px;
  }
  .footer_links {
    padding: 0;
    width: 90%;
    margin: auto;
  }

  .menu_link {
    text-align: left;
    font-size: 3rem;
  }
  .logo_blanco {
    display: none;
  }

  .registro_titulo {
    width: 90%;
    margin: auto;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .footer_email {
    width: 220px;
    margin-left: 5%;
  }

  .advertencia_footer {
    width: 90%;
    margin: auto;
  }

  .legal {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
  }

  .copyright p {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .developed {
    font-size: 0.7rem;
  }

  .redes {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    gap: 20px; /* Espacio entre los iconos */
    margin-top: 20px; /* Espacio superior */
  }

  /* Footer */
}

/* Móviles medianos */
