/*
Theme Name: Salient child Theme
Description: This is a custom child theme for Salient
Theme URI: https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI: https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/ 

:root {
  --blue-main: #233dec;
  --blue-dark: #19045a;
  --green: #5cf0b3;
  --gray: #f5f5f5;
}
#header-secondary-outer ul > li:not(.megamenu) ul.sub-menu a:focus {
  background: #fff !important;
}
/* *** FONTS *** */
@font-face {
  font-family: "SpaceGrotesk";
  src: url("/wp-content/themes/salient-child/fonts/SpaceGrotesk-Light.woff")
    format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SpaceGrotesk";
  src: url("/wp-content/themes/salient-child/fonts/SpaceGrotesk-Regular.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SpaceGrotesk";
  src: url("/wp-content/themes/salient-child/fonts/SpaceGrotesk-Medium.woff")
    format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SpaceGrotesk";
  src: url("/wp-content/themes/salient-child/fonts/SpaceGrotesk-SemiBold.woff")
    format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SpaceGrotesk";
  src: url("/wp-content/themes/salient-child/fonts/SpaceGrotesk-Bold.woff")
    format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* *** END FONTS *** */

/* *** MENU + NAV *** */

#header-outer.transparent #top nav > ul > li > a,
#header-outer.transparent #top nav > .sf-menu > li.menu-item > a,
#header-outer:not([data-format="left-header"])
  #top
  nav
  > ul
  > li:not(.megamenu)
  ul.sub-menu
  a {
  color: var(--blue-main);
}
div#header-secondary-outer {
  background: var(--blue-main);
}
header#top {
  position: fixed;
  margin-top: 20px;
  padding-left: 2%;
  padding-right: 2%;
  transition: margin-top 0.3s ease;
}
body.header-is-scrolled header#top {
  margin-top: -3vh !important;
}
.MenuMobile {
    margin-top: 4vh;
}
@media (min-width: 1000px) {
  header .container {
    background: white;
    border-radius: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  }
}

/* *** END MENU + NAV *** */

/* *** MENUS 
.sf-menu a {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}
.sf-menu a:hover,
.sf-menu .current_page_item a {
  font-weight: 500 !important;
}
span.menu-title-text:after {
  display: none !important;
}

#header-secondary-outer nav > ul > li > a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration-line: underline;
}
#header-secondary-outer nav > ul > li > a:hover {
  color: #fff;
}
.menu-sub-menu span.menu-title-text {
  font-size: 18px !important;
  font-style: normal;
  font-weight: 400;
}*** */
/* *** FIM MENUS *** */

/* *** BOTÕES *** */
/* arredondamento global quando o estilo for slightly_rounded */
body[data-button-style*="slightly_rounded"] .nectar-button.button-blue-bullet,
body[data-button-style*="slightly_rounded"] .nectar-button.button-white-bullet {
  border-radius: 50px !important;
}

a.button-blue-bullet,
a.button-white-bullet {
  display: inline-flex;
  align-items: center; /* mantém texto e bolinha centralizados */
  gap: 20px;
  padding: 15px 25px;
  font-family: "SpaceGrotesk", sans-serif;
  font-weight: 400 !important;
  font-size: 20px !important;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

/* bolinha */
a.button-blue-bullet::after,
.rev-btn::after,
a.button-white-bullet::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease !important;
  position: relative;
  z-index: 0;
}

/* seta */
a.button-blue-bullet::before,
.rev-btn::before,
a.button-white-bullet::before {
  content: "→";
  font-size: 14px;
  color: var(--blue-main);
  opacity: 0;
  transition: opacity 0.3s ease, font-size 0.3s ease;
  font-weight: 400 !important;
  /* centralização perfeita */
  position: absolute;
  top: 45%; /* centro exato */
  right: 20px;
  transform: translateY(-50%); /* corrige o deslocamento do baseline */
  line-height: 1; /* evita desalinhamentos em zooms diferentes */
  pointer-events: none; /* evita interferir no hover */
  z-index: 1;
}

/* hover */
a.button-blue-bullet:hover::after,
.rev-btn:hover::after {
  transform: scale(4);
  background-color: white;
}
a.button-white-bullet:hover::after {
  transform: scale(4);
  background-color: var(--green);
}
a.button-blue-bullet:hover::before,
.rev-btn:hover::before,
a.button-white-bullet:hover::before {
  font-size: 20px;
  color: var(--blue-main);
  opacity: 1 !important;
}

#header-secondary-outer nav .menu-title-text:not(.sub-menu .menu-title-text) {
  color: #fff !important;
  font-size: 14px !important;
}
#header-outer #top nav > ul > li > a.regular-button {
  color: #fff !important;
}
#header-outer #top nav > ul > li > a.regular-button:hover {
  color: var(--blue-main) !important;
}
.nectar-button[data-color-override="false"].regular-button.button-blue-bullet:hover,
.nectar-button[data-color-override="false"].regular-button.button-white-bullet:hover {
  background: var(--green) !important;
  color: var(--blue-main) !important;
}
/* *** END BOTÕES *** */

/* *** GERAL *** */

h1 {
  font-weight: 400 !important;
}
.bg-green-gradient .row-bg-wrap .inner-wrap.row-bg-layer {
  background: radial-gradient(
    28.99% 50% at 50% 50%,
    #78fcc8 0%,
    #cefeeb 30.9%,
    transparent 91.75%
  );
}

h3.abs-btm {
  position: absolute;
  bottom: 25px;
  left: 25px;
}
.bg-cover .column-image-bg {
  background-size: cover;
}
.bg-no-repeat .column-image-bg {
  background-repeat: no-repeat;
}
.bg-contain .row-bg.viewport-desktop.using-image {
  background-size: contain;
}

.green-hover .column-image-bg {
  position: relative;
}

.green-hover .column-image-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(120, 252, 200, 0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.green-hover:hover .column-image-bg::after {
  opacity: 0.7;
}
.green-hover h3 span {
  transition: color 0.3s ease;
}
.green-hover:hover h3 span {
  color: var(--blue-dark) !important;
}
#footer-outer {
  display: none !important;
}
.wpml-ls-statics-footer.wpml-ls.wpml-ls-legacy-list-horizontal {
  display: none !important;
}
/* *** END GERAL *** */

/* *** HP *** */

.heroSlider .flickity-slider .cell {
  padding: 0px !important;
}
.heroSlider
  .nectar-flickity.nectar-carousel.nectar-carousel:not(.masonry)
  .flickity-viewport {
  margin: 0px !important;
}

.hpCarousel
  .nectar-flickity[data-control-style="material_pagination"]
  .flickity-page-dots {
  bottom: 25px !important;
  display: none !important;
}

