.elementor-kit-6{--e-global-color-primary:#F70488;--e-global-color-secondary:#FFFFFF;--e-global-color-text:#000000;--e-global-color-accent:#61CE70;--e-global-color-48fc2f9:#9D17CB;--e-global-color-46eaa64:#BBBBBB;--e-global-color-8574003:#FFFFFF;--e-global-color-1c85dea:#000000;--e-global-color-cd8ac88:#F7B2D8;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-size:35px;--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"Roboto Flex";--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-6 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:19px;}.elementor-element{--widgets-spacing:19px 19px;--widgets-spacing-row:19px;--widgets-spacing-column:19px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@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-kit-6{--e-global-typography-primary-font-size:30px;}.elementor-kit-6 p{margin-block-end:0px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//*
=================================================
CÓDIGOS PERSONALIZADOS PARA A PÁGINA BIO PRO
=================================================
*/

/* 
-------------------------------------------------
1. LETREIRO DESLIZANTE ROXO
-------------------------------------------------
*/
.meu-letreiro {
  background-color: #9D17CB;
  width: 100%;
  padding: 12px 0;
  overflow: hidden;
  display: flex;
}
.meu-letreiro-track {
  display: flex;
  white-space: nowrap;
  animation: letreiro-animacao 15s linear infinite;
}
.meu-letreiro-item {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  padding: 0 25px;
  display: flex;
  align-items: center;
}
.meu-letreiro-item::before {
  content: '★';
  margin-right: 15px;
  font-size: 12px;
}
@keyframes letreiro-animacao {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.meu-letreiro:hover .meu-letreiro-track {
  animation-play-state: paused;
}

/* 
-------------------------------------------------
2. BOTÃO COM BORDA DE LUZ GIRATÓRIA (VERSÃO FINAL COM LINK CORRIGIDO)
-------------------------------------------------
*/

.botao-animado-roxo {
  position: relative;
  overflow: hidden;
  padding: 2px !important;
  background: #000;
}

/* ATUALIZAÇÃO: Força o link a cobrir o botão inteiro */
.botao-animado-roxo .elementor-button-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; /* Garante que o link fique na frente de TUDO */
}

.botao-animado-roxo::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 250%; height: 250%;
  z-index: 1;
  background: conic-gradient(
    from 180deg at 50% 50%,
    transparent 0deg,
    transparent 260deg,
    #E040FB 275deg,
    #9D17CB 300deg,
    transparent 360deg
  );
  animation: luz-giratoria-final 4s linear infinite;
}

.botao-animado-roxo::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  background: #000;
  border-radius: inherit;
  z-index: 2;
}

.botao-animado-roxo .elementor-button-content-wrapper {
  position: relative;
  z-index: 3;
}

@keyframes luz-giratoria-final {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}/* End custom CSS */