.elementor-kit-8{--e-global-color-primary:#00C1FF;--e-global-color-secondary:#FDFDFD;--e-global-color-text:#D8D8D8;--e-global-color-accent:#61CE70;--e-global-color-43ec93d:#101010;--e-global-color-bb201fb:#242424;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-size:3em;--e-global-typography-primary-font-weight:600;--e-global-typography-primary-font-style:normal;--e-global-typography-primary-line-height:1em;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-size:3em;--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-line-height:1em;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-size:1em;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.5em;--e-global-typography-accent-font-family:"Poppins";--e-global-typography-accent-font-size:1em;--e-global-typography-accent-font-weight:600;--e-global-typography-accent-line-height:1.5em;--e-global-typography-d4ebb5a-font-family:"Poppins";--e-global-typography-d4ebb5a-font-size:0.8em;--e-global-typography-d4ebb5a-font-weight:600;--e-global-typography-d4ebb5a-text-transform:uppercase;--e-global-typography-d4ebb5a-line-height:1.5em;background-color:#000000;}.elementor-kit-8 e-page-transition{background-color:var( --e-global-color-43ec93d );}.elementor-kit-8 h1{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );font-style:var( --e-global-typography-primary-font-style );line-height:var( --e-global-typography-primary-line-height );}.elementor-kit-8 button,.elementor-kit-8 input[type="button"],.elementor-kit-8 input[type="submit"],.elementor-kit-8 .elementor-button{border-style:none;}.elementor-kit-8 button:hover,.elementor-kit-8 button:focus,.elementor-kit-8 input[type="button"]:hover,.elementor-kit-8 input[type="button"]:focus,.elementor-kit-8 input[type="submit"]:hover,.elementor-kit-8 input[type="submit"]:focus,.elementor-kit-8 .elementor-button:hover,.elementor-kit-8 .elementor-button:focus{border-style:none;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){margin-block-end:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-8{--e-global-typography-primary-font-size:2.5em;--e-global-typography-primary-line-height:1em;--e-global-typography-secondary-font-size:2.5em;--e-global-typography-secondary-line-height:1em;--e-global-typography-text-font-size:1em;--e-global-typography-text-line-height:1.3em;--e-global-typography-accent-font-size:1em;--e-global-typography-d4ebb5a-font-size:0.9375rem;--e-global-typography-d4ebb5a-line-height:1.6rem;}.elementor-kit-8 h1{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-8{--e-global-typography-primary-font-size:2em;--e-global-typography-primary-line-height:1em;--e-global-typography-secondary-font-size:2em;--e-global-typography-secondary-line-height:1em;--e-global-typography-text-font-size:1em;--e-global-typography-text-line-height:1.3em;--e-global-typography-accent-font-size:1em;--e-global-typography-accent-line-height:1.3em;--e-global-typography-d4ebb5a-font-size:0.875rem;--e-global-typography-d4ebb5a-line-height:1.5rem;}.elementor-kit-8 h1{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}}/* Start custom CSS */.card {
  isolation: isolate;
}

.media-object {
  --border-width: 2px; /* Variável para largura da borda */
  --radius: 15px; /* Variável para raio da borda */
  position: relative;
  border-radius: var(--radius); 
  border: var(--border-width) solid transparent; 
}

.media-object::before {
  content: " ";
  position: absolute; 
  inset: calc(var(--border-width) * -1);
  border: inherit; 
  border-radius: inherit;
  background-image: conic-gradient(from var(--angle), #262626 80%, #00BEF1 88%, #00BEF1 92%, #1e87f0 100%); /* Gradiente cônico */
  background-origin: border-box; 
  -webkit-mask:
    linear-gradient(black, black) content-box,
    linear-gradient(black, black);
  mask: linear-gradient(black, black),
        linear-gradient(black, black);  
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 4s linear infinite; /* Animação giratória */
}


@property --angle {
  syntax: "<angle>"; 
  inherits: true;
  initial-value: 0turn; 
}

@keyframes spin {
  to {
    --angle: 1turn; /* Animação para girar o gradiente */
  }
}/* End custom CSS */