.elementor-1563 .elementor-element.elementor-element-8469259{--display:flex;--padding-top:5%;--padding-bottom:5%;--padding-left:5%;--padding-right:5%;}.elementor-1563 .elementor-element.elementor-element-8469259:not(.elementor-motion-effects-element-type-background), .elementor-1563 .elementor-element.elementor-element-8469259 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-1563 .elementor-element.elementor-element-f7ffd5e.elementor-element{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-f7ffd5e *//* ============================
   Ajustes gerais
============================ */
.elementor-widget-html:has(.container-botao) {
  overflow: hidden;
  border-radius: 100px;
}

.botao * {
  transition: 0.5s;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  text-align: center;
}

/* ============================
   Estrutura principal do botão
============================ */
.botao {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #A066FF 0%, #C08BFF 50%, #A066FF 100%);
  box-shadow:
    0 10px 20px 0 rgba(160, 102, 255, 0.4),
    0 20px 40px 0 rgba(160, 102, 255, 0.3),
    0 40px 80px 0 rgba(160, 102, 255, 0.2),
    0 60px 120px 0 rgba(160, 102, 255, 0.1);
  cursor: pointer;
  border: none;
  transition: 0.5s;
  overflow: hidden;
}

/* ============================
   Container interno
============================ */
.container-botao {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 30px;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  overflow: hidden;
}

/* ============================
   Ícones (sem fundo)
============================ */
.wrapper-icones {
  display: flex;
  flex-wrap: nowrap;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  border-radius: 50%;
  z-index: 2;
  background: none; /* ← sem background */
  box-shadow: none; /* ← sem sombra */
}

.icone-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #A066FF;
  border-radius: 50%;
  z-index: 1;
}

.icone-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 10px;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
}

/* ============================
   Fundo expansivo
============================ */
.fundo {
  position: absolute;
  left: 0;
  width: 0%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border-radius: 100px;
  box-shadow:
    0 4px 44px 0 rgba(160, 102, 255, 0.4),
    0 0 10px 0 rgba(160, 102, 255, 0.3),
    0 0 12px 0 rgba(160, 102, 255, 0.2) inset;
}

/* ============================
   Textos
============================ */
.texto-1 {
  margin-left: 20px;
  color: #1A012B;
}

.texto-2 {
  position: absolute;
  color: #4E1C7D;
  opacity: 0;
  transform: translateX(100%);
}

/* ============================
   Efeitos de hover
============================ */
.botao:hover .container-botao {
  justify-content: center;
  padding-left: 20px;
  padding-right: 47px;
}

.botao:hover .fundo {
  width: calc(100% - 35px);
  height: 100%;
}

.botao:hover .wrapper-icones {
  left: calc(100% - 30px);
}

.botao:hover .texto-1,
.botao:hover .icone-1 {
  opacity: 0;
}

.botao:hover .texto-2 {
  opacity: 1;
  transform: translateX(0%);
}

.botao:hover .icone-2 {
  opacity: 1;
}

/* ============================
   Reflexo animado
============================ */
.botao::before {
  content: '';
  background: linear-gradient(10deg, #fff 12.81%, rgba(209, 210, 234, 0) 66.66%);
  width: 70px;
  height: 130%;
  position: absolute;
  transform: translateX(-50%) skew(-25deg);
  bottom: 0%;
  user-select: none;
  pointer-events: none;
  animation: brilho 3s infinite ease-in-out;
  filter: blur(3px);
}

@keyframes brilho {
  0%, 100% {
    left: -10%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  48% {
    left: 110%;
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
}/* End custom CSS */