@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
.vinicola-custom-button {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 22px 70px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: "Cormorant Infant", serif;
  cursor: pointer;
}
.vinicola-custom-button.noise-normal {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='noiseFilter'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23noiseFilter)' opacity='0.25'/></svg>");
  background-repeat: repeat;
}
.vinicola-custom-button.noise-hover::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='noiseFilter'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23noiseFilter)' opacity='0.25'/></svg>"), linear-gradient(0deg, #ffffff, #ffffff);
  background-repeat: repeat, no-repeat;
  background-blend-mode: multiply;
}
.vinicola-custom-button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transform-origin: left;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.vinicola-custom-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #ffffff;
  transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}
.vinicola-custom-button .text-original {
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.vinicola-custom-button .text-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  color: #460026;
  opacity: 0;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vinicola-custom-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}
.vinicola-custom-button:hover::before {
  height: 100%;
}
.vinicola-custom-button:hover::after {
  height: 100%;
}
.vinicola-custom-button:hover .text-original {
  opacity: 0;
  transform: translateY(-20px);
}
.vinicola-custom-button:hover .text-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}
.vinicola-custom-button:active {
  transform: translateY(0);
}
.vinicola-custom-button i,
.vinicola-custom-button svg {
  font-size: 0.9em;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (max-width: 768px) {
  .vinicola-custom-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

.elementor-widget-custom-button .vinicola-custom-button {
  margin: 0;
}