.item-main h3.post-heading span {
  color: var(--blue-main) !important;
  font-size: 30px !important;
}
.item-main .meta-date {
  color: var(--blue-dark) !important;
  font-size: 16px !important;
}
.nectar-post-grid[data-text-hover-color="light"]
  .nectar-underline
  .post-heading {
  background-image: linear-gradient(
    to right,
    var(--blue-main) 0,
    var(--blue-main) 100%
  );
}
.nectar-post-grid-wrap[data-style="content_under_image"]
  .nectar-post-grid[data-card="yes"]
  .nectar-post-grid-item
  .content {
  padding: 4% 5% !important;
}
.style-underline {
  background: #78fcc8;
  padding: 8px 15px;
  color: #000 !important;
  border-radius: 25px;
  font-size: 16px;
}
.flip-box-front,
.flip-box-back {
  border-radius: 20px;
}
/* *** FIM HP *** */

/* ***  FOOTER *** */
.nectar-global-section.before-footer {
  background: transparent !important;
}
.fs-16 * {
  font-size: 16px !important;
  line-height: 26px !important;
}
.fs-20 * {
  font-size: 20px !important;
  line-height: 30px !important;
}
.m-15 {
  margin: 15px !important;
}
.ul {
  text-decoration: underline !important;
}
.before-footer a {
  opacity: 1 !important;
}
.email-submit {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 40px !important;

  overflow: hidden;
  background-color: #190a4d; /* fundo roxo */
  max-width: 700px;
}

.email-submit__input {
  flex: 1;
  border: none;
  padding: 5px !important;
  font-size: 16px;
  background: transparent !important;
  color: #fff;
}

.email-submit__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
input[type="email"].email-submit__input:focus {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-color: transparent !important;
}

.email-submit__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: none;
  padding: 8px 24px;
  background: #fff !important;
  color: var(--blue-main) !important;
  border-radius: 40px !important;
  cursor: pointer;
  font-family: "SpaceGrotesk", sans-serif;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.email-submit__button:hover {
  background: var(--green) !important;
  color: var(--blue-main) !important;
}

/* bolinha */
.email-submit__button .dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* seta dentro da bolinha (oculta por padrão) */
.email-submit__button .dot::before {
  content: "→";
  font-size: 6px;
  color: var(--blue-main);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* efeitos no hover */
.email-submit__button:hover .dot {
  transform: scale(4);
  background: #fff;
}

.email-submit__button:hover .dot::before {
  opacity: 1;
}
.flex-box .wpb_wrapper {
  display: flex;
  justify-content: space-between;
}
/* *** FIM FOOTER *** */

/* *** SOLUÇÕES *** */

.solucoesTabs .ui-tabs-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.solucoesTabs li.tab-item {
  color: var(--blue-main) !important;
}
.solucoesTabs li.tab-item .active-tab {
  font-weight: 600;
}
/* *** FIM SOLUÇÕES *** */

/* *** FORM *** */
.fale-conosco-section .form-element-html input,
.fale-conosco-section .form-element-html textarea {
  background: transparent !important;
  border: 1px solid white !important;
  border-radius: 40px !important;
  color: white !important;
  opacity: 1 !important;
}
.fale-conosco-section .form-element-html select {
  background: transparent !important;
  border: 1px solid white !important;
  border-radius: 40px !important;
  color: white !important;
  opacity: 1 !important;
}
.fale-conosco-section .form-element-html select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url('https://incentea.com/pt/wp-content/uploads/sites/3/2025/11/icon-arrow-down.png');
  background-repeat: no-repeat !important;
  background-position: center right 25px !important;
}
.fale-conosco-section .form-element-html select::-ms-expand { display: none; }
.fale-conosco-section .form-element-html select option {
  color: black !important;
  background-color: white !important;
}

.paginaContactos .form-element-html input,
.paginaContactos .form-element-html textarea {
  background: transparent !important;
  border: 1px solid var(--blue-dark) !important;
  border-radius: 40px !important;
  color: var(--blue-dark) !important;
  opacity: 1 !important;
}

.nectar-global-section.before-footer .form-element-html input {
  background: transparent !important;
  border: 1px solid #fff !important;
  border-radius: 40px !important;
  color: #fff !important;
  opacity: 1 !important;
}

.nectar-global-section.before-footer label span {
  color: #fff;
}

.nectar-global-section.before-footer .form-element .form-element-html {
  padding-bottom: 0px !important;
}

.fale-conosco-section .form-element-html input::placeholder,
.fale-conosco-section .form-element-html textarea::placeholder {
  opacity: 1 !important;
}
html .formcraft-css .fc-form .form-element.error-field > div {
  border-radius: 40px;
}
.fale-conosco-section .checkbox-cover * {
  color: #fff !important;
}
.paginaContactos .checkbox-cover * {
  color: var(--blue-dark);
}
.paginaContactos input::placeholder,
.paginaContactos textarea::placeholder {
  color: var(--blue-dark) !important;
}
.paginaContactos input[type="checkbox"]:checked {
  background: var(--blue-dark) !important;
}

body[data-button-style*="slightly_rounded"] button.submit-button {
  border-radius: 50px !important;
}
/* estilo base do botão */
.form-element-html button.submit-button {
  display: inline-flex;
  align-items: center; /* centraliza verticalmente */
  gap: 20px; /* espaço entre texto e bolinha */
  padding: 15px 25px;
  font-family: "SpaceGrotesk", sans-serif;
  font-weight: 400 !important;
  font-size: 20px !important;
  background: var(--blue-main) !important;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

/* bolinha */
.form-element-html button.submit-button::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  flex-shrink: 0; /* evita a bolinha encolher */
  transition: transform 0.3s ease, background 0.3s ease;
}

/* seta dentro da bolinha (oculta por padrão) */
.form-element-html button.submit-button::before {
  content: "→";
  font-size: 14px;
  color: #000;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute; /* agora usamos absolute mas relativo à bolinha */
  right: 20px; /* mesma margem que o padding direito */
  top: 48%;
  transform: translateY(-50%);
  z-index: 1;
}

/* hover bolinha + seta */
.form-element-html button.submit-button:hover::after {
  transform: scale(4);
  background-color: white;
}

.form-element-html button.submit-button:hover::before {
  opacity: 1;
}

/* hover geral no botão */
.form-element-html button.submit-button:hover {
  background: var(--green) !important;
  color: var(--blue-main) !important;
}
/* *** FIM FORM *** */

.team-row {
  margin-bottom: 5px !important;
}

/* *** FIM FORM *** */

.toggle.accent-color {
  border-radius: 20px;
  padding: 5px 15px !important;
}
.toggle-title a.toggle-heading {
  padding: 15px !important;
}
.light div[data-style="minimal"] .toggle {
  border: 1px solid var(--blue-main);
  margin-bottom: 20px;
}
.toggle.accent-color.open {
  background: white;
}
.light div[data-style="minimal"] .toggle.open {
  border: 1px solid #fff;
}
/* *** FIM FORM *** */

