.elementor-kit-18{--e-global-color-primary:#021328;--e-global-color-secondary:#54595F;--e-global-color-text:#4D4D4D;--e-global-color-accent:#F1C387;--e-global-typography-primary-font-family:"Playfair Display";--e-global-typography-primary-font-weight:700;--e-global-typography-primary-line-height:1.25em;--e-global-typography-primary-letter-spacing:0px;--e-global-typography-secondary-font-family:"Playfair Display";--e-global-typography-secondary-font-size:18px;--e-global-typography-secondary-font-weight:500;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:500;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-weight:500;color:var( --e-global-color-text );font-size:15px;line-height:1.8em;}.elementor-kit-18 button,.elementor-kit-18 input[type="button"],.elementor-kit-18 input[type="submit"],.elementor-kit-18 .elementor-button{background-color:var( --e-global-color-primary );font-weight:700;color:#FFFFFF;border-radius:200px 200px 200px 200px;padding:1.45em 1.7em 1.45em 1.7em;}.elementor-kit-18 button:hover,.elementor-kit-18 button:focus,.elementor-kit-18 input[type="button"]:hover,.elementor-kit-18 input[type="button"]:focus,.elementor-kit-18 input[type="submit"]:hover,.elementor-kit-18 input[type="submit"]:focus,.elementor-kit-18 .elementor-button:hover,.elementor-kit-18 .elementor-button:focus{background-color:var( --e-global-color-accent );color:#FFFFFF;}.elementor-kit-18 e-page-transition{background-color:#000000;}.elementor-kit-18 h1{font-size:42px;font-weight:700;line-height:1.2em;}.elementor-kit-18 h2{font-size:37px;font-weight:700;line-height:1.2em;}.elementor-kit-18 h3{font-size:26px;font-weight:700;line-height:1.2em;}.elementor-kit-18 h4{font-size:22px;font-weight:700;}.elementor-kit-18 h5{font-size:20px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1380px;}.e-con{--container-max-width:1380px;--container-default-padding-top:5%;--container-default-padding-right:5%;--container-default-padding-bottom:5%;--container-default-padding-left:5%;}.elementor-widget:not(:last-child){--kit-widget-spacing: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-kit-18 h1{font-size:40px;}.elementor-kit-18 h2{font-size:35px;}.elementor-kit-18 h4{font-size:21px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-18{--e-global-typography-text-font-size:16px;}.elementor-kit-18 h1{font-size:30px;}.elementor-kit-18 h2{font-size:25px;}.elementor-kit-18 h4{font-size:21px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root{
  /* Definindo as cores específicas do gradiente */
  --gradiente-cor-1: #ab4448;
  --gradiente-cor-2: #6C7C54;
  --gradiente-angulo: 45deg;
  --gradiente-duracao: 5s;
}

/* ====== Texto com gradiente ====== */
.gradiente{
  color: transparent;
  background: linear-gradient(var(--gradiente-angulo),
                              var(--gradiente-cor-1),
                              var(--gradiente-cor-2));
  background-size: 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animateGradient var(--gradiente-duracao) ease-in-out infinite;
  display: inline-block;
}

/* ====== Fundo com gradiente animado ====== */
.gradiente-bg{
  background-image: linear-gradient(var(--gradiente-angulo),
                                    var(--gradiente-cor-1),
                                    var(--gradiente-cor-2));
  background-size: 300%;
  animation: animateGradient var(--gradiente-duracao) ease-in-out infinite;
}

/* ====== Animações ====== */
@keyframes animateGradient{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.flutuante{
  animation: sobeDesce 4s ease-in-out infinite;
}
@keyframes sobeDesce{
  0%   { transform: translateY(10px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(10px); }
}

/* Respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce){
  .gradiente, .gradiente-bg{ animation: none; background-position: 50% 50%; }
}/* End custom CSS */