/*
Theme Name: HelloChild
Template: astra
Description: Tema filho do Astra.
*/

/* WPForms fixes */
/* Initial field looks */
.wpforms-container input[type="date"],
.wpforms-container input[type="datetime"],
.wpforms-container input[type="datetime-local"],
.wpforms-container input[type="email"],
.wpforms-container input[type="month"],
.wpforms-container input[type="number"],
.wpforms-container input[type="password"],
.wpforms-container input[type="range"],
.wpforms-container input[type="search"],
.wpforms-container input[type="tel"],
.wpforms-container input[type="text"],
.wpforms-container input[type="time"],
.wpforms-container input[type="url"],
.wpforms-container input[type="week"],
.wpforms-container select,
.wpforms-container textarea {
  background: #fff;
  border-width: 0 0 1px 0;
  color: var(--ast-global-color-2);
  opacity: 0.5;
}


/* On focus */
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus {
  outline: none;
  opacity: 1;
  border-color: var(--ast-global-color-0);
}
/* Don't allow resizing the Message box */
.wpforms-container textarea {
  resize: none;
}
/* Message box fixed height */
.wpforms-container .wpforms-field-textarea textarea.wpforms-field-medium {
  height: 136px;
}


/* Button size & font size */
.wpforms-container button {
  padding: 15px 34px;
  font-size: 15px;
}
/* WPForms done */
/* Footer 2 big columns on sides and 1 small one in the middle */
.ast-builder-grid-row-3-equal .ast-builder-grid-row {
  grid-template-columns: 3fr 1fr 3fr;
}





/* === POLYLANG SWITCHER FLAGS === */
/* Seleciona especificamente os links das bandeiras */
/* Remove padding/margin do UL do menu */
#ast-hf-menu-1 {
  padding: 0 !important;
  margin: 0 !important;
  gap: 0px !important; /* controla o espaço entre as bandeiras */
}

/* Remove margin/padding dos LIs */
#ast-hf-menu-1 .lang-item {
  margin: 0 !important;
  padding: 0 !important;
	  gap: 0px !important;
}

/* Remove padding dos links */
#ast-hf-menu-1 .lang-item a {
  padding: 0 !important;
	  margin: 0 !important;
	  gap: 0px !important;
  background: transparent !important;
}

/* Força as imagens */
#ast-hf-menu-1 .lang-item img {
  width: 20px !important;
  height: 15px !important;
  margin: 0 !important;
  padding: 0 !important;
		  gap: 0px !important;

  transition: transform 0.2s ease-in-out !important;
}



/* Hover das imagens */
#ast-hf-menu-1 .lang-item img:hover {
  transform: scale(1.5) !important;
}


/* Forçar os links das bandeiras a NUNCA terem fundo */
#ast-hf-menu-1 .lang-item a {
    background-color: transparent !important;
    padding: 0 !important;
    display: inline-flex; /* garante que o hover não cria bloco extra */
    align-items: center;
}

/* Hover transparente */
#ast-hf-menu-1 .lang-item a:hover {
    background-color: transparent !important;
}

/* Imagens maiores */
#ast-hf-menu-1 .lang-item img {
    width: 20px !important;
    height: 15px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    transition: transform 0.2s ease-in-out !important;
}

/* Hover das imagens */
#ast-hf-menu-1 .lang-item img:hover {
    transform: scale(1.2) !important;
}

/* Reduz o espaço entre as bandeiras */
#ast-hf-menu-1 .lang-item {
    margin: 0 !important;
    padding: 0 !important;
    gap: 2px !important; /* controla a distância entre bandeiras */
    display: inline-flex !important;
}


.site-header-primary-section-left,
.site-header-primary-section-right {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.main-header-bar-navigation {
    margin-left: 0 !important;  /* aproxima menu do logo */
}


@media (min-width: 924px){
/* Força o dropdown de idiomas em coluna */
/* =============================
   Dropdown idiomas — layout + espaçamento
   ============================= */
/* estado escondido */
.pll-parent-menu-item > .sub-menu {
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  gap: 8px !important;
  box-sizing: border-box !important;
  padding: 8px !important;
  width: 135px !important;
  border: 1px solid #ddd !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
  z-index: 9999 !important;
  overflow: visible !important;

  /* animação */
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
  will-change: transform, opacity;
}

/* estado visível (hover, foco, ou aberto pelo WP) */
.pll-parent-menu-item:hover > .sub-menu,
.pll-parent-menu-item:focus-within > .sub-menu,
.pll-parent-menu-item.ast-submenu-expanded > .sub-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
}

	

/* links (cada linha) */
.pll-parent-menu-item > .sub-menu > li > a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;               /* espaço entre bandeira e texto */
  padding: 6px 10px !important;      /* top right bottom left */
  justify-content: flex-start !important;
  color: #333 !important;
  white-space: nowrap !important;
  background: transparent !important;
  box-sizing: border-box !important;
}

/* bandeiras */
.pll-parent-menu-item > .sub-menu > li > a img {
  width: 18px !important;
  height: auto !important;
  display: inline-block !important;
  flex: 0 0 auto !important;
  transform-origin: left center !important; /* escala para a direita (não empurra à esquerda) */
  transition: transform .18s ease, margin .18s ease !important;
}

/* hover — aumenta a bandeira (cresce para a direita) */
.pll-parent-menu-item > .sub-menu > li > a img:hover,
.pll-parent-menu-item > .sub-menu > li > a:hover img {
  transform: scale(1.2) !important;
}

/* hover do link (fundo + cor) */
.pll-parent-menu-item > .sub-menu > li > a:hover {
  background: #f5f5f5 !important;
  color: #4064FE !important;
}


/* Hover com fundo cinza claro */
.pll-parent-menu-item .sub-menu li a:hover {
  background: #f5f5f5 !important;
  color: #4064FE !important;

}

/* Bandeiras alinhadas bonitinhas */
.pll-parent-menu-item .sub-menu img {
  width: 18px;
  height: auto;
  display: inline-block;
}

}

/* Apanha a imagem dentro do link principal do switcher */
.pll-parent-menu-item > a.menu-link > img {
  width: 20px !important;
  height: auto !important;
  display: inline-block !important;
}






/* Parent item */
.ast-mobile-header-wrap .pll-parent-menu-item > a.menu-link {
    color: white !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0em;
    position: relative;
}

/* Dropdown */
.ast-mobile-header-wrap .pll-parent-menu-item > .sub-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 100% !important;
    min-width: max-content !important;
    width: auto !important;
    left: 50% !important;               /* começa no centro */
    transform: translateX(-50%) !important; /* corrige para ficar centralizado */
   
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    display: none;
    flex-direction: column !important;
    gap: 0px !important;
    box-sizing: border-box !important;
    z-index: 9999 !important;
    transition: opacity .25s ease, transform .25s ease !important;
    opacity: 0;
}

/* Quando abre */
.ast-mobile-header-wrap .pll-parent-menu-item.open > .sub-menu {
    display: flex !important;
    opacity: 1 !important;
    transform: translateY(0);
}

/* Itens do dropdown */
.ast-mobile-header-wrap .pll-parent-menu-item > .sub-menu > li {
    margin: 0 !important;
    padding: 0 !important;
	gap: 0 !important;
	font-size:12px;
}

/* Links do dropdown */
.ast-mobile-header-wrap .pll-parent-menu-item > .sub-menu > li > a {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
    padding: 0px 4px !important;
    color: #333 !important;
    text-decoration: none !important;
    background: transparent !important;
    width: 100% !important; /* garante que o link ocupa a linha toda */
    box-sizing: border-box;
}