/* *** Página Soluções *** */

.solucoes .nectar-post-grid-item.nectar-underline.animated-in, .solucoes .nectar-post-grid-item.nectar-underline {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.solucoes img.attachment-medium.size-medium.wp-post-image {
  border: 1px solid var(--gray);
  position: relative;
  border-radius: 20px;
}
.solucoes .nectar-post-grid-item-bg {
  padding: 10px;
}
.solucoes span.meta-excerpt {
  font-size: 20px !important;
}

.solucoes span.link_text {
  display: inline-flex;
  align-items: center;
  gap: 20px !important;
  padding: 5px 25px;
  font-family: "SpaceGrotesk", sans-serif;
  font-weight: 400 !important;
  font-size: 20px !important;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  background: var(--blue-main);
  border-radius: 40px;
  color: white !important;
}
.solucoes span.link_text::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--green); /* verde da bolinha */
  border-radius: 50%;
  display: inline-block;
  margin: 0px 15px;
  transition: transform 0.3s ease;
}
.solucoes
  .nectar-post-grid-item.nectar-underline.animated-in:hover
  span.link_text::after {
  transform: scale(2); /* cresce 60% */
}
.solucoes span.link_text svg {
  display: none !important;
}
.nectar-post-grid-filters.animated-in a {
  border: 1px solid var(--blue-main);
  color: var(--blue-main);
  padding: 10px !important;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 400;
}
.nectar-post-grid-filters.animated-in a.active {
  border: 1px solid var(--blue-main);
  background-color: var(--blue-main) !important;
  border-radius: 25px;
  color: #fff;
}
.wpb_row .nectar-post-grid-filters[data-active-color="accent-color"] a:after {
  display: none !important;
}
/* *** FIM Página Soluções *** */

/* *** Página COntactos *** */

.contactostabs li.tab-item a {
  padding: 5px 20px !important;
  background: transparent !important;
  color: var(--blue-main) !important;
  border: none !important;
  font-size: 20px;
}
.contactostabs li.tab-item,
.contactostabs .tabbed > ul li:last-child {
  padding: 5px;
  border: 1px solid var(--blue-main);
  border-radius: 40px;
  padding: 5px 20px !important;
  background: transparent;
  color: var(--blue-main) !important;
}
.contactostabs li.tab-item a span,
.contactostabs .tabbed > ul li:last-child a span {
  color: var(--blue-main) !important;
}
.contactostabs ul.wpb_tabs_nav.ui-tabs-nav.clearfix {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.contactostabs li.tab-item.active-tab {
  background: var(--green)!important;
  border: 1px solid var(--green) !important;
}
.wrapper-localizacoes .wpb_wrapper {
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
}
.wrapper-localizacoes .wpb_wrapper a.nectar-button {
  margin-top: auto !important;
  align-self: flex-start;
}
/* *** FIM Página COntactos *** */

/* *** NAV *** */

nav a.button-blue-bullet,
.rev-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 22px 25px !important;
  font-family: "SpaceGrotesk", sans-serif !important;
  font-weight: 400 !important;
  font-size: 20px !important;
  text-decoration: none !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  opacity: 1 !important;
}
nav > ul > li > a,
#header-outer.transparent #top nav > .sf-menu > li > a.button-blue-bullet {
  color: #fff !important;
  height: auto !important;
  max-height: 40px;
}
nav > ul > li > a,
#header-outer.transparent
  #top
  nav
  > .sf-menu
  > li
  > a.button-blue-bullet:hover {
  color: var(--blue-main) !important;
}
/* *** FIM NAV *** */

/* *** REV SLIDER *** */
.revslider-initialised {
  border-bottom-left-radius: 40px !important;
  border-bottom-right-radius: 40px !important;
}
.BannerBGSliderRevolution{
	min-height:85vh !important;
}
.BannerBGSliderRevolutionIMG{
	min-height:85vh !important;
}
.BannerPage, .SRBanner {
	min-height:85vh !important;
  border-bottom-left-radius: 40px !important;
  border-bottom-right-radius: 40px !important;
}
/* *** FIM REV SLIDER *** */

/* *** PÁGINA ARTIGO *** */

.single-post .padding-article {
  padding-top: 10% !important;
}
.single-post .meta-date {
  border: none !important;
  padding: 0 !important;
}
.single-post div#single-below-header {
  padding-left: 5% !important;
  padding-right: 5% !important;
}
.single-post span.meta-category a {
  pointer-events: none !important;
}
.single-post span.meta-category {
  display: flex;
  gap: 15px;
  width: fit-content;
}
.single-post span.meta-category a {
  padding: 7px !important;
  background: var(--green);
  border-radius: 40px;
  font-size: 16px !important;
}
.single-post h1.entry-title,
.mt-5 {
  margin-top: 3rem;
}

.single-post .container-wrap.no-sidebar .post-area {
  max-width: 100% !important;
}

.single-post .heading-title {
  border: none !important;
}
.single-post
  .blog_next_prev_buttons.vc_row-fluid.wpb_row.full-width-content.standard_section {
  display: none !important;
}
.single-post .post .content-inner {
  padding-bottom: 0 !important;
}
/* *** FIM PÁGINA ARTIGO *** */

/* *** PÁGINA PRODUTO *** */
.single-produto
  .blog_next_prev_buttons.vc_row-fluid.wpb_row.full-width-content.standard_section {
  display: none !important;
}
.single-produto .heading-title {
  display: none !important;
}
.single-produto .post-area {
  margin-top: 0px !important;
}
.beneficios-content .wpb_wrapper {
  padding: 0px 15px;
}
.coluna-beneficios .toggle {
  border: 1px solid var(--blue-main) !important;
  border-radius: 20px;
  padding: 0px 25px;
  margin-top: 15px;
}
.coluna-beneficios .toggle.open {
  background: var(--gray);
  border: 1px solid var(--gray) !important;
}

