.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */#button {
  position: relative;
  overflow: hidden;

  /* Gradiente igual ao Figma */
  background: linear-gradient(90deg, #B549D5 0%, #784BFD 100%);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite, pulseGlow 2.5s infinite;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  color: #FFFFFF;
  border: none;
  border-radius: 1000px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  appearance: none;
  -webkit-appearance: none;
  outline: none;

  /* Começa sem sombra */
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

/* ✨ Brilho passando */
#button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  animation: shineMove 2.5s infinite;
  pointer-events: none;
}

/* Hover */
#button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px rgba(181, 73, 213, 0.8); /* Roxo do botão */
}

/* Clique */
#button:active {
  transform: scale(0.98);
}

/* Remove foco nativo */
#button:focus,
#button:focus-visible {
  outline: none;
  box-shadow: none;
}

/* ===== ANIMAÇÕES ===== */

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shineMove {
  0% { left: -150%; }
  60% { left: 150%; }
  100% { left: 150%; }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(181, 73, 213, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(120, 75, 253, 0.9);
  }
}

.tcolor {
  background: linear-gradient(90deg, #B549D5 0%, #784BFD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}/* End custom CSS */