/* Hover */
.ast-mobile-header-wrap .pll-parent-menu-item > .sub-menu > li > a:hover {
    background: #f5f5f5 !important;
    color: #4064FE !important;
}

/* Bandeiras */
.ast-mobile-header-wrap .pll-parent-menu-item > .sub-menu > li > a img {
    width: 16px !important;
    height: auto !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}







@media (max-width: 1160px) {

  /* Container pai da grid */
  .elementor-element-464d13a .e-con-inner {
    display: flex;          /* transforma grid em flex horizontal */
    flex-wrap: nowrap;      /* impede quebra de linha */
    overflow-x: auto;       /* scroll horizontal */
    gap: 15px;              /* espaço entre os icon boxes */
    padding-bottom: 10px;
  }

  /* Cada icon box */
  .elementor-element-464d13a .e-con-inner > .elementor-widget-icon-box {
    flex: 0 0 auto;         /* mantém tamanho fixo */
    width: 315px;
    height: 250px;
  }

  /* Título */
  .elementor-element-464d13a .elementor-icon-box-title span {
    font-family: 'Inria Sans', sans-serif;
    font-size: 22px;
    color: #252525;
    letter-spacing: -3%;
  }

  /* Descrição */
  .elementor-element-464d13a .elementor-icon-box-description {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #595959;
  }


  .elementor-element-464d13a .e-con-inner::-webkit-scrollbar-thumb {
	  margin-top:50px;
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
  }
}





/* ---------- Scroll horizontal sempre visível ---------- */
@media (max-width: 1024px) {
  .elementor-element-6fe228d {
    display: flex;
    flex-direction: row;
    overflow-x: scroll !important;   /* força scroll horizontal */
    overflow-y: hidden;
	      gap: 20px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* Scrollbar cross-browser */
    -ms-overflow-style: auto !important;   /* IE/Edge antigo */
    scrollbar-width: auto !important;      /* Firefox: sempre visível */
    scrollbar-color: rgba(0,0,0,0.3) transparent !important;
  }

  /* ---------- WebKit (Chrome, Safari, Edge Chromium) ---------- */
  .elementor-element-6fe228d::-webkit-scrollbar {
    height: 10px; /* altura da scrollbar horizontal */
  }

  .elementor-element-6fe228d::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
  }

  /* Impede os icon-boxes de encolherem */
  .elementor-element-6fe228d .elementor-widget-icon-box {
    scroll-snap-align: start;
  }
}



/* Container azul */
.elementor-element-47624ca {
	height:942px;
}




/* Widget pai centralizado */
.elementor-element-bc7066b {
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: -240px !important;
  width: auto !important;      /* impede que o widget limite a largura */
  max-width: none !important;  /* remove restrições */
}

/* Imagem com tamanho original */
.wp-image-3755 {
  width: 323px !important;     /* largura original */
  height: 473px !important;    /* altura original */
  max-width: none !important;  /* garante que não encolhe */
  display: block;
}















/* Menu mobile fullscreen */
/* Menu mobile fullscreen */
/* Menu mobile fullscreen */
/* Menu mobile fullscreen */
/* Menu mobile fullscreen */
/* Menu mobile fullscreen */
/* Menu mobile fullscreen */





/* --- Estrutura principal --- */
/* =======================================
   MENU MOBILE 
======================================= */

#primary-site-navigation-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;           /* cobre toda a altura da viewport */
    background: #fff;        /* fundo branco */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: calc(env(safe-area-inset-top, 20px) + 20px) 20px 20px;
    overflow: hidden;        /* bloqueia qualquer scroll interno */
}




/* Menu aberto */
body.ast-main-header-nav-open #primary-site-navigation-mobile,
#primary-site-navigation-mobile.menu-open {
    transform: translateY(0);
    pointer-events: auto;
}

/* Bloqueia scroll da página de trás */
body.ast-main-header-nav-open,
body.menu-open {
    overflow: hidden !important;
    height: 0vh !important;
}



/* =======================================
   MENU ITEMS
======================================= */

#ast-hf-menu-1-mobile .current-menu-item > a.menu-link {
    color: #4064FE !important; /* força azul, igual à bolinha */
    font-weight: 600;           /* opcional, deixa mais destacado */
}


#ast-hf-menu-1-mobile {
    margin-top: 0px !important; /* aproxima o menu do topo */
    padding: 0 !important;
    list-style: none;
}

#ast-hf-menu-1-mobile li.menu-item > a.menu-link {
    font-family: 'Inria Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    position: relative;
    padding-left: 64px; /* 40px margem + 12px bolinha + espaçamento */
    text-decoration: none;
}

/* Bolinha azul da página atual */
#ast-hf-menu-1-mobile .current-menu-item > a.menu-link::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #4064FE;
    border-radius: 50%;
}

/* Espaçamento entre itens */
#ast-hf-menu-1-mobile li.menu-item {
    margin-bottom: 16px;
}

/* Hover */
#ast-hf-menu-1-mobile li.menu-item > a.menu-link:hover {
    color: #4064FE;
}


/* =======================================
   FOOTER DO MENU
======================================= */
.menu-mobile-footer {
    position: fixed;
    bottom: 70px; /* coloca a linha cinzenta 150px acima do fundo */
    left: 0;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #D9D9D9;
    background: #fff;
    padding-top: 30px; /* espaço entre a linha cinzenta e o conteúdo */
    padding-left: 20px;
    padding-right: 20px;
}



/* Estrutura interna */
.menu-mobile-footer .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

/* Texto da primeira linha */
.menu-mobile-footer .footer-row:first-child .footer-text {
    font-family: 'Inria Sans', sans-serif;
    font-size: 14px;
    font-weight: 400; /* Regular */
    line-height: 24px;
    color: #595959;
    margin: 0;
}

/* Texto da segunda linha */
.menu-mobile-footer .footer-row:nth-child(2) .footer-text {
    font-family: 'Inria Sans', sans-serif;
    font-size: 14px;
    font-weight: 400; /* Regular */
    line-height: 24px;
    color: #252525;
    margin: 0;
}

/* Ícones */
.menu-mobile-footer .footer-icon {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 40px;
		color: #AAAAAA;
}

.menu-mobile-footer .footer-icon img {
    width: 22px;
    height: 22px;
    display: block;
	color: #AAAAAA;
}




/* =======================================
   SWITCHER DE LÍNGUA (Cabeçalho)
======================================= */

/* Header Mobile Language Switcher */
.ast-mobile-header-wrap .pll-parent-menu-item {
    position: relative;
    display: inline-block;
    list-style: none;
    margin: 0 0px; /* espaço lateral entre logo e menu toggle */
    color: white;
}


/* Mostra o submenu quando clicado */
.ast-mobile-header-wrap .pll-parent-menu-item.open > .sub-menu {
    display: flex;
}

/* Links dentro do submenu */
.ast-mobile-header-wrap .pll-parent-menu-item > .sub-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    color: #333;
    text-decoration: none;
}

.ast-mobile-header-wrap .pll-parent-menu-item > .sub-menu > li > a:hover {
    background: #f5f5f5;
    color: #4064FE;
}

/* Bandeira do link principal */
.ast-mobile-header-wrap .pll-parent-menu-item > a.menu-link > img {
    width: 20px;
    height: auto;
    display: inline-block;
}