.coluna-beneficios .toggle > .toggle-title a {
  color: var(--blue-main);
}
.coluna-beneficios div[data-style="minimal"] .toggle > .toggle-title i:before {
  background-color: var(--green);
}
.coluna-beneficios div[data-style="minimal"] .toggle > .toggle-title i:after {
  background-color: var(--green);
}
.coluna-beneficios
  div[data-style="minimal"]
  .toggle.open
  > .toggle-title
  i:before {
  background-color: var(--blue-main);
}
.coluna-beneficios
  div[data-style="minimal"]
  .toggle.open
  > .toggle-title
  i:after {
  background-color: var(--blue-main);
}
.coluna-beneficios div[data-style*="minimal"] .toggle > .toggle-title i {
  border: none !important;
}
.carousel-text
  a.nectar-button.medium.regular.accent-color.regular-button.button-blue-bullet {
  width: fit-content !important;
}
.carousel-text .wpb_wrapper {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.carousel-text .wpb_text_column.wpb_content_element {
  margin-top: auto;
}

 .single-produto .vc_row.translate_y_10pct.formConcCoreConfig { transform: translateY(-5%) !important; }

.produtos-wrapper-builder .nectar-post-grid-item .content {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 300px;
}
.produtos-wrapper-builder .nectar-underline:hover h3 {
  background-size: 0px !important ;
}

.produtos-wrapper-builder .nectar-post-grid-item .item-main {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.produtos-wrapper-builder
  .nectar-post-grid-item
  .nectar-post-grid-item__read-more {
  margin-top: auto !important;
  align-self: flex-start !important;
  position: absolute !important;
  bottom: 20px !important;
  left: 20px !important;
}

.produtos-wrapper-builder .nectar-post-grid-item .item-main {
  padding-bottom: 60px !important; /* cria espaço para o botão */
}

/* *** FIM PÁGINA PRODUTO *** */

/* *** PÁGINA CASE STUDY *** */
.single-casestudies
  .blog_next_prev_buttons.vc_row-fluid.wpb_row.full-width-content.standard_section {
  display: none !important;
}
.nectar-post-grid-filters.animated-in a {
  margin-top: 15px;
}
.single-casestudies .heading-title {
  display: none !important;
}
.single-casestudies .post-area {
  margin-top: 0px !important;
}
.beneficios-content .wpb_wrapper {
  padding: 0px 15px;
}
.coluna-beneficios .toggle {
  border: 1px solid var(--blue-main) !important;
  border-radius: 20px;
  padding: 0px 25px;
  margin-top: 15px;
}
.coluna-beneficios .toggle.open {
  background: var(--gray);
  border: 1px solid var(--gray) !important;
}

.coluna-beneficios .toggle > .toggle-title a {
  color: var(--blue-main);
}
.coluna-beneficios div[data-style="minimal"] .toggle > .toggle-title i:before {
  background-color: var(--green);
}
.coluna-beneficios div[data-style="minimal"] .toggle > .toggle-title i:after {
  background-color: var(--green);
}
.coluna-beneficios
  div[data-style="minimal"]
  .toggle.open
  > .toggle-title
  i:before {
  background-color: var(--blue-main);
}
.coluna-beneficios
  div[data-style="minimal"]
  .toggle.open
  > .toggle-title
  i:after {
  background-color: var(--blue-main);
}
.coluna-beneficios div[data-style*="minimal"] .toggle > .toggle-title i {
  border: none !important;
}
.carousel-text
  a.nectar-button.medium.regular.accent-color.regular-button.button-blue-bullet {
  width: fit-content !important;
}
.carousel-text .wpb_wrapper {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.carousel-text .wpb_text_column.wpb_content_element {
  margin-top: auto;
}
.single-casestudies .vc_row.translate_y_10pct {
  -webkit-transform: translateY(15%) !important;
  transform: translateY(15%) !important;
}

.product-category-wrapper {
  display: flex;
  gap: 15px;
  width: fit-content;
}
.product-category-wrapper .categoria {
  padding: 5px 25px !important;
  background: var(--green);
  border-radius: 40px;
  font-size: 16px !important;
}

/* *** FIM PÁGINA CASE STUDY *** */
.nectar-flip-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.flip-box-front,
.flip-box-back {
  max-height: 650px !important;
  display: flex;
  flex-direction: column;
}
.nectar-flip-box .flip-box-back .inner,
.nectar-flip-box .flip-box-front .inner {
  padding: 25px !important;
}
.flip-box-back {
  overflow: auto;
}

.nectar-flip-box .inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centraliza o conteúdo */
}
.vc_row .nectar-flip-box {
  height: 100%;
}

.nectar-post-grid .bg-overlay,
.nectar-post-grid .nectar-post-grid-item-bg,
.nectar-post-grid .nectar-post-grid-item-bg img,
.nectar-post-grid .nectar-post-grid-link,
.nectar-post-grid-wrap[data-style="content_under_image"]
  .nectar-post-grid-item-bg-wrap
  a {
  background-size: contain !important;
}

/* *** MOBILE *** */

@media (max-width: 999px) {
  .single-casestudies .vc_row.translate_y_10pct,
  .single-produto .vc_row.translate_y_10pct {
    -webkit-transform: translateY(20%) !important;
    transform: translateY(20%) !important;
  }
  .single-post .padding-article {
    padding-top: 35% !important;
  }
  .solucoesTabs .ui-tabs-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .mobile-flex .wpb_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
  }
  .mobile-flex .wpb_text_column.wpb_content_element {
    margin-bottom: 10px !important;
  }
  header#top {
    position: fixed;
    padding: 10px;
    margin-top: 0px;
  }
  #slide-out-widget-area-bg.open.dark {
    opacity: 1 !important;
  }
  .secondary-header-items {
    display: none !important;
  }
  header#top .container {
    max-width: 100%;
    background: white;
    padding: 5%;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  .m-br0,
  .m-br0 .column-bg-layer,
  .m-br0 .vc_column-inner {
    border-radius: 0px !important;
  }
  .br-b-mobile .column-bg-layer,
  .br-b-mobile .vc_column-inner,
  .br-b-mobile {
    border-bottom-left-radius: 40px !important;
    border-bottom-right-radius: 40px !important;
  }
  .br-t-mobile,
  .br-t-mobile .column-bg-layer,
  .br-t-mobile .vc_column-inner {
    border-top-left-radius: 40px !important;
    border-top-right-radius: 40px !important;
  }
  input.email-submit__input {
    padding-top: 0px !important;
  }
	.BannerBGSliderRevolution {
    min-height: 72vh !important;
	}
	.BannerPage, .SRBanner {
	min-height:72vh !important;
	}
}

@media (min-width: 1920px) and (max-width: 2560px) {
  .BannerBGSliderRevolution {
    min-height: 80vh !important;
  }
  .BannerBGSliderRevolutionIMG {
    min-height: 80vh !important;
  }
}

@media only screen and (max-width: 690px) {
  body.page-id-253 .vc_row-fluid .vc_col-sm-2:not([class*="vc_col-xs"]),
  body .vc_row-fluid.full-width-content .vc_col-sm-2:not([class*="vc_col-xs"]) {
    width: 100% !important;
  }
  .page-id-253 .clearfix:before,
  .clearfix:after {
    display: none !important;
  }
  .vc_row-fluid .vc_col-sm-2[class*="vc_col-sm-"]:nth-child(2n+3):not([class*="offset"]) {
        margin-left: 1px !important;
    }
  body.header-is-scrolled header#top {
  	margin-top: 2vh !important;
  }
}

