.elementor-kit-13{--e-global-color-primary:#011342;--e-global-color-secondary:#011342;--e-global-color-text:#5C5C5C;--e-global-color-accent:#00FFFF;--e-global-color-0facb0c:#FFFFFF;--e-global-color-f4e073c:#F3F3F3;--e-global-color-9f6639b:#011342C2;--e-global-typography-primary-font-family:"Marcellus";--e-global-typography-primary-font-size:47px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Questrial";--e-global-typography-secondary-font-size:19px;--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Nunito";--e-global-typography-text-font-size:15px;--e-global-typography-text-font-weight:500;--e-global-typography-accent-font-family:"Questrial";--e-global-typography-accent-font-size:15px;--e-global-typography-accent-font-weight:600;--e-global-typography-9958d48-font-family:"Questrial";--e-global-typography-9958d48-font-size:20px;--e-global-typography-9958d48-font-weight:500;--e-global-typography-9958d48-line-height:16px;--e-global-typography-a331aaf-font-family:"Questrial";--e-global-typography-a331aaf-font-size:19px;--e-global-typography-a331aaf-font-weight:500;--e-global-typography-53ea1c6-font-family:"Nunito";--e-global-typography-53ea1c6-font-size:16px;--e-global-typography-53ea1c6-font-weight:500;}.elementor-kit-13 button,.elementor-kit-13 input[type="button"],.elementor-kit-13 input[type="submit"],.elementor-kit-13 .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-size:var( --e-global-typography-accent-font-size );font-weight:var( --e-global-typography-accent-font-weight );color:var( --e-global-color-primary );border-radius:30px 30px 30px 30px;}.elementor-kit-13 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-kit-13 button,.elementor-kit-13 input[type="button"],.elementor-kit-13 input[type="submit"],.elementor-kit-13 .elementor-button{font-size:var( --e-global-typography-accent-font-size );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-13{--e-global-typography-primary-font-size:38px;}.elementor-kit-13 button,.elementor-kit-13 input[type="button"],.elementor-kit-13 input[type="submit"],.elementor-kit-13 .elementor-button{font-size:var( --e-global-typography-accent-font-size );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.titulo-com-linha h2 {
    font-family: 'Marcellus', serif; /* Certifique-se de que a fonte Marcellus esteja carregada */
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
    position: relative;
    text-align: center; /* Centraliza o texto */
    opacity: 0; /* Começa invisível para a animação */
    transform: translateY(20px); /* Começa ligeiramente deslocado para baixo */
    animation: fadeInUp 1s ease forwards; /* Animação de entrada */
    animation-delay: var(--delay); /* Atraso personalizado para cada título */
}

.titulo-com-linha h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background-color: #17f9ff;
    position: absolute;
    bottom: -5px;
    left: 0;
    transform: scaleX(0); /* Inicia escondido para a animação */
    transform-origin: left; /* Expande a partir da esquerda */
    animation: expandLine 1s ease forwards; /* Animação de expansão */
    animation-delay: var(--delay); /* Atraso personalizado para cada linha */
}

/* Keyframes para as animações */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .titulo-com-linha h2 {
        font-size: 18px;
    }

    .titulo-com-linha h2::after {
        height: 3px;
    }
}

/* Adiciona um atraso diferente para cada título */
.titulo-com-linha h2:nth-child(1) { --delay: 0s; }
.titulo-com-linha h2:nth-child(2) { --delay: 0.2s; }
.titulo-com-linha h2:nth-child(3) { --delay: 0.4s; }
.titulo-com-linha h2:nth-child(4) { --delay: 0.6s; }
.titulo-com-linha h2:nth-child(5) { --delay: 0.8s; }
.titulo-com-linha h2:nth-child(6) { --delay: 1s; }
.titulo-com-linha h2:nth-child(7) { --delay: 1.2s; }/* End custom CSS */