/* Bandeiras do submenu */
.ast-mobile-header-wrap .pll-parent-menu-item > .sub-menu > li > a img {
    width: 18px;
    height: auto;
    transition: transform 0.18s ease;
}

.ast-mobile-header-wrap .pll-parent-menu-item > .sub-menu > li > a:hover img {
    transform: scale(1.2);
}

.ast-builder-grid-row.ast-builder-grid-row-has-sides {
    display: flex;
    align-items: center;
    justify-content: space-between; /* mantém logo à esquerda, menu à direita, switcher no meio */
    gap: 20px; /* espaço entre elementos */
}

.pll-parent-menu-item {
    margin-left: auto; /* empurra para o lado direito, entre logo e menu */
}



/* =======================================
   CORREÇÃO: Language Switcher dropdown
======================================= */
.ast-mobile-header-wrap .pll-parent-menu-item {
    position: relative;
    z-index: 10010; /* garante que fica acima do menu */
}

/* Submenu do switcher */
.ast-mobile-header-wrap .pll-parent-menu-item > .sub-menu {
    display: none;
    position: absolute;
    top: 100%; /* abre para baixo */
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px;
    min-width: 135px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 10011; /* acima do menu mobile */
    flex-direction: column;
    gap: 8px;
}

/* Quando aberto */
.ast-mobile-header-wrap .pll-parent-menu-item.open > .sub-menu {
    display: flex;
}

/* Garante que o menu principal não corta o dropdown */
#primary-site-navigation-mobile,
.ast-mobile-header-wrap {
    overflow: visible !important;
}

















/* Container principal */
.logo-text {
  display: flex;
  flex-wrap: wrap; /* permite que a segunda parte vá para baixo */
  align-items: flex-end; /* alinha tudo pela linha de texto */
  font-family: "Inria Sans", sans-serif;
  gap: 6px;
}

/* Texto */
.logo-text span {
  font-size: 22px;
  line-height: 1.4;
  color: #252525;
}

/* Parte fixa: ", le centre" nunca quebra */
.logo-text .first-part {
  white-space: nowrap;
}

/* Parte que pode ir para baixo */
.logo-text .second-part {
  white-space: normal;
}












/* ACCUEIL "ILS NOUS FONT DEJA CONFIANCE" */

/* ---------- Desktop: 4 colunas lado a lado ---------- */

/* ---------- Tablet / Mobile: scroll horizontal ---------- */
@media (max-width: 1024px) {
  .elementor-element-b596789 {
    display: flex;
    flex-direction: row;
 overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* suave no iOS */
  }

  .elementor-element-b596789 .elementor-widget-image {
    flex: 0 0 auto; /* impede que os logos encolham */
    scroll-snap-align: start;
  }
}

/* ---------- container com scroll horizontal (tablet/mobile) ---------- */
@media (max-width: 1024px) {
  .elementor-element-b596789 {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 24px;
    padding: 12px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth touch no iOS */

    /* -------------- garantir que a scrollbar aparece -------------- */
    -ms-overflow-style: auto !important; /* IE/Edge antigo: permite scrollbar */
    scrollbar-width: thin !important; /* Firefox: mostra barra fina */
    scrollbar-color: rgba(0, 0, 0, 0.22) transparent !important; /* Firefox thumb / track */
  }

  /* ---------- WebKit (Chrome, Safari, Edge Chromium) ---------- */
  .elementor-element-b596789::-webkit-scrollbar {
    height: 10px; /* altura da scrollbar horizontal */
  }

  .elementor-element-b596789::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 8px;
    border: 2px solid transparent; /* cria espaço visual */
    background-clip: padding-box;
  }
}



/* Texto normal das descrições dos Icon Boxes */
.elementor-element-c813e17 .elementor-icon-box-content p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400 !important; /* regular */
  font-size: 16px !important;
  line-height: 21px !important;
  margin-bottom: 15px !important; /* espaçamento entre parágrafos */
  letter-spacing: 0 !important;
}

/* Container que envolve grid + botão */
.elementor-element-c813e17 {
  border-bottom: 1px solid #cecece; /* linha de 1px */
  margin-bottom: 40px;
}

@media (max-width: 768px) {

.elementor-element-c813e17 {
  margin-bottom: 00px;
}
}

#ast-hf-menu-1 {
  display: flex;        /* garante flexbox */
  gap: 12px;            /* espaço consistente entre itens */
  align-items: center;
  margin: 0;
  padding: 0;
}



#ast-hf-menu-1 > li > a.menu-link {
  line-height: 1 !important;
  border-radius: 30px !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
}

#ast-hf-menu-1 > li > a.menu-link {
  padding: 12px 12px !important;
  font-size: 16px !important;    /* tamanho da fonte */
  font-family: "Inria Sans", sans-serif !important; /* fonte */
  font-weight: 700 !important;   /* bold */
}


/* Estado ativo e hover — mesma caixa, texto centrado */
#ast-hf-menu-1 > li.current-menu-item > a.menu-link,
#ast-hf-menu-1 > li > a.menu-link:hover {
  background-color: #fff !important;
  border-radius: 30px !important;
}

.elementor-element-61aa8d5 {
  border-bottom: 1px solid #cecece; /* linha de 1px */
  margin-bottom: 30px;
}

/* Linha full width com fade fixo sobre o logo */
.ast-primary-header-bar::before {
  content: "";
  position: absolute;
  top: 67%; /* altura da linha */
  left: 0;
  width: 100vw; /* full width da página */
  height: 2px;
  transform: scaleY(0.5); /* aparência de 1px */
  transform-origin: top;
  background: linear-gradient(
    to right,
    white 0%,
    /* início da linha esquerda */ white calc((100vw - 1160px) / 2 - 250px),
    /* começa fade out antes do logo */ transparent
      calc((100vw - 1160px) / 2 + -30px),
    /* desaparece sob o logo */ transparent calc((100vw - 1160px) / 2 + 150px),
    /* continua invisível sob o logo (ajusta 150px = largura do logo) */ white
      calc((100vw - 1160px) / 2 + 440px),
    /* reaparece lado direito do logo */ white 100%
      /* continua até fim da tela */
  );
  z-index: 1;
}

/* Linha mobile */
@media (max-width: 768px) {
  .ast-primary-header-bar::before {
    background: linear-gradient(
      to left,
      white 0%,
      /* começa branco do lado direito */ white 50%,
      /* linha continua até perto do logo */ transparent 75%,
      /* começa fade out */ transparent 100% /* desaparece de vez no logo */
    );
  }
}

.elementor-element-d10ebf8,
.elementor-element-2f39a01,
.elementor-element-544987b {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centraliza verticalmente dentro do limite */
  max-height: 400px;
}

/* Linha no fundo do container FAQ */
.elementor-element-ba05a6b::after {
    content: "";
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #cecece;
    margin-top: 59px;
    margin-bottom: 30px;
}


/* Innovation & Flexibilité (os dois blocos) */
.elementor-element-dfe41c1,
.elementor-element-2d4205e {
  height: 212px !important;
}


.elementor-element-100002b{
overflow:visible;
	max-height:559px;
	
}

/* Service client de qualité */
.elementor-element-4448b2f {
  height: 119px !important;
}

[data-id="b7fbd07"] {
  display: block;
  border-bottom: 1px solid #d9d9d9; /* muda a cor se precisares */
}