/* *** FIM MOBILE *** */

.owl-stage {
  display: flex;
  height: fit-content;
  justify-content: stretch;
}

.carousel-item {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.carousel-item > div {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.m-0 {
  margin: 0px !important;
}

.p-0 {
  padding: 0px !important;
}
li::marker {
  color: #19045a;
}
.m-250 {
  max-width: 250px !important;
}

.formFaleConnoscoEstiloClaro .formcraft-css .fc-form .form-element .checkbox-cover>div label a {
    color: #fff !important;
    text-decoration: underline !important;
}

/* controls video pag pessoas */
.nectar-video-box .nectar_video_lightbox path {
    fill: #5cf0b3 !important;
}
body.material .nectar-video-box[data-color="extra-color-1"] .nectar_video_lightbox:before{
  background-color: #fff !important;
}

/* ajuste posts pessoas */
section.oportunidade-header {
    margin-top: 15vh;
    padding: 5%;
}

.imgBannerPagVaga {
    width: 100% !important;
    height: auto !important;
}

p.oportunidade-header__data {
    padding-top: 2% !important;
}

.cardsPagOportunidades ol.flickity-page-dots {
    bottom: -5vh !important;
}


.cardsPagOportunidades .nectar-post-grid-item.animated-in.is-selected {
    min-height: 90% !important;
}

.cardsPagOportunidades .nectar-post-grid .nectar-post-grid-item .content {
    padding: 0px 15px 15px 14px !important;
}

.cardsPagOportunidades .nectar-post-grid .nectar-post-grid-item .content .post-heading {
    max-width: 100%  !important;
    text-align: left !important;
}

.cardsPagOportunidades .item-main h3.post-heading span {
  font-size: 25px !important;
}

.cardsPagOportunidades span.meta-excerpt {
    text-align: left;
    color: #19045A !important;
    font-size: 17px;
    padding-top: 5px;
}

.cardsPagOportunidades span.link_text svg {
    display: none !important;
}

.cardsPagOportunidades .nectar-post-grid[data-text-color=light] .nectar-post-grid-item .content * {
    text-align: left !important;
}

 .cardsPagOportunidades .nectar-post-grid[data-text-color=light] .nectar-post-grid-item .content .link_text {
    font-size: 16px;
    color: #fff;
    transform: translateY(25%);
    line-height: 1;
    pointer-events: none;
    background-color: #233dec;
    border-radius: 55px;
    padding: 4px 4px 4px 16px;
    font-family: "SpaceGrotesk", sans-serif;
}

.cardsPagOportunidades .nectar-post-grid[data-text-color=light] .nectar-post-grid-item .content .link_text::after{
content: "→";
    background-color: var(--green);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease !important;
    position: relative;
    z-index: 0;
    padding: 4px 6px 5px 6px;
    margin-left: 10px;
    font-size: 18px;
}

.cardsPagOportunidades .nectar-post-grid[data-text-color=light] .nectar-post-grid-item .content .link_text:hover{
  background: red !important;
    color: #000 !important;
}

.cardsPagOportunidades .content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/** ajuste footer pags oportunidades **/
.footerPagOportunidades .imgLogoFooter {
    height: auto;
    width: 100%;
}

.footerPagOportunidades .material .wpb_content_element, .material .wpb_row {
    margin-bottom: 0px !important;
}

.categoriaPagOprtEscond .nectar-post-grid-filters.animated-in {
    display: none !important;
}

.dotSecundaryMenu {
  width: 8px;       
  height: 8px;
  background-color: #5CF9A5;
  border-radius: 50%;       
  display: inline-block;     
  margin: 0 2px;             
  bottom: 1px;
  position: relative;
}

.material #header-secondary-outer>.container, .material #header-secondary-outer>.container>nav {
    min-height: 50px !important;
}

body.material #header-secondary-outer nav>ul>li>a {
    margin: 5px 15px !important;
}

/* ================================
   MENU SECUNDÁRIO FINAL
   ================================ */

/* Caixa branca flutuante */
.secundaryMenuPrincipal > .sub-menu {
  position: absolute !important;
  top: 100%;
  left: 0;
  background: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px;
  border-radius: 6px;
  width: 85px;
  display: flex !important;
  flex-direction: column;
  gap: 6px;
  z-index: 9999;
}

/* Garante que todos os submenus (idiomas) ficam sempre visíveis */
.secundaryMenuPrincipal .sub-menu,
.secundaryMenuPrincipal .sub-menu li,
.secundaryMenuPrincipal .sub-menu .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

/* Linhas de país + idiomas */
.secundaryMenuPais {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-size: 14px !important;
}

/* Submenu de idiomas inline */
.secundaryMenuPais > .sub-menu {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 12px;
  position: static !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Idiomas */
.secundaryMenuIdioma {
  display: inline-block;
  margin: 0;
  padding: 0;
}

/* Links */
.secundaryMenuPais a,
.secundaryMenuIdioma a {
  padding: 0;
  color: #1d39f6;
  text-decoration: none;
}

.secundaryMenuPais a:hover,
.secundaryMenuIdioma a:hover {
  text-decoration: underline;
}

/* Remove setas */
.secundaryMenuPais .sf-sub-indicator {
  display: none !important;
}

/* Círculo verde */
.dotSecundaryMenu {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #5CF9A5;
  border-radius: 50%;
  margin: 0 6px;
  vertical-align: middle;
}

.secundaryMenuPrincipal {
  position: relative;
}

/** botao ver mais pag soluções **/
/** Botão tipo "Explorar"**/

.load-more-wrap{
  display:flex !important;
  justify-content:center !important; /* ou center */
}

.load-more-wrap > a.load-more{
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 20px !important;
  background: #2f5bff !important;
  color: #fff !important;
  text-decoration: none !important;
  padding: 10px 30px !important;
  border-radius: 999px !important;
  border: 0 !important;
  outline: 0 !important;

  /* sombra normal */
  box-shadow: 0 6px 14px rgba(47, 91, 255, .25) !important;

  /* base para animar */
  transform: translateY(0) !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease !important;
}

/* bolinha verde */
.load-more-wrap > a.load-more::after{
  content: "" !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #5CF0B3 !important;
  margin-left: 6px !important;

  transform: scale(1) !important;
  transition: transform .18s ease !important; /* para crescer suave */
}

/* hover: sobe + sombra + bolinha cresce */
.load-more-wrap > a.load-more:hover{
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .18) !important;
  filter: brightness(1.03) !important;
}

.load-more-wrap > a.load-more:hover::after{
  transform: scale(1.5) !important;
}

/* opcional: active */
.load-more-wrap > a.load-more:active{
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 16px rgba(0,0,0,.16) !important;
}


