.elementor-kit-10{--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;}.elementor-kit-10 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:16px;}.elementor-element{--widgets-spacing:16px 16px;--widgets-spacing-row:16px;--widgets-spacing-column:16px;}{}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 *//*EVITAR BARRA DE SCROLL DUPLA*/
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important
}
/*________________________*/

/*RETIRAR MARGEM INFERIOR DOS TEXTOS*/
p {
    margin-bottom: 0px !important;
}

/* Sombra container */
.sombra {
background: #FFF;
box-shadow: 0 27px 37px 0 rgba(3, 29, 64, 0.07);
}
.sombraimg img {
   
  /* Drop shadow para imagens com transparência */
  -webkit-filter: drop-shadow(0px 37px 67px 0px rgba(3, 29, 64, 0.20));
  filter: drop-shadow(0px 37px 67px 0px rgba(3, 29, 64, 0.20));
}
/*________________________*/

/*BALANÇO DOS TEXTOS*/
.balanco {
    text-wrap: balance;
}
/*________________________*/


/*BOTÃO PRINCIPAL*/
.submit-button .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 12px;
  background: #12568F;
  cursor: pointer;
  transition: all 0.3s ease; /* Transição mais suave */
  position: relative;
}

.submit-button .elementor-button-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
/* Estado hover do botão */
.submit-button .elementor-button:hover {
  box-shadow: 0 1px 16px 0 rgba(20, 84, 130, 0.30);
  transform: translateY(-1px); /* Leve elevação no hover */
  color: #12568F;
}
.submit-button .elementor-button:hover #seta,
.submit-button .elementor-button:hover #seta * {
    color: #12568F;
    fill: #12568F;
}
/* Animação da seta no hover */
.submit-button .elementor-button:hover .elementor-button-icon {
  animation: slideArrow 1.5s ease infinite;
}

/* Reset suave da animação ao sair do hover */
.submit-button .elementor-button:not(:hover) .elementor-button-icon {
  animation: none;
  transform: translateX(0);
}

/* Keyframes otimizados */
@keyframes slideArrow {
  0%, 100% { 
    transform: translateX(0);
  }
  50% { 
    transform: translateX(8px);
  }
}
/*________________________*/

/*BOTÃO FLUTUANTE HORÁRIO*/
/* fixa o botão na página */
.btn-horario{
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  margin: 0 !important;          /* evita empurrões do Elementor */
}

/* caixa exata do ícone */
.btn-horario .elementor-icon{
  position: relative;             /* base pro ::before */
  display: inline-grid;           /* centraliza o SVG */
  place-items: center;
  width: 64px;                    /* ajuste o tamanho */
  height: 64px;
  line-height: 0;                 /* remove “folga” vertical */
  vertical-align: middle;
}

/* garante que o SVG ocupe 100% da caixa */
.btn-horario .elementor-icon svg,
.btn-horario .elementor-icon i{
  width: 100%;
  height: 100%;
  display: block;
}

/* pulso perfeitamente centralizado atrás do ícone */
.btn-horario .elementor-icon::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;                    /* seu 120% */
  height: 120%;
  border-radius: 50%;
  background: #E95010;
  transform: translate(-50%, calc(-50% + var(--nudge, 0px)));
  z-index: -1;
  opacity: 0.6;
  animation: pulse 1.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, calc(-50% + var(--nudge, 0px))) scale(0.9);
    opacity: 0.6;
  }
  70% {
    transform: translate(-50%, calc(-50% + var(--nudge, 0px))) scale(1.2);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, calc(-50% + var(--nudge, 0px))) scale(0.9);
    opacity: 0;
  }
}
/*-----------------------*/

/* SCROLL - AQUI VOCÊ DEFINE A LARGURA A BARRA DE ROLAGEM */
::-webkit-scrollbar {
    width: 8px;
}

/* AQUI VOCÊ DEFINE A COR DE FUNDO DO SCROLL */
::-webkit-scrollbar-track {
    background: #000;
}
  
/* AQUI VOCÊ DEFINE O ARREDONDAMENTO DAS BORDAS DA BARRA, COR DE FUNDO E TAMBÉM BORDA DO SCROLL */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background: linear-gradient(180deg, #384885  0%, #E95010 100%);

    ;
    border: 2px solid #000028; 
}

/* O MESMO DE CIMA, PORÉM APLICADO AO HOVER (QUANDO PASSA O MOUSE ENCIMA) */
::-webkit-scrollbar-thumb:hover {
    -webkit-border-radius: 6px;
    border-radius: 6px;
     background: linear-gradient(0deg, #384885  0%, #E95010 100%);
    border: 2px solid #000028; 
}

/* AQUI VOCÊ MUDA A COR DA SELEÇÃO DE TEXTOS DA PÁGINA */
::selection {
    -webkit-text-fill-color: #FFFDFA; 
    color: #FFFDFA; 
    background: #437EB1;
}
/*________________________*/

/* LARGURA ÚTIL AUTOMÁTICA */

/* 🔒 GARANTE QUE PADDING NÃO QUEBRE A LARGURA */
.e-con,
.e-con-boxed,
.e-con-inner {
    box-sizing: border-box;
}

/* WIDESCREEN E DESKTOP */
@media (min-width: 1367px) {
    .e-con {
        --content-width: 1280px;
        max-width: 100%;
    }
}

/* LAPTOP */
@media (min-width: 1201px) and (max-width: 1366px) {
    .e-con {
        --content-width: 1100px;
        max-width: 100%;
    }
}

/* TABLET PAISAGEM */
@media (min-width: 1025px) and (max-width: 1200px) {
    .e-con {
        --content-width: 924px;
        max-width: 100%;
    }
}

/* TABLET RETRATO */
@media (min-width: 881px) and (max-width: 1024px) {
    .e-con {
        --content-width: 780px;
        max-width: 100%;
    }
}

/* CELULAR PAISAGEM */
@media (min-width: 768px) and (max-width: 880px) {
    .e-con {
        --content-width: 728px;
        max-width: 100%;
    }
}

/* CELULAR RETRATO */
@media (max-width: 767px) {
    .e-con {
        --content-width: 380px;
        max-width: 100%;
    }
}/* End custom CSS */