.cf7-form-wrapper {
  width: 750px;
	display:block;
  min-height: 627px;
  margin: 0 auto; /* centraliza horizontalmente */
  padding: 0; /* sem padding */
  font-family: "Roboto", sans-serif;
  font-weight: 500; /* Medium */
  font-size: 14px;
  line-height: 22px;
  color: #595959; /* cor do texto */
}

.label-container.message-field {
  margin-bottom: 15px; /* espaço entre o textarea e o texto pequeno */
}

.small-text p {
  color: #888888;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  font-style: italic; /* itálico */
  margin-top: 0;
  margin-bottom: 0;
}

/* Espaço entre parágrafos consecutivos */
.small-text p + p {
  margin-top: 0px; /* apenas entre parágrafos */
}

.small-text {
  margin-bottom: 30px; /* distância entre o fim do texto e o botão */
}



/* Aplica estilo ao botão de envio do CF7 */
/* Estilo do botão de envio do CF7 */


/* Botão CF7 */
.cf7-form-wrapper .wpcf7-submit {
  display: block;
  width: 100%;       /* ocupa toda a largura do form */
  max-width: 400px;  /* não passa de 400px em ecrãs maiores */
  height: 46px;
  margin: 0 auto;    /* mantém centralizado */
	
	

	  font-family: "Roboto", sans-serif;
  font-weight: 600; /* Medium */
  font-size: 13px;
  line-height: 22px;
  color: #595959; /* cor do texto */
	
  text-align: center; /* centraliza texto horizontalmente */
  padding: 12px 20px; /* 12px top/bottom, 20px left/right */
  background: #4064fe;
  color: #fff;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  cursor: pointer;
  box-sizing: border-box; /* padding + border incluídos no width */
  height: 46px;
}

.cf7-form-wrapper .wpcf7-submit:hover {
background-color: #2f4ed9;
	color: white;
}

.button-wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.label-container input {
  margin-top: 7px;
  height: 42px;
  background-color: white;
  border: 1px solid #e4e4e4;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
}

.label-container textarea {
  margin-top: 7px;
  height: 140px;
  background-color: white;
  border: 1px solid #e4e4e4;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
}

.optional {
  color: #888888;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500; /* Medium */
}

/* Apenas para o input 'VOTRE NOM & PRÉNOM' */
.cf7-form-wrapper #your-name {
  width: 400px !important; /* força a largura */
  display: inline-block; /* evita esticar até 100% do container */
  box-sizing: border-box; /* inclui padding e border na largura */
}

/* Input 'VOTRE NOM & PRÉNOM' apenas */
.cf7-form-wrapper .cf7-input.wpcf7-text[name="your-name"] {
  width: 400px !important; /* força largura */
  display: inline-block; /* não estica todo o container */
  box-sizing: border-box; /* padding/borda incluídos */
}

.cf7-form-wrapper .two-fields {
  display: flex;
  justify-content: flex-start; /* alinha à esquerda */
  gap: 0; /* vamos controlar o gap manualmente */
}

.cf7-form-wrapper .two-fields .email-field input {
  width: 400px !important; /* largura fixa */
  margin-right: 50px; /* espaço entre os dois inputs */
  box-sizing: border-box;
  display: inline-block;
}

/* VOTRE TELEPHONE */
.cf7-form-wrapper .two-fields .phone-field input {
  width: 300px !important; /* largura fixa */
  box-sizing: border-box;
  display: inline-block;
}

.label-container.name-field {
  margin-top: 0px !important;
}

.label-container.email-field {
  margin-top: 30px !important;
}

.label-container.phone-field {
  margin-top: 30px !important;
}

.label-container.company-field {
  margin-top: 30px !important;
}

.label-container.message-field {
  margin-top: 30px !important;
}

/* Mantém a borda e o fundo dos inputs e textarea ao focar */
.cf7-form-wrapper input[type="text"],
.cf7-form-wrapper input[type="email"],
.cf7-form-wrapper input[type="tel"],
.cf7-form-wrapper textarea {
  background-color: white !important; /* força o fundo branco */
  border: 1px solid #e4e4e4 !important; /* força a borda */
  outline: none !important; /* remove outline padrão do navegador */
  box-shadow: none !important; /* remove sombra do foco */
  transition: border 0.2s ease, background-color 0.2s ease; /* suave */
}

.cf7-form-wrapper input[type="text"]:focus,
.cf7-form-wrapper input[type="email"]:focus,
.cf7-form-wrapper input[type="tel"]:focus,
.cf7-form-wrapper textarea:focus {
  background-color: white !important; /* mantém fundo */
  border: 1px solid #e4e4e4 !important; /* mantém borda */
  box-shadow: none !important; /* remove sombra */
}


/* ===========================
   MOBILE: telas <= 900px
   =========================== */

/* === Responsivo a partir de 1160px === */
@media (max-width: 990px) {
  .cf7-form-wrapper {
    width: 90%;       /* reduz a largura para caber na tela */
    max-width: 750px; /* mantém o máximo do desktop */
height: auto;

	  
	  
	  .cf7-form-wrapper .two-fields .email-field input {
  margin-right: 0 !important; /* remove margem lateral */
  margin-bottom: 40px !important; /* adiciona o mesmo espaçamento vertical dos outros campos */
}

	  
padding:0px;
    box-sizing: border-box;
  }
	
	  /* Botão no tablet */
  .cf7-form-wrapper .wpcf7-submit {
    width: 100%;       /* ocupa toda a largura disponível */
    max-width: none;   /* remove limite de 400px */
    margin: 0 auto;
    height: 46px;
  }
	

  /* Input/textarea ajustes */
  .cf7-form-wrapper input[type="text"],
  .cf7-form-wrapper input[type="email"],
  .cf7-form-wrapper input[type="tel"],
  .cf7-form-wrapper textarea {
        width: 100% !important;   /* força a larguras iguais */
    /* ocupa a largura do form wrapper */
    box-sizing: border-box;
    margin-right: 0 !important;  }

  /* Campos EMAIL e TELEFONE empilhados no mobile */
  .cf7-form-wrapper .two-fields {
    display: flex;
    flex-direction: column;
    gap: 0px;  /* espaço entre os dois inputs */
  }

  /* Campos individuais */
  .cf7-form-wrapper .two-fields .email-field input,
  .cf7-form-wrapper .two-fields .phone-field input {
    width: 100% !important;  /* override contra desktop */
    height: 42px;
  }

  /* Input da empresa */
  .cf7-form-wrapper .company-field input {
    width: 100% !important;
    height: 42px;
  }
	
/* Remove as larguras fixas */
.cf7-form-wrapper #your-name,
.cf7-form-wrapper .cf7-input.wpcf7-text[name="your-name"],
.cf7-form-wrapper .two-fields .email-field input,
.cf7-form-wrapper .two-fields .phone-field input {
  width: 100% !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

	

  /* Textarea VOTRE PROJET */
  .cf7-form-wrapper .message-field textarea {
    width: 100% !important;
    height: 140px;
  }




  /* Labels - títulos e texto explicativo */
  .cf7-form-wrapper label {
    font-family: "Roboto", sans-serif;
    font-weight: 500;   /* Medium */
    font-size: 13px;
    line-height: 22px;
    color: #595959;
  }

  .cf7-form-wrapper .small-text p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    font-style: italic;
    color: #888888;
  }
}