@media only screen and (max-width: 690px) {
  body[data-button-style*=slightly_rounded] .nectar-post-grid-filters h4{
    border: 1px solid var(--blue-main) !important;
    color: var(--blue-main) !important;
    border-radius: 25px !important;
    font-size: 20px !important;
    font-weight: 400 !important;

 }

 .nectar-post-grid-filters h4:after, .nectar-post-grid-filters h4:before{
  color:#233dec !important;
      font-size: 20px !important;
      background-color: #233dec !important;
 }
  }

/**estilos cta slider revolution**/
rs-module a.rs-layer.rev-btn,.rev_slider_wrapper rs-module a.rs-layer.rev-btn, .rev_slider_wrapper rs-module a.rs-layer.rev-btn[data-type="button"] {
    padding: 22px 25px !important;
}

rs-module rs-carousel-wrap,
rs-module rs-slides{
  border-bottom-left-radius: 40px !important;
  border-bottom-right-radius: 40px !important;
  overflow: hidden !important;
  clip-path: inset(0 0 0 0 round 0 0 40px 40px) !important;
}

/** estilos forms gerais **/
html .formcraft-css .fc-form.fc-form input[type="text"],
html .formcraft-css .fc-form.fc-form input[type="email"],
html .formcraft-css .fc-form.fc-form textarea {
  width: 100%;
  border: solid 1px #19045a !important;
  border-radius: 55px !important;
  background: #FAFAFA !important;
  color: #19045a !important;
  font-size: 21px !important;
  padding: 15px 25px !important;
}

html .formcraft-css .fc-form.fc-form textarea {
  border-radius: 32px !important;
  min-height: 140px;
  resize: vertical;
  padding-top: 22px !important;
}

html .formcraft-css .fc-form.fc-form input::placeholder,
html .formcraft-css .fc-form.fc-form textarea::placeholder {
  color: #19045a !important;
  opacity: 1;
}

html .formcraft-css .fc-form.fc-form .form-element .fileupload-cover.field-cover .button-file .icon-upload-cloud{
  display: none;
}

html .formcraft-css .fc-form .form-element .fileupload-cover.field-cover .button-file {
    display: block !important;
    /* font-size: 25px !important; */
    height: 50px !important;
    border-radius: 55px !important;
    border: 1px solid #19045A !important;
    background-color: transparent !important;
    text-align: left !important;
    padding-left: 15px !important;
    background-color: #FAFAFA !important;
}

html .formcraft-css .fc-form .form-element .fileupload-cover.field-cover .button-file span {
    font-size: 21px !important;
    color: #19045A !important;
    font-weight: normal !important;
    top: 7px !important;
    padding-left: 10px !important;
}

html .formcraft-css .fc-form .button-file span::after {
    content: "";
    position: absolute;
    left: 70vh !important;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-image: url(https://incentea.com/pt/wp-content/uploads/sites/3/2025/10/incentia-icon-form-vagas.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

html .formcraft-css .fc-form.fc-form .checkbox-cover label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #19045a !important;
}

html .formcraft-css .fc-form.fc-form .form-element .checkbox-cover>div label a,
html .formcraft-css .fc-form.fc-form .form-element .checkbox-cover>div label span {
    color: #10013b !important;
    font-size: 16px !important;
  }

html .formcraft-css .fc-form.fc-form .form-element .checkbox-cover>div label a{
  font-weight: 400 !important;
}

html .formcraft-css .fc-form.fc-form .checkbox-cover input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #19045a;
}

html .formcraft-css .fc-form .form-element select {
    border-radius: 55px !important;
    font-size: 25px !important;
    border: 1px solid #10013b !important;
    background-color: #FAFAFA !important;
      background-image: url('https://incentea.com/wp-content/uploads/2026/01/incentea-arrow-blue-form-produtos.png') !important;
  background-repeat: no-repeat !important;
  background-position: center right 25px !important;
}

html .formcraft-css .fc-form .form-element select option[value=""] {
  color: #10013b !important;
}

html .formcraft-css .fc-form .form-element select {
  color: #10013b !important;
}

html .formcraft-css .fc-form .form-element select:has(option[value=""]:checked) {
  color: #10013b !important;
  font-size: 21px !important;
}

/* @media only screen and (max-width: 690px) {
html .formcraft-css .fc-form.fc-form input[type="text"],
html .formcraft-css .fc-form.fc-form input[type="email"],
html .formcraft-css .fc-form.fc-form textarea,
html .formcraft-css .fc-form.fc-form .fileupload-cover.field-cover .button-file {
  width: 90% !important;
} */

@media only screen and (max-width: 690px) {
  html .formcraft-css .fc-form.fc-form input[type="text"],
  html .formcraft-css .fc-form.fc-form input[type="email"],
  html .formcraft-css .fc-form.fc-form textarea,
  html .formcraft-css .fc-form.fc-form select,
  html .formcraft-css .fc-form.fc-form .fileupload-cover.field-cover .button-file {
    width: 95% !important;
  }

   html .formcraft-css .fc-form.fc-form select {
    font-size: 18px !important;
  }

}

html .formcraft-css .fc-form.fc-form .form-element .submit-cover{
  text-align: left !important;
}

html .formcraft-css .fc-form.fc-form .form-element .fileupload-cover.field-cover .button-file span,
html .formcraft-css .fc-form.fc-form input[type="text"],
html .formcraft-css .fc-form.fc-form input[type="email"],
html .formcraft-css .fc-form.fc-form textarea {
    font-size: 18px !important;
    padding-left: 4px !important;
  }

  html .formcraft-css .fc-form.fc-form input[type="text"], html .formcraft-css .fc-form.fc-form input[type="email"], html .formcraft-css .fc-form.fc-form textarea{
    padding: 11px 20px !important;
  }

  html .formcraft-css .fc-form.fc-form .form-element .checkbox-cover>div label a, html .formcraft-css .fc-form.fc-form .form-element .checkbox-cover>div label span {
    font-size: 15px !important;
}

html .formcraft-css .fc-form.fc-form .form-element {
    padding: 14px 0px !important;
}
.nectar-global-section.before-footer .form-page-content.ng-not-empty {
    width: 100% !important;
}

html .formcraft-css .fc-form.fc-form-2 .form-element .checkbox-cover>div label a,
html .formcraft-css .fc-form.fc-form-2 .form-element .checkbox-cover>div label span {
    color: #FAFAFA !important;
  }

  html .formcraft-css .fc-form .form-element .form-element-html {
    padding: 0px !important;
}

.grecaptcha-badge{
  bottom: 10vh !important;
}

#popmake-3090 .img-with-animation-wrap .hover-wrap,
#popmake-3090 .img-with-aniamtion-wrap .hover-wrap { 
  margin-bottom: 0 !important;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}

#popmake-3090 img.img-with-animation.imgBorderPopup.skip-lazy {
  display: block;
  border-radius: 0 !important;
}

