@font-face {
  font-family: "Hemi Head";
  src: url("fonts/hemi head bd it.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto-black";
  font-weight: 900;
  src: url("fonts/Roboto-Black.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto-medium";
  font-weight: 900;
  src: url("fonts/Roboto-Medium.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto-bold";
  font-weight: 700;
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto-ligth";
  font-weight: 300;
  src: url("fonts/Roboto-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto-regular";
  font-weight: 300;
  src: url("fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "LEMONMILK-bold";
  font-weight: 300;
  src: url("fonts/LEMONMILK-Bold.otf") format("truetype");
  font-display: swap;
}
html,
body {
  font-family: "Roboto-bold";
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.naranja-descuento .linea-degradado {
  height: 12px; 
  background: linear-gradient(to right, #FF7F00, #ffd000); 
}

.naranja-descuento .descuento {
  text-align: center;
  font-size: 24px;
  color: black;
  background-color: #FF7F00; 
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Hemi Head";
}

@media (max-width: 600px) {
  .naranja-descuento .descuento {
      font-size: 18px; 
      padding: 8px 0;
  }
}

@media (min-width: 2500px) {
  .naranja-descuento .descuento {
      font-size: 3rem; 
  }
}


#floatingButton {
  max-width: 250px;
  max-height: 250px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: fixed;
  bottom: 80px;
  right: 20px;
  animation: orbit 6s infinite ease-in-out;
  z-index: 9999;
}

@keyframes orbit {
  0% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(4px) translateY(-4px);
  }
  50% {
    transform: translateX(8px) translateY(0);
  }
  75% {
    transform: translateX(4px) translateY(4px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 1200px) {
  #floatingButton {
    width: 50%;
    height: auto;
  }
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}


#whatsappLink {
  position: fixed; /*flotante mobile*/
  bottom: 50px;
  right: 20px;
  z-index: 998;
}


.popupcookies-container {

  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex
;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 0;
  box-sizing: border-box;
  z-index: 1000;
}
.popupcookies-content {
  background: #fff;
  padding: 10px;
  border-radius: 10px 10px 0 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  margin: 0;
  box-sizing: border-box;
}
.accept-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  margin-top: 10px;
}