/* Extra ajuste em ecrãs bem pequenos (<600px) */
@media (max-width: 600px) {
  .cf7-form-wrapper {
    width: 95%; /* encolhe mais mas sempre com respiro nas bordas */
    padding: 15px;
  }

  .cf7-form-wrapper label {
    font-size: 13px;
font-weight: 600;    line-height: 20px;
  }

  .cf7-form-wrapper .wpcf7-submit {
    width: 100%;  /* botão ocupa a largura total no mobile */
    max-width: none;
  }
	
}


.elementor-element.elementor-element-21e6be3 {
  border: 1px solid #e4e4e4 !important;
  box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.2) !important;
  background-color: #ffffff !important;
}

.job-item {
  background-color: #ffffff !important;
}






/* =====================================================
   FORMULÁRIO POSTULER — VERSÃO FINAL LIMPA E ORGANIZADA
   ===================================================== */
.postuler-form-wrapper {
  margin: 0 auto; /* centraliza horizontalmente */
  padding: 0; /* sem padding */
  font-family: "Roboto", sans-serif;
  font-weight: 500; /* Medium */
  font-size: 14px;
  line-height: 22px;
  color: #595959; /* cor do texto */
}

.postuler-form-wrapper label input {
  background-color: white;
  border: 1px solid #e4e4e4;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  height: 42px;
}

/* Container dos dois campos lado a lado */
.postuler-two-fields {
  display: flex;
  gap: 30px; /* espaço entre os dois campos */
  align-items: flex-start; /* alinha labels no topo */
}

/* Campos individuais */
.postuler-field.cv-field,
.postuler-field.cover-letter-field {
  flex: 0 0 auto; /* não cresce, não encolhe */
}

/* Inputs de ficheiro (Contact Form 7 gera classe .wpcf7-form-control) */
.postuler-field.cv-field .wpcf7-form-control,
.postuler-field.cover-letter-field .wpcf7-form-control {
  width: 240px !important; /* largura fixa */
  box-sizing: border-box;
  display: inline-block;
}

/* Ajuste do label da cover letter para ficar só "LETTRE DE MOTIVATION (optionnel)" */
.postuler-field.cover-letter-field label {
  display: block;
  font-weight: 500;
}

.postuler-field.cover-letter-field label .optional {
  font-weight: 400;
  font-size: 12px;
  margin-left: 5px;
}

.postuler-small-text {
  color: #888888;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  font-style: italic; /* itálico */
  margin-top: 0px;
  margin-bottom: 0;
}

/* Seleciona parágrafos dentro do container */
.postuler-small-text p + p {
  margin-top: 0px;
  margin-bottom: 40px;
}

.postuler-two-fields {
  display: flex;
  flex-wrap: wrap; /* 👈 permite quebrar */
  gap: 20px; /* espaço entre os campos */
}

/* Seleciona links dentro do container */
.postuler-small-text a {
  color: #4064fe;
  text-decoration: underline;
}