div#popmake-3090.pum-container img.img-with-animation.imgBorderPopup.skip-lazy {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.wpb_text_column.wpb_content_element.espacamentoTextoPopup {
    padding-left: 30px !important;
    padding-right: 30px !important;
    font-size: 14px !important;
    line-height: 26px !important;
}

.logosCertificadosMobile{
    display:none;
}


/* body[data-dropdown-style=minimal] #header-secondary-outer .sf-menu>li ul{
  width: max-content !important;
} */

body[data-dropdown-style=minimal] #header-secondary-outer .sf-menu>li ul {
    width: 9rem !important;
    border-radius: 5px !important;
    padding: 10px !important;
}

/** recaptcha oculto **/
.grecaptcha-badge { 
visibility: hidden; 
}

.recaptcha-disclaimer {
    font-size: 12px !important;
    color: #10013b !important;
}

.recaptcha-disclaimer a {
    font-size: 12px !important;
    font-weight: bold;
    color: #10013b !important;
}

.recaptcha-disclaimer a:hover {
    text-decoration: underline;
}

/** mensagem campo obrig NL **/
.form-element.form-element-field3.options-false.form-element-0.default-false.form-element-type-email.is-required-true.odd.-handle.error-field span.error {
    top: 1rem !important;
}

.form-element.form-element-field6.options-false.form-element-2.default-false.form-element-type-checkbox.is-required-true.odd.-handle.error-field span.error, .form-element.form-element-field6.form-element-2.default-false.form-element-type-checkbox.is-required-true.odd.-handle.options-true.error-field span.error {
    top: 0.6rem !important;
    right: 0.3rem !important;
}

html .formcraft-css .fc-form .form-element.error-field .form-element-html .checkbox-cover>div {
  width: 40vw !important;
}

.cmplz-documents.cmplz-links li {
    list-style: none !important;
}

.secundaryMenuPais a,
.secundaryMenuIdioma a {
  font-size: 14px !important;
}

/* ============================= */
/* BOTÃO BASE (AZUL + PONTO) */
/* ============================= */

.NlFormCraftFooterPt 
.formcraft-css 
.fc-form 
.form-element 
.submit-cover 
.submit-button {

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;

  padding: 14px 60px 14px 10px !important;
  
  font-family: "SpaceGrotesk", sans-serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;

  background-color: #2f46d9 !important;
  color: #ffffff !important;

  border: none !important;
  border-radius: 40px !important;

  cursor: pointer !important;
  position: relative !important;

  transition: background 0.3s ease !important;
}

.NlFormCraftFooterPt .formcraft-css .fc-form .form-element .submit-cover .submit-button:hover {
    background: #49e3a6!important;
    color: #2f46d9 !important;
}


/* ============================= */
/* ESCONDER ÍCONE ORIGINAL DO PLUGIN */
/* ============================= */

.NlFormCraftFooterPt 
.formcraft-css 
.fc-form 
.form-element 
.submit-cover 
.submit-button 
.formcraft-icon {
  display: none !important;
}


/* ============================= */
/* GARANTIR TEXTO ACIMA */
/* ============================= */

.NlFormCraftFooterPt 
.formcraft-css 
.fc-form 
.form-element 
.submit-cover 
.submit-button span {
  position: relative;
  z-index: 2;
  padding-left: 5px;
}


/* ============================= */
/* ELEMENTO DIREITA (PONTO → CÍRCULO) */
/* ============================= */

.NlFormCraftFooterPt 
.formcraft-css 
.fc-form 
.form-element 
.submit-cover 
.submit-button::after {
  content: "→"; /* já definido para evitar re-render */
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #49e3a6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0; /* invisível no estado normal */
  color: #2f46d9;
  transition: 
    width 0.3s ease,
    height 0.3s ease,
    background-color 0.3s ease,
    font-size 0.3s ease;

}


/* ============================= */
/* HOVER */
/* ============================= */

.NlFormCraftFooterPt 
.formcraft-css 
.fc-form 
.form-element 
.submit-cover 
.submit-button:hover::after {
  width: 34px;
  height: 34px;
  background-color: #e9f4ff;
  font-size: 18px; /* seta aparece suavemente */
}

.NlFormCraftFooterPt .form-element-html button.submit-button::before {
  content: none !important;
  display: none !important;
}

/* tabs cronologia - pag sobre nos */
.tabs-cronologia-incentea li.tab-item {
  font-size: 20px !important;
}

.tabs-cronologia-incentea p > span, .tabs-cronologia-incentea p {
  font-size: 21px !important;
  line-height: 34px !important;
  font-weight: 300 !important;
}

.tabs-cronologia-incentea h4 > span {
  font-size: 20px !important;
  font-weight: 700 !important;
}

/* *** MENUS *** */
#top .sf-menu > li > a,
#top .sf-menu > li > a span {
  font-family: 'Roboto', Helvetica, sans-serif !important;
  font-size: 20px !important;
  font-style: normal !important;
  /* font-weight: 400 !important; */
  line-height: normal !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}
#top .sub-menu a span {
  font-size: 18px !important;
  /* font-weight: 400 !important; */
}
span.menu-title-text:after {
  display: none !important;
}


/**correcao menu duplicado**/
@media (min-width: 1000px) and (max-width: 1200px) {
 .cta-menu-contactos {
  display: none !important;
 }

}
@media (min-width: 690px) and (max-width: 1200px) {
  div#header-secondary-outer,
  ul.menu.secondary-header-items.mobile-only,
  li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.nectar-regular-menu-item.menu-item-177,
  li.secundaryMenuPrincipal.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children.nectar-regular-menu-item.menu-item-1599 {
    display: none !important;
}
}
 #slide-out-widget-area.fullscreen-split .inner-wrap>.inner>.container {
    padding-top: 5rem !important;
    padding-bottom: 0px !important;
}

/** ajustar o discailmer recaptcha em todos os forms **/
.NlFormCraftFooterPt .recaptcha-disclaimer,
.NlFormCraftFooterPt .recaptcha-disclaimer a,
.NlFormCraftFooterPt .formcraft-css .fc-form.fc-form .form-element .checkbox-cover>div label a,
.NlFormCraftFooterPt .formcraft-css .fc-form.fc-form .form-element .checkbox-cover>div label span {
    color: #fff !important;
}

.NlFormCraftFooterPt .formcraft-css .fc-form.fc-form .form-element {
    padding: 2px 0px !important;
}

@media (max-width: 480px) {
    html body .fc-form .form-element {
        width: 90% !important;
    }
}

html .formcraft-css .fc-form.fc-form .form-element {
  padding: 14px 10px !important;
}

html .formcraft-css .fc-form .form-element .fileupload-cover.field-cover>div {
  padding-right: 0px !important;
}

