.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;background-color:#000000;}.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){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);}@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 *//* Configurar o input com espaço para o botão */
#email {
    position: relative; /* Necessário para o posicionamento do botão */
    padding-right: 50px; /* Espaço para o botão */
    width: 100%; /* Garante que o input ocupe toda a largura disponível */
    box-sizing: border-box;
}

/* Posicionar o botão dentro do input */
#submit {
    position: absolute;
    top: 50%; /* Centraliza verticalmente */
    right: 20px; /* Posiciona o botão à direita dentro do input */
    transform: translateY(-125%); /* Ajusta para o centro vertical */
    cursor: pointer;
}

/* Remover estilos no mobile */
@media (max-width: 768px) {
    #email {
        position: static; /* Reseta o posicionamento */
        padding-right: 0; /* Remove espaço extra */
    }

    #submit {
        position: static; /* Posiciona o botão normalmente */
        transform: none; /* Remove o deslocamento */
        top: auto; /* Reseta o alinhamento vertical */
        right: auto; /* Reseta o alinhamento horizontal */
        margin-top: 10px; /* Adiciona espaçamento, se necessário */
    }
}



  #button {
    animation: brilho 3.4s infinite;
    background-image: linear-gradient(45deg, #9C8B5A, #F2D37B, #9C8B5A, #F2D37B);
    background-size: 400% 200%;
    transition: transform 0.8s, box-shadow 0.8s;
  }

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

  #button:hover {
    box-shadow: 0 0 15px 1px #F2D37B;
    transform: scale(1.05);
  }
  
 #link {
    opacity: 1;
    transition: opacity 0.3s ease !important;
}

#link:hover {
    opacity: 0.5 !important;
}/* End custom CSS */