@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);

body {
  background-color: black;
}
a {
  text-decoration: none;
  color: #3399ff;
}

#qt {
  color: rgb(153, 153, 153);
}
h5 {
  font-size: 1.3rem;
}
p .fa[class~="angle"] {
  font-size: 3rem;
  position: relative;
  top: 0.15rem;
  margin: 0 20px;
  cursor: pointer;
  color: rgb(216, 216, 216);
  transition: all 0.5s;
}

p .fa[class~="angle"]:hover {
  color: #bcbd31; /* Cambié la variable por un valor de color */
}

.yellow {
  color: rgb(254, 203, 108); /* Cambié la variable por un valor de color */
}

.green {
  color: green;
}

.product {
  height: 100dvh;
  width: 100dvw;
}

.product.action {
  animation: bounce 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite; /* Cambié la variable por el valor directo */
}

.product .header {
  height: 40px;
  position: relative;
  padding: 20px;
}

.product .main {
  padding: 55px 10px 100px;
  box-sizing: border-box;
}

.product .main .quantity {
  margin-top: 40px;
  color: #333;
}

.product .main h1 {
  font-size: 4.5rem;
  margin: 0 -5px -15px;
  color: #ffffff;
}

.product .main h2 {
  color: #999999;
  text-transform: uppercase;
}

.product .main h3 {
  color: #ffffff;
}

.product .main h5 {
  font-size: 1.25rem;
  color: #ffffff;
}

.product .main p {
  font-size: 1.115rem;
  /* margin: 0 -5px -15px; */
  color: #999999;
}

.product .main img {
  width: 90dvw;
  margin-top: 25px;
  margin-bottom: 25px;
}

.product .main .left,
.product .main .right {
  width: 100%;
  padding: 0 calc(0.5% - 1px);
}

.product .main .right {
  color: #999;
  font-size: 0.78rem;
}

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: greenyellow;
  box-shadow: 0 0 0 2px greenyellow;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: greenyellow;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: greenyellow;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}
.buttons {
  display: flex;
  justify-content: space-around; /* Distribuye el espacio entre los elementos */
}

.buttons a {
  text-decoration: none; /* Elimina el subrayado del enlace */
}
