.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-color-80fc414:#0A2A38;--e-global-color-39e4912:#273846;--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;--e-global-typography-52b53c0-font-family:"VT323";background-color:var( --e-global-color-39e4912 );color:#FFFFFF;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-kit-5 a{color:#FFFFFF;font-family:"VT323", Sans-serif;font-size:16px;}.elementor-kit-5 h4{color:#1AC7C0;font-family:"VT323", Sans-serif;font-size:35px;font-weight:400;}.elementor-kit-5 h6{color:#FFFFFF;font-family:"VT323", Sans-serif;font-size:24px;}.elementor-kit-5 button,.elementor-kit-5 input[type="button"],.elementor-kit-5 input[type="submit"],.elementor-kit-5 .elementor-button{font-family:"VT323", Sans-serif;font-size:15px;color:#FFFFFF;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end: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 .site-branding{flex-direction:column;align-items:stretch;}.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-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Reset moderno */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Corpo geral com vibe futurista */
body {
  background: #0d0d0d;
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Scrollbar estilizada */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1c1c1c;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #00fff7, #0055ff);
  border-radius: 4px;
}

/* Links com brilho e animação */
a {
  color: #00fff7;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #0055ff;
  text-shadow: 0 0 8px #00fff7;
}

/* Cabeçalhos com neon */
h1, h2, h3, h4, h5, h6 {
  color: #00fff7;
  text-shadow: 0 0 8px rgba(0, 255, 247, 0.5);
  transition: transform 0.3s ease;
}
h1:hover, h2:hover {
  transform: scale(1.03);
}

/* Botões estilo gamer */
button, .btn, input[type="submit"] {
  background: linear-gradient(90deg, #00fff7, #0055ff);
  color: #0d0d0d;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,255,247,0.3);
  transition: all 0.3s ease;
}
button:hover, .btn:hover, input[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,247,0.6);
}

/* Cards e containers */
.card, .widget, .post, .entry {
  background: #1a1a1a;
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 12px rgba(0,255,247,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover, .widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 24px rgba(0,255,247,0.3);
}

/* Inputs / Forms */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  background: #0f0f0f;
  color: #fff;
  border: 1px solid #2f2f2f;
  padding: 10px 15px;
  border-radius: 6px;
  width: 100%;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: #00fff7;
  box-shadow: 0 0 8px #00fff7;
  outline: none;
}

/* Animação suave em entradas */
section, article, header, footer {
  animation: fadeIn 0.6s ease-in-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */