.elementor-kit-7{--e-global-color-primary:#1F335C;--e-global-color-secondary:#EE8637;--e-global-color-text:#212121;--e-global-color-accent:#EE8637;--e-global-color-80d7fe9:#FFFFFF;--e-global-color-0c6c214:#D9D8D5;--e-global-color-9141e43:#F9F9F9;--e-global-typography-primary-font-family:"graphie";--e-global-typography-primary-font-size:22px;--e-global-typography-primary-font-weight:600;--e-global-typography-primary-text-transform:uppercase;--e-global-typography-primary-line-height:28px;--e-global-typography-secondary-font-family:"graphie";--e-global-typography-secondary-font-size:18px;--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-line-height:24px;--e-global-typography-text-font-family:"graphie";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:24px;--e-global-typography-accent-font-family:"graphie";--e-global-typography-accent-font-size:18px;--e-global-typography-accent-font-weight:400;--e-global-typography-accent-line-height:24px;}.elementor-kit-7 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){--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-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 *//* === Botão Máximo NEO (Elementor) === */
/* Paleta oficial */
:root{
  --max-azul: #0F2B59;
  --max-azul-2: #26578C;
  --max-laranja: #ED8738;  /* +vibrante */
  --max-laranja-2: #F2AB63;/* apoio */
}

/* Base do botão */
.elementor-widget-button.btn-maximo-neo .elementor-button{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 4px!important;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(135deg, var(--max-laranja) 0%, var(--max-laranja-2) 100%);
  border: 1px solid rgba(255,255,255,.65); /* costura branca do menu */
  box-shadow:
    0 8px 18px rgba(237,135,56,.25), /* glow quente */
    inset 0 1px 0 rgba(255,255,255,.25); /* brilho interno */
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  overflow: hidden;
  z-index: 0;
}

/* Conteúdo acima dos efeitos */
.elementor-widget-button.btn-maximo-neo .elementor-button > span{
  position: relative;
  z-index: 3;
}

/* Aro de glow dinâmico (gira lentamente) */
.elementor-widget-button.btn-maximo-neo .elementor-button::before{
  content:"";
  position:absolute; inset:-2px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(237,135,56,.0),
    rgba(237,135,56,.35),
    rgba(242,171,99,.0),
    rgba(237,135,56,.35),
    rgba(237,135,56,.0)
  );
  filter: blur(10px);
  animation: max-neo-rotate 6s linear infinite;
  z-index: 1;
  pointer-events: none;
}

/* Faixa de brilho que varre no hover */
.elementor-widget-button.btn-maximo-neo .elementor-button::after{
  content:"";
  position:absolute;
  top:0; bottom:0; left:-30%;
  width:30%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.35) 50%,
    rgba(255,255,255,0) 100%
  );
  filter: blur(2px);
  opacity: 0;
  z-index: 2;
  transition: opacity .25s ease, left .8s cubic-bezier(.2,.7,.2,1);
}

/* Hover: mais relevo, varredura e leve zoom */
.elementor-widget-button.btn-maximo-neo .elementor-button:hover{
  box-shadow:
    0 10px 28px rgba(237,135,56,.35),
    inset 0 1px 0 rgba(255,255,255,.35);
  transform: translateY(-1px);
}
.elementor-widget-button.btn-maximo-neo .elementor-button:hover::after{
  opacity: 1;
  left: 130%;
}

/* Active: feedback rápido */
.elementor-widget-button.btn-maximo-neo .elementor-button:active{
  transform: translateY(0) scale(.98);
  filter: brightness(.98);
}

/* Focus visível (acessibilidade) */
.elementor-widget-button.btn-maximo-neo .elementor-button:focus{
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(255,255,255,.25),
    0 0 0 6px rgba(237,135,56,.35);
}

/* Redução de movimento */
@media (prefers-reduced-motion: reduce){
  .elementor-widget-button.btn-maximo-neo .elementor-button::before,
  .elementor-widget-button.btn-maximo-neo .elementor-button::after{
    animation: none;
    transition: none;
  }
}

/* Animação do aro */
@keyframes max-neo-rotate{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* Variante “Outline NEO” para fundos claros (opcional) 
   Adicione também a classe: btn-maximo-neo-outline */
.elementor-widget-button.btn-maximo-neo.btn-maximo-neo-outline .elementor-button{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.8);
}
.elementor-widget-button.btn-maximo-neo.btn-maximo-neo-outline .elementor-button:hover{
  background: linear-gradient(135deg, var(--max-azul) 0%, var(--max-azul-2) 100%);
  border-color: transparent;
}


/**/
/**/
/**/

/* ===== Glass Header Máximo ===== */
:root{
  --max-azul: #0F2B59;
  --max-azul-2: #26578C;
  --max-laranja: #ED8738;
  --max-laranja-2: #F2AB63;
  --glass-bg: rgba(15, 43, 89, 0.45);        /* azul principal translúcido */
  --glass-bg-strong: rgba(15, 43, 89, 0.78);  /* versão mais sólida ao rolar */
  --glass-border: rgba(255,255,255,.22);
  --glass-inner: rgba(255,255,255,.15);       /* brilho interno */
}

/* Seção do header */
.header-glass{
  position: sticky; top: 0; z-index: 999;
  background: linear-gradient(180deg, var(--glass-bg) 0%, rgba(15,43,89,0.35) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); /* Safari */
  border-bottom: 1px solid var(--glass-border);
  box-shadow:
    0 10px 30px rgba(0,0,0,.18),
    inset 0 1px 0 var(--glass-inner);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Quando ficar sticky (Elementor adiciona esta classe automaticamente) */
.elementor-sticky--effects.header-glass{
  background: linear-gradient(180deg, var(--glass-bg-strong) 0%, rgba(15,43,89,0.85) 100%);
  border-bottom-color: rgba(255,255,255,.28);
  box-shadow:
    0 12px 34px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
}

/* Ajuste do container interno para não “colar” nas bordas */
.header-glass .elementor-container,
.header-glass .e-con{
  padding-top: 14px; padding-bottom: 14px;
}

/* ===== Links do menu (Elementor Nav Menu) ===== */
.header-glass .elementor-nav-menu a{
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  position: relative;
  transition: color .2s ease, opacity .2s ease;
}

/* Underline de destaque (laranja) tipo Agora */
.header-glass .elementor-nav-menu a::after{
  content:""; position:absolute; left:0; right:0; bottom:-8px; height:2px;
  background: linear-gradient(90deg, var(--max-laranja) 0%, var(--max-laranja-2) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.header-glass .elementor-nav-menu a:hover::after,
.header-glass .elementor-nav-menu .current-menu-item > a::after{
  transform: scaleX(1);
}

/* Hover de link com brilho sutil */
.header-glass .elementor-nav-menu a:hover{
  color:#fff; opacity: .95;
  text-shadow: 0 0 12px rgba(242,171,99,.35);
}

/* Botão/CTA do header (caso use o widget de botão do Elementor) */
.header-glass .elementor-widget-button .elementor-button{
  border-radius: 999px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--max-laranja) 0%, var(--max-laranja-2) 100%);
  color:#fff; border:1px solid rgba(255,255,255,.65);
  box-shadow: 0 8px 18px rgba(237,135,56,.28), inset 0 1px 0 rgba(255,255,255,.25);
  position: relative; overflow: hidden;
}
.header-glass .elementor-widget-button .elementor-button::after{
  content:""; position:absolute; top:0; bottom:0; left:-30%; width:30%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 100%);
  opacity:0; filter: blur(2px); transition: opacity .25s ease, left .8s cubic-bezier(.2,.7,.2,1);
}
.header-glass .elementor-widget-button .elementor-button:hover::after{ opacity:1; left:130%; }

/* ===== Submenus (dropdown) com vidro também ===== */
.header-glass .elementor-nav-menu--dropdown,
.header-glass .elementor-nav-menu .sub-menu{
  background: linear-gradient(180deg, rgba(15,43,89,.55) 0%, rgba(15,43,89,.35) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 18px 40px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.12);
  padding: 10px;
}

/* Links do submenu */
.header-glass .elementor-nav-menu .sub-menu a{
  color:#fff; padding:10px 14px; border-radius:10px;
}
.header-glass .elementor-nav-menu .sub-menu a:hover{
  background: rgba(255,255,255,.06);
  text-shadow: 0 0 10px rgba(242,171,99,.25);
}

/* ===== Mobile ===== */
@media (max-width:1024px){
  .header-glass{
    background: linear-gradient(180deg, var(--glass-bg-strong) 0%, rgba(15,43,89,0.9) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  /* painel off-canvas/dropdown mobile */
  .header-glass .elementor-nav-menu--dropdown{
    border-radius:16px;
    margin-top:10px;
  }
}

/* ===== Fallback leve (navegadores sem backdrop-filter) ===== */
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))){
  .header-glass{
    background: rgba(15,43,89,.9);
  }
}


/**/
/**/
/**/

/* ===== Glow no underline do menu (Máximo) ===== */
.elementor-nav-menu--main.e--pointer-underline .elementor-item:after {
  background: linear-gradient(90deg, #ED8738 0%, #F2AB63 100%) !important; /* laranja da marca */
  height: 2px !important;
  box-shadow: 0 0 8px rgba(237,135,56,.6), 0 0 16px rgba(242,171,99,.4);
  transition: box-shadow .25s ease, background .25s ease;
}

/* Glow mais intenso no hover */
.elementor-nav-menu--main.e--pointer-underline .elementor-item:hover:after,
.elementor-nav-menu--main.e--pointer-underline .elementor-item.elementor-item-active:after {
  box-shadow: 0 0 10px rgba(237,135,56,.8), 0 0 22px rgba(242,171,99,.6);
}/* End custom CSS */