a.button-white-bullet::before{
  top: 47% !important;
  right: 30px !important;
}

.nectar-link-underline a span,
.nectar-underline,
.post-heading,
.nectar-underline h3 {
    background-image: linear-gradient(to right, #ffffff00 0, #00000000 100%) !important;
}



/**mobile - pipizio **/
@media only screen and (max-width: 700px){
  .ajusteTabsMobile .wpb_tabs_nav.ui-tabs-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }


  .ajusteTabsMobile .wpb_tabs_nav.ui-tabs-nav > li {
    float: right !important;
    display: block !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .ajusteTabsMobile .wpb_tabs_nav.ui-tabs-nav > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
    padding: 12px 10px !important;
  }

  #PostHpMobile h3.post-heading span{
    font-size: 24px !important;
    line-height: 30px !important;
  }

  .item-main h3.post-heading span{
    font-size: 25px !important;
  }

.nectar-post-grid .nectar-post-grid-item .item-meta-extra {
    margin-top: 0px !important;
}

.solucoes span.meta-excerpt {
    font-size: 18px !important;
}

.produtos-wrapper-builder .nectar-post-grid-item .nectar-post-grid-item__read-more{
  left: 0px !important;
}
  
div#popmake-3090 {
  max-width: 80% !important;
  left: 2rem !important;
}

div#popmake-3090.pum-container img.img-with-animation.imgBorderPopup.skip-lazy {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.botaoFormNLMobile .align-right.wide-true.submit-cover.field-cover {
    width: 9rem !important;
}

.logosCertificadosDesktop{
    display: none !important;
}
    
.logosCertificadosMobile{
display:block !important; 
}

html .formcraft-css form.fc-form.fc-form-2 .form-element.error-field .form-element-html .checkbox-cover > div{
  width: 100% !important;
  height: 12vh;
}

.form-element.form-element-field6.options-false.form-element-2.default-false.form-element-type-checkbox.is-required-true.odd.-handle.error-field span.error, .form-element.form-element-field6.form-element-2.default-false.form-element-type-checkbox.is-required-true.odd.-handle.options-true.error-field span.error {
  top: 4.5rem !important;
  left: 0.5rem !important;
  display: inline-table;
}

.form-element.form-element-field3.options-false.form-element-0.default-false.form-element-type-email.is-required-true.odd.-handle.error-field span.error {
    top: 0.7rem !important;
}

html .formcraft-css .fc-form .form-element .submit-cover.wide-true .submit-button {
    width: 50% !important;
}

html .formcraft-css .fc-form .form-element.error-field .form-element-html .checkbox-cover>div {
  width: 40vw !important;
}

.NlFormCraftFooterPt 
.formcraft-css 
.fc-form 
.form-element 
.submit-cover 
.submit-button span {
  padding-left: 1px;
}

/** ajustar o discailmer recaptcha em todos os forms **/
.NlFormCraftFooterPt .formcraft-css .fc-form.fc-form .form-element {
    padding: 5px 0px !important;
}

.NlFormCraftFooterPt .recaptcha-disclaimer,
.NlFormCraftFooterPt .recaptcha-disclaimer a,
.NlFormCraftFooterPt .formcraft-css .fc-form.fc-form .form-element .checkbox-cover>div label a,
.NlFormCraftFooterPt .formcraft-css .fc-form.fc-form .form-element .checkbox-cover>div label span {
    color: #fff !important;
}

html .formcraft-css .fc-form .form-element .field-cover.customText-cover p {
    margin: -8px 0px 0px 0px !important;
}

html .formcraft-css .fc-form.fc-form .fileupload-cover.field-cover .button-file {
     width: 92% !important;
}

.single .heading-title {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

    body.page-id-6 .vc_row.before-footer-mobile-pag-geral,
    body.page-id-253 .vc_row.before-footer-mobile-pag-geral,
    body.page-id-376 .vc_row.before-footer-mobile-pag-geral,
    body.page-id-437 .vc_row.before-footer-mobile-pag-geral,
    body.page-id-365 .vc_row.before-footer-mobile-pag-geral,
    body.single-post .vc_row.before-footer-mobile-pag-geral {
        padding-bottom: 26% !important;
    }

html .formcraft-css .fc-form.fc-form .form-element {
    padding: 14px 0px !important;
}

.single-post span.meta-category {
    display: flex;
    gap: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    align-items: flex-end;
    text-align: left;
}

 html .formcraft-css .fc-form .form-element .fileupload-cover.field-cover>div {
  padding-right: 5px !important;
}

section.oportunidade-header {
    margin-top: 5vh;
  }

.NlFormCraftFooterPt .form-element-field6 .error {
  top: 4.5rem !important;
  left: 0.5rem !important;
  display: inline-table;
  right: 10.6rem !important;
}

.wpb_video_widget.vc_video-el-width-50 .wpb_wrapper, .wpb_video_widget.vc_video-el-width-60 .wpb_wrapper {
    width: 100% !important;
}

.formMobileContactosEs .formcraft-css .fc-form.fc-form-1 .form-element .submit-cover .submit-button, .mobileCtaSageForm .formcraft-css .fc-form.fc-form-4 .form-element .submit-cover .submit-button, .FormVagasEs .formcraft-css .fc-form.fc-form-3 .form-element .submit-cover .submit-button,
.formcraft-css .fc-form.fc-form-3 .form-element .submit-cover .submit-button {
    margin-top: 25px;
}

body {
font-size: 17px !important; 
font-family: 'Roboto' sans-serif !important;
line-height: 24px !important;
}

.single-produto .vc_row.translate_y_15pct {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
}

.toggles.accordion .toggle-title a {
    padding-right: 2rem !important;
}

html .formcraft-css .fc-form.fc-form-5 .form-element .submit-cover {
    margin-top: 40px !important;
}

    .single-produto .MobileEsBeforeFooter .vc_row.translate_y_10pct {
        transform: translateY(0%) !important;
    }

}

@media only screen and (max-width: 400px){
  html .formcraft-css .fc-form.fc-form-9 .form-element .submit-cover, html .formcraft-css .fc-form.fc-form-8 .form-element .submit-cover, html .formcraft-css .fc-form.fc-form-1 .form-element .submit-cover {
    margin-top: 40px !important;
    margin-bottom: 60px;
}

}


/** esconde opcao de idioma menu **/
@media only screen and (max-width: 700px) {

  li#menu-item-4486,
  li#menu-item-3046,
  li#menu-item-2842,
  li#menu-item-2943,
  li#menu-item-2833,
  li#menu-item-2774  {
  display: none !important;
}

}

li#menu-item-4467,
li#menu-item-3042,
li#menu-item-2821,
li#menu-item-2921,
li#menu-item-2829,
li#menu-item-2753
 {
    display: none !important;
}