.postuler-textarea {
  width: 100%;
  height: 80px;
  padding: 0px;
  background-color: white;
  border: 1px solid #e4e4e4;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  margin-bottom: 0px;
  resize: none; /* se não quiser redimensionamento */
  outline: none; /* remove o outline padrão */
  transition: border 0.2s ease; /* opcional, deixa mais suave */
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.postuler-textarea:focus {
  border: 1px solid #e4e4e4 !important; /* força a borda */
  background-color: white !important; /* força a cor */
  box-shadow: none !important; /* remove sombras indesejadas */
}

.postuler-button-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

/* Seletores amplos para cobrir input/button e classes do CF7 */
.postuler-button-wrap input[type="submit"] {
  display: block;
  margin-bottom: 0px;
  padding-bottom: 0px;
  background-color: #4064fe !important;
  color: #ffffff !important;
  width: 244px;
  height: 46px;
  border-top-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  font-family: "Inria Sans", sans-serif !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  padding: 0px !important;
  cursor: pointer !important;
}

/* Inputs normais (nome, email, telefone, poste recherché, etc.) */
.postuler-form-wrapper input[type="text"],
.postuler-form-wrapper input[type="email"],
.postuler-form-wrapper input[type="tel"],
.postuler-form-wrapper select {
  width: 100%;
  height: 42px;
  padding: 0 10px;
  background-color: white;
  border: 1px solid #e4e4e4;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  margin-bottom: 0;
  outline: none;
  transition: border 0.2s ease;
}

/* Estado focus (quando clicas neles) */
.postuler-form-wrapper input[type="text"]:focus,
.postuler-form-wrapper input[type="email"]:focus,
.postuler-form-wrapper input[type="tel"]:focus,
.postuler-form-wrapper select:focus {
  border: 1px solid #e4e4e4 !important; /* mantém a mesma border */
  background-color: white !important; /* mantém o fundo branco */
  box-shadow: none !important; /* remove glow azul do browser */
}

/* ====== CAMPOS EMAIL + TELEPHONE ====== */
/* No desktop: lado a lado */
.postuler-two-fields.email-phone {
  display: flex;
  gap: 30px;
}

.postuler-two-fields.email-phone .postuler-field {
  flex: 1; /* divide espaço igualmente */
  min-width: 200px; /* evita ficarem muito estreitos */
}

/* No mobile: empilhados */
@media (max-width: 768px) {
  .postuler-two-fields.email-phone {
    flex-direction: column;
    gap: 0px;
  }
}

/* ======== BLOCO EMAIL + TELEPHONE ======== */
.postuler-two-fields.email-phone {
  display: flex;
  gap: 15px;
}

.postuler-two-fields.email-phone .postuler-field {
  flex: 1; /* ocupam metade cada */
  min-width: 250px; /* não ficam demasiado estreitos */
}

/* Só empilha em telas pequenas (<600px) */
@media (max-width: 770px) {
  .postuler-two-fields.email-phone {
    flex-direction: column;
    gap:0px;
  }

  .postuler-two-fields.email-phone .postuler-field {
    width: 100%;
  }
}


/* ===== CORREÇÃO FINAL DO ESPAÇAMENTO ENTRE TEXTAREA E TEXTO PEQUENO ===== */

/* Remove qualquer margem ou padding escondido no label da textarea */
.postuler-field.message-field label {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove o espaço extra criado pelo <br /> */
.postuler-field.message-field br {
  display: none !important;
}

/* Garante que o campo de texto e o texto pequeno estão apenas 15px apartados */
.postuler-field.message-field {
  margin-bottom: 15px !important;
  padding-bottom: 0 !important;
}

/* Texto pequeno logo a seguir */
.postuler-small-text {
  margin-top: 0 !important;
}


/* Parágrafos dentro — um a seguir ao outro, sem espaçamento extra */
.postuler-small-text p {
  margin: 0; /* remove margens padrão */
  padding: 0;
}

/* Garante apenas quebra de linha normal (sem espaço vertical) */
.postuler-small-text p + p {
  margin-top: 0 !important;
}

















/* ===== MOBILE: Ajustes de espaçamento ===== */
@media (max-width: 768px) {

  /* Email + Telefone: reduzir espaçamento para igual ao do Nome → Email */
  .postuler-two-fields.email-phone {
    gap: 5px !important; /* remove o gap lateral que estava herdado do desktop */
    margin-bottom: 20px !important; /* distância até próximo bloco */
  }

  .postuler-two-fields.email-phone .postuler-field {
    margin-bottom: 15px; /* espaçamento entre email e telefone empilhados */
  }

  /* CV + Lettre de motivation: reduzir para 20px no mobile */
  .postuler-two-fields.cv-cover {
    flex-direction: column !important; /* empilha os campos */
    gap: 10px !important;              /* espaçamento exato */
    margin-bottom: 10px !important;    /* mantém distância até próximo bloco */
  }
}



@media (max-width: 768px) {

  /* Garante 20px entre todos os blocos principais */
  .postuler-form-wrapper > .postuler-field,
  .postuler-form-wrapper > .postuler-two-fields {
    margin-bottom: 20px !important;
  }

  /* Remove qualquer margem extra dentro dos grupos */
  .postuler-two-fields .postuler-field {
    margin-bottom: 0 !important;
  }

  /* Dentro dos grupos, controla o espaçamento entre os dois campos */
  .postuler-two-fields {
    gap: 20px !important;
  }

  /* Corrige CV + Lettre de motivation */
  .postuler-field.cv-field,
  .postuler-field.cover-letter-field {
    margin-bottom: 0 !important;
  }

  /* Garante que o bloco da mensagem e o texto pequeno respeitam o ritmo */
  .postuler-field.message-field {
    margin-bottom: 15px !important; /* exceção: 15px para o texto pequeno */
  }

  .postuler-small-text {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }
}


.job-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
}

.job-item {
  width: 100%;
  padding: 40px 35px 20px 36px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 1px 4px 6px 0 #00000033;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.job-time {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #888888;
}

.toggle-desc {
  background: none;
  border: none;
  font-family: "Inria Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #252525;
  text-decoration: underline;
  cursor: pointer;
  line-height: 22px;
}

.toggle-desc:hover{
	background:none;
	color: #252525; /* ✅ adiciona o # */
	
}

.toggle-desc:focus{
	background: none;
	color: #252525; /* ✅ adiciona o # */
	outline: none;   /* opcional: remove o contorno azul do foco */
}


/* === BOTÃO DE CANDIDATURA === */
.job-apply-container {
  text-align: center;
  margin-top: 40px; /* distância entre o texto e o botão */
}

.job-apply-btn {
  display: inline-block;
  background-color: #4064fe;
  color: #fff;
  font-family: 'Inria Sans', sans-serif;
  font-weight: 400; /* regular */
  font-size: 18px;
  padding: 12px 28px;
  text-decoration: none !important;   /* <-- tira o sublinhado */
  border-radius: 0px 10px 10px 10px; /* só o canto superior direito, inferior esquerdo e direito arredondados */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.job-apply-btn:hover {
	  color: #fff;


}

.job-apply-btn:focus {
	  color: #fff;


}

html {
  scroll-behavior: smooth;
}



/* Desktop: botão no topo */
.job-header .toggle-desc {
  display: inline-block;
}

/* Mobile: botão vai para o fundo */
@media (max-width: 768px) {
  .job-header .toggle-desc {
    display: none !important;
  }
/* Mobile-only button (hidden on desktop) */
.toggle-desc-mobile {
  display: none !important; /* escondido por defeito */
	
}
  .job-detail .toggle-desc-mobile {
    display: block;
    margin-top: 20px;
  }
}





/* ==============================
   MOBILE STYLES
   ============================== */
@media (max-width: 900px) {

  /* Job item - borda e border radius */
  .job-item {
    border: 1px solid #E4E4E4;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 15px; /* opcional, para dar respiro */
    box-sizing: border-box;
  }

  /* Toggle button - cor E4E4E4 */
  .job-item .toggle-desc {
    color: #4064FE;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
  }


}




.job-title {
  font-family: "Inria Sans", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #252525;
  margin-top: 5px;
}

.job-info {
  display: flex;
  margin-top: 15px;
  align-items: flex-start;
}

.info-titles p {
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 22px;
  color: #252525;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}

.info-values {
  margin-left: 40px;
}

.info-values p {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #595959;
  margin: 0 0 5px 0;
}

.job-border {
  width: 100%;
  height: 1px;
  background-color: #cecece;
  margin-top: 20px;
}

.job-detail {
  margin-top: 20px;
}

.job-item .job-detail .job-detail-section .job-detail-title {
  color: #252525;
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  margin-top: 15px;
  margin-bottom: 10px;
}

.job-item .job-detail .job-detail-section .job-detail-text {
  font-size: 16px;
  line-height: 22px;
  color: #595959;
  margin-bottom: 15px;
}

.job-detail,
.job-border {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  opacity: 0;
  margin-top: 0; /* sem espaço quando fechado */
}

.job-item.open .job-detail,
.job-item.open .job-border {
  max-height: 1000px; /* valor grande o suficiente */
  opacity: 1;
  margin-top: 20px; /* só adiciona o espaço quando aberto */
}



/* Desktop: botão no topo */
.job-header .toggle-desc {
  display: inline-block;
}

/* Esconde o botão de baixo no desktop */
.toggle-desc-mobile {
  display: none;
}

/* Mobile: esconde o botão de cima e mostra o de baixo */
@media (max-width: 768px) {
  .job-header .toggle-desc {
    display: none !important;
  }

  .toggle-desc-mobile {
    display: inline-block !important;
    color: #4064FE !important; /* mantém a cor azul do mobile */  margin-left: 0;
  text-align: left;
	  padding-left:0;
  }
}


/* Header desktop */
body.page-id-2130 header#masthead,
body.page-id-2130 .ast-primary-header-bar,
body.page-id-2130 .main-header-bar-wrap,
body.page-id-2130 .ast-main-header-wrap {
  background-color: #4064fe !important;
  height: 135px;
}

/* Header mobile */
body.page-id-2130 #ast-mobile-header,
body.page-id-2130 .ast-mobile-header-wrap {
  background-color: #4064fe !important;
}

/* Remove a linha branca/fade apenas na Privacy Policy */
body.page-id-2130 .ast-primary-header-bar::before {
  display: none !important;
}
/* Privacy Policy - Logo mobile */
body.page-id-2130 #ast-mobile-header .custom-logo {
    width: 110px !important;
    height: auto !important;
}


/* Ajusta logo para telas menores que 950px */
@media (max-width: 950px) {
  /* Seleciona o logo dentro do header mobile e desktop do Astra */
  body.page-id-2130 header#masthead .site-branding .custom-logo {
    width: 120px !important; /* largura do logo */
    height: auto !important;  /* mantém proporção */
  }
}

/* Privacy Policy mobile - menu links pretos */
@media (max-width: 950px) {
  body.page-id-2130 #primary-site-navigation-mobile .menu-link {
    color: #000000 !important; /* cor preta */
  }
  
  /* Se quiser mudar a cor ao passar o mouse */
  body.page-id-2130 #primary-site-navigation-mobile .menu-link:hover {
    color: #333333 !important; /* tom levemente mais escuro ao hover */
  }
}



/* PRIVACY POLICY PORTUGUESA */

/* Header desktop */
body.page-id-5052 header#masthead,
body.page-id-5052 .ast-primary-header-bar,
body.page-id-5052 .main-header-bar-wrap,
body.page-id-5052 .ast-main-header-wrap {
  background-color: #4064fe !important;
  height: 135px;
}

/* Header mobile */
body.page-id-5052 #ast-mobile-header,
body.page-id-5052 .ast-mobile-header-wrap {
  background-color: #4064fe !important;
}

/* Remove a linha branca/fade apenas na Privacy Policy */
body.page-id-5052 .ast-primary-header-bar::before {
  display: none !important;
}
/* Privacy Policy - Logo mobile */
body.page-id-5052 #ast-mobile-header .custom-logo {
    width: 110px !important;
    height: auto !important;
}


/* Ajusta logo para telas menores que 950px */
@media (max-width: 950px) {
  /* Seleciona o logo dentro do header mobile e desktop do Astra */
  body.page-id-5052 header#masthead .site-branding .custom-logo {
    width: 120px !important; /* largura do logo */
    height: auto !important;  /* mantém proporção */
  }
}

/* Privacy Policy mobile - menu links pretos */
@media (max-width: 950px) {
  body.page-id-5052 #primary-site-navigation-mobile .menu-link {
    color: #000000 !important; /* cor preta */
  }
  
  /* Se quiser mudar a cor ao passar o mouse */
  body.page-id-5052 #primary-site-navigation-mobile .menu-link:hover {
    color: #333333 !important; /* tom levemente mais escuro ao hover */
  }
}




/* PRIVACY POLICY espanhola */

/* Header desktop */
body.page-id-5060 header#masthead,
body.page-id-5060 .ast-primary-header-bar,
body.page-id-5060 .main-header-bar-wrap,
body.page-id-5060 .ast-main-header-wrap {
  background-color: #4064fe !important;
  height: 135px;
}

/* Header mobile */
body.page-id-5060 #ast-mobile-header,
body.page-id-5060 .ast-mobile-header-wrap {
  background-color: #4064fe !important;
}

/* Remove a linha branca/fade apenas na Privacy Policy */
body.page-id-5060 .ast-primary-header-bar::before {
  display: none !important;
}
/* Privacy Policy - Logo mobile */
body.page-id-5060 #ast-mobile-header .custom-logo {
    width: 110px !important;
    height: auto !important;
}


/* Ajusta logo para telas menores que 950px */
@media (max-width: 950px) {
  /* Seleciona o logo dentro do header mobile e desktop do Astra */
  body.page-id-5060 header#masthead .site-branding .custom-logo {
    width: 120px !important; /* largura do logo */
    height: auto !important;  /* mantém proporção */
  }
}

/* Privacy Policy mobile - menu links pretos */
@media (max-width: 950px) {
  body.page-id-5060 #primary-site-navigation-mobile .menu-link {
    color: #000000 !important; /* cor preta */
  }
  
  /* Se quiser mudar a cor ao passar o mouse */
  body.page-id-5060 #primary-site-navigation-mobile .menu-link:hover {
    color: #333333 !important; /* tom levemente mais escuro ao hover */
  }
}




/* PRIVACY POLICY INGLESA */

/* Header desktop */
body.page-id-5065 header#masthead,
body.page-id-5065 .ast-primary-header-bar,
body.page-id-5065 .main-header-bar-wrap,
body.page-id-5065 .ast-main-header-wrap {
  background-color: #4064fe !important;
  height: 135px;
}

/* Header mobile */
body.page-id-5065 #ast-mobile-header,
body.page-id-5065 .ast-mobile-header-wrap {
  background-color: #4064fe !important;
}

/* Remove a linha branca/fade apenas na Privacy Policy */
body.page-id-5065 .ast-primary-header-bar::before {
  display: none !important;
}
/* Privacy Policy - Logo mobile */
body.page-id-5065 #ast-mobile-header .custom-logo {
    width: 110px !important;
    height: auto !important;
}


/* Ajusta logo para telas menores que 950px */
@media (max-width: 950px) {
  /* Seleciona o logo dentro do header mobile e desktop do Astra */
  body.page-id-5065 header#masthead .site-branding .custom-logo {
    width: 120px !important; /* largura do logo */
    height: auto !important;  /* mantém proporção */
  }
}

/* Privacy Policy mobile - menu links pretos */
@media (max-width: 950px) {
  body.page-id-5065 #primary-site-navigation-mobile .menu-link {
    color: #000000 !important; /* cor preta */
  }
  
  /* Se quiser mudar a cor ao passar o mouse */
  body.page-id-5065 #primary-site-navigation-mobile .menu-link:hover {
    color: #333333 !important; /* tom levemente mais escuro ao hover */
  }
}



/* PRIVACY POLICY alemã */

/* Header desktop */
body.page-id-5072 header#masthead,
body.page-id-5072 .ast-primary-header-bar,
body.page-id-5072 .main-header-bar-wrap,
body.page-id-5072 .ast-main-header-wrap {
  background-color: #4064fe !important;
  height: 135px;
}

/* Header mobile */
body.page-id-5072 #ast-mobile-header,
body.page-id-5072 .ast-mobile-header-wrap {
  background-color: #4064fe !important;
}

/* Remove a linha branca/fade apenas na Privacy Policy */
body.page-id-5072 .ast-primary-header-bar::before {
  display: none !important;
}
/* Privacy Policy - Logo mobile */
body.page-id-5072 #ast-mobile-header .custom-logo {
    width: 110px !important;
    height: auto !important;
}


/* Ajusta logo para telas menores que 950px */
@media (max-width: 950px) {
  /* Seleciona o logo dentro do header mobile e desktop do Astra */
  body.page-id-5072 header#masthead .site-branding .custom-logo {
    width: 120px !important; /* largura do logo */
    height: auto !important;  /* mantém proporção */
  }
}

/* Privacy Policy mobile - menu links pretos */
@media (max-width: 950px) {
  body.page-id-5072 #primary-site-navigation-mobile .menu-link {
    color: #000000 !important; /* cor preta */
  }
  
  /* Se quiser mudar a cor ao passar o mouse */
  body.page-id-5072 #primary-site-navigation-mobile .menu-link:hover {
    color: #333333 !important; /* tom levemente mais escuro ao hover */
  }
}




/* quando n ha vagas mostra um card */
.job-item.no-jobs {
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  text-align: center;
}

.elementor-element-66b3236 .elementor-heading-title {
  visibility: hidden; /* fica invisível mas ocupa espaço */
}

.js-ready .elementor-element-66b3236 .elementor-heading-title {
  visibility: visible; /* volta a aparecer depois do JS */
}
/* ==============================
   SPONTANEE FORM (responsivo)
   ============================== */

/* Wrapper principal */
.spontanee-form-wrapper {
  width: 100%;
  max-width: 1000px !important;    /* limita ao desejado */
  margin: 0 auto;       /* centraliza */
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #595959;
  background-color: white;
  padding: 30px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .spontanee-form-wrapper {
    padding-left: 15px;
    padding-right: 15px;  /* 👈 garante respiro dos dois lados */
    width: calc(100% - 30px); /* largura total menos padding */
    box-sizing: border-box;
  }
}

/* Labels */
.spontanee-form-wrapper label {
  display: block;
  font-weight: 500;
  margin-top: 20px;
  font-size: 14px;
}

/* Inputs e textarea */
.spontanee-form-wrapper input[type="text"],
.spontanee-form-wrapper input[type="email"],
.spontanee-form-wrapper input[type="tel"],
.spontanee-form-wrapper input[type="file"],
.spontanee-form-wrapper textarea {
  width: 100%;           /* 👈 ocupa sempre o container */
  height: 42px;
  padding: 0 10px;
  margin-top: 5px;
  background-color: white;
  border: 1px solid #e4e4e4;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  box-sizing: border-box; /* padding+border dentro da largura */
  transition: border 0.2s ease;
  outline: none;
}

/* Textarea maior */
.spontanee-form-wrapper textarea {
  height: 140px;
  resize: none; /* opcional */
}

/* Estado focus */
/* Mantém o mesmo estilo no focus */
.spontanee-form-wrapper input:focus,
.spontanee-form-wrapper textarea:focus {
  border: 1px solid #e4e4e4;  /* mesma cor que o normal */
  background-color: white;     /* mantém fundo igual */
  outline: none;               /* remove outline azul do navegador */
  box-shadow: none;            /* remove sombra */
}
/* Mantém estilo igual no focus para todos os campos CF7 */
.spontanee-form-wrapper .wpcf7-form-control:focus {
  border: 1px solid #e4e4e4 !important; /* mesma cor do normal */
  background-color: white !important;   /* mantém fundo branco */
  outline: none !important;             /* remove outline azul do navegador */
  box-shadow: none !important;          /* remove qualquer sombra */
}


/* Botão */
.spontanee-form-wrapper .wpcf7-submit {
  display: block;
  margin: 30px auto 0 auto;
  font-family: "Inria Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  background: #4064fe;
  color: #fff;
  border: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  cursor: pointer;
  box-sizing: border-box;
  height: 46px;
  width: 244px;
  transition: background-color 0.3s ease;
}

.spontanee-form-wrapper .wpcf7-submit:hover {
  background-color: #2f4ed9;
}

/* Texto pequeno / explicativo */
.spontanee-small-text {
  color: #888888;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  font-style: italic;
  margin-top: 10px;
}

.spontanee-small-text a {
  color: #4064fe;
  text-decoration: underline;
}

/* ==============================
   Responsividade extra
   ============================== */
@media (max-width: 600px) {
  .spontanee-form-wrapper {
    padding: 20px;
  }

  .spontanee-form-wrapper label {
    font-size: 13px;
  }

  .spontanee-form-wrapper .wpcf7-submit {
    width: 100%;  /* botão ocupa a largura total */
    max-width: none;
  }
}




/* Força o estilo do botão mesmo quando é clicado ou focado */
.spontanee-form-wrapper .wpcf7-submit:focus,
.spontanee-form-wrapper .wpcf7-submit:active {
  background: #4064fe !important;
  color: #fff !important;
  outline: none !important;
  box-shadow: none !important;
}






/* ---------- Desktop: grid 3x (360x400) ---------- */
.icon-box-container {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  align-items: start;
  box-sizing: border-box;
}

/* Cada icon box: tamanho fixo e estrutura flex */
.icon-box-container .elementor-widget-icon-box {
  width: 360px;
  height: 400px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* conteúdo começa no topo */
}

/* Ícone (parte fixa) */
.icon-box-container .elementor-icon-box-icon {
}

/* Conteúdo cresce mas não faz a box esticar além dos 400px */
.icon-box-container .elementor-icon-box-content {
  display: flex;
  flex-direction: column;
  min-height: 0; /* garante que o overflow funciona corretamente */
}

/* Título e descrição (desktop) */
.icon-box-container .elementor-icon-box-title {
  font-size: 24px;
}
.icon-box-container .elementor-icon-box-description {
  font-size: 16px;
}

/* ---------- Tablet / Mobile: scroll horizontal e tamanho 300x400 ---------- */
@media (max-width: 1024px) {
  .icon-box-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    padding: 16px;
    scroll-snap-type: x mandatory; /* snap agradável */
    -webkit-overflow-scrolling: touch; /* smooth touch on iOS */
  }

  .icon-box-container .elementor-widget-icon-box {
    flex: 0 0 300px; /* força 300px de largura */
    width: 300px;
    height: 400px; /* fixa 400px de altura */
    scroll-snap-align: start;
  }

  /* Fontes menores no tablet/mobile */
  .icon-box-container .elementor-icon-box-title {
    font-size: 22px;
  }
  .icon-box-container .elementor-icon-box-description {
    font-size: 14px;
  }
}

/* Pequeno ajuste visual para esconder scrollbars (opcional) */
.icon-box-container::-webkit-scrollbar {
  display: none;
}
.icon-box-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ---------- Segurança: garantir que Elementor não força larguras estranhas ---------- */
/* Força comportamento de largura dos widgets (override de settings do Elementor se necessário) */
.icon-box-container .elementor-widget {
  max-width: none !important;
  width: auto !important;
}

/* ---------------- Desktop ---------------- */
.icon-box-container .elementor-icon-box-description p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 21px;
}

/* ---------------- Tablet e Mobile ---------------- */
@media (max-width: 1150px) {
  .icon-box-container .elementor-icon-box-description p {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 20px;
  }
}






/* Força o tamanho das bandeiras no header */
#ast-hf-menu-1 .lang-item img {
    width: 25px !important;
    height: 19px !important;
    display: inline-block;
}


/* Bandeira do idioma atual no switcher */
.pll-parent-menu-item > a > img {
    width: 25px !important;
    height: 19px !important;
}


/* Todas as bandeiras do menu de idiomas */
.pll-parent-menu-item ul.sub-menu img {
    width: 25px !important;
    height: 19px !important;
}

/* Bandeira do idioma atualmente selecionado */
.pll-parent-menu-item.menu-item-has-children > a > img {
    width: 25px !important;
    height: 19px !important;
    max-width: none !important;
}

#ast-hf-menu-1 li a {
    margin-bottom: 30px; /* reduz espaço abaixo → sobe */
}

/* === CORREÇÃO DROPDOWN LÍNGUAS - COLADO AO BOTÃO === */
#ast-hf-menu-1 .pll-parent-menu-item {
  position: relative !important; /* o dropdown posiciona-se em relação ao botão */
}

#ast-hf-menu-1 .pll-parent-menu-item > .sub-menu {
  position: absolute !important;
  top: 60% !important;  /* fica imediatamente abaixo do botão */
  left: 0 !important;    /* alinhado com o botão */
  margin-top: 0 !important;
  transform: none !important;
  transition: none !important;
}




/* Esconde qualquer language switcher do Polylang que esteja no footer */
footer .pll-parent-menu-item,
.site-footer .pll-parent-menu-item,
.ast-footer .pll-parent-menu-item {
  display: none !important;
}



/* Esconder/mostrar conforme o tamanho do ecrã */
.footer-desktop {
  display: block;
}

.footer-mobile {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-desktop {
    display: none !important;
  }
  .footer-mobile {
    display: block !important;
  }
	

}





/* Apenas mobile */
@media (max-width: 768px) {

  /* Coloca o container principal em relativo para referência do absolute */
  .site-primary-footer-wrap.ast-footer-row-mobile-inline {
    position: relative;
  }

  /* Terceira coluna (ícones sociais) em absolute no canto superior direito */
  .site-footer-primary-section-3 {
	  
    position: absolute !important;
    top: 40px; /* ajusta se precisares */
    right: 30px; /* ajusta se precisares */
    display: flex;
    flex-direction: column;
    gap: 30px; /* espaço entre ícones */
  }

  /* Garante que cada link de ícone não tente ficar lado a lado */
  .site-footer-primary-section-3 .footer-social-item {
    display: block !important;
  }

/* Apenas para o footer abaixo */
.site-below-footer-wrap p,
.site-below-footer-wrap span {
    margin: 0 !important;
    padding: 0 !important;
}
.site-below-footer-inner-wrap {
    display: flex;
    justify-content: space-between; /* ou flex-start se quiseres encostar */
    align-items: center; /* centraliza verticalmente */
    gap: 0; /* remove espaçamento extra */
}

}


.job-detail h3 {
	margin-top:25px;
}

.job-detail p{
margin-top:0px !important;
}



.p-sticky {
	position: sticky;
	top: 30px;
}