/*
Theme Name:         GFA
Description:        GFA Theme
Version:            1.0
Author:             wevolved

Text Domain:        GFA
*/

/* Configurações BASE */
* {
	box-sizing: border-box;
}

html,
body {
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
	/* user-select: none;  */
}

/* desativar scroll quando adicionada a classe disableScroll ao HTML */
html.disableScroll {
	overflow-y: hidden;
}

img {
	max-width: 100%;
}

/********* Alterar o scroll bar **********/
html {
	scrollbar-width: thin; /* Adjust the width of the scrollbar */
	scrollbar-color: #888 transparent; /* Adjust the color of the scrollbar */
}

/* Define the style for the scrollbar track */
html::-webkit-scrollbar {
	width: 4px; /* Adjust the width of the scrollbar */
}

/* Define the style for the scrollbar thumb */
html::-webkit-scrollbar-thumb {
	background-color: #888; /* Adjust the color of the scrollbar thumb */
	border-radius: 4px; /* Adjust the border radius of the scrollbar thumb */
}

/* Style for scrollbar track (background) */
html::-webkit-scrollbar-track {
	background-color: var(--white); /* Background color of the scrollbar track */
}
/********* FIM DE Alterar o scroll bar **********/

/* Reset comportamento de links */
a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	color: var(--black);
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
input {
	margin: 0px;
	/* para que as fonts fiquem com linha mais fina */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a,
span {
	/* para que as fonts fiquem com linha mais fina */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a {
	overflow-wrap: anywhere;
}

/**************** COMPONENTES DE FORMULARIOS **************/
/* Colocar os placeholders dos inputs com cor normal, remover o cinzento */
input::placeholder {
	color: var(--white);
	opacity: 1; /* Firefox */
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px var(--black) inset !important;
	-webkit-text-fill-color: var(--white) !important;
}

/* Change the white to any color */
.white input:-webkit-autofill,
.white input:-webkit-autofill:hover,
.white input:-webkit-autofill:focus,
.white input:-webkit-autofill:active,
.white select:-webkit-autofill,
.white select:-webkit-autofill:hover,
.white select:-webkit-autofill:focus,
.white select:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
	-webkit-text-fill-color: var(--black) !important;
}

input:focus,
select:focus {
	outline: none !important;
}

/* Remover incremento de número - Chrome, Safari, Edge, Opera  */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* remover espaçamentos */
.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li,
.vc_btn3-container {
	margin-bottom: 0px !important;
}

ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

/**************** FONTS ****************/
/* Fonts */
@font-face {
	font-family: "Helvetica";
	src: url("fonts/Helvetica.woff") format("woff");
	font-weight: 400;
}

/* Cormorant */
@font-face {
	font-family: "Apercu Mono Pro";
	src: url("fonts/ApercuMonoProRegular.ttf") format("ttf");
	font-weight: 400;
}


/* Headers */
h1 {
	font-size: var(--font64);
	font-family: var(--gfa--Helvetica);
	font-weight: 400;
	letter-spacing: -2px;
	line-height: var(--line64);
}

h2 {
	font-size: var(--font48);
	font-family: var(--gfa--Helvetica);
	font-weight: 400;
	letter-spacing: -2px;
	line-height: var(--line52);
}

h3 {
	font-size: var(--font40);
	font-family: var(--gfa--Helvetica);
	font-weight: 400;
	line-height: var(--line44);
}

h4 {
	font-size: var(--font32);
	font-family: var(--gfa--Helvetica);
	font-weight: 400;
	line-height: var(--line36);
}

h5 {
	font-size: var(--font24);
	font-family: var(--gfa--Helvetica);
	font-weight: 400;
	line-height: var(--line28);
}

/* Fonts default */
p,
a,
label,
input,
select,
textarea,
option {
	font-size: 16px;
	resize: none;
}

/* Variáveis p/ reutilizar */
:root {
	/**************************** FONT FAMILY **************************/
    --gfa--Apercu: "Apercu Mono Pro", Helvetica, Arial, sans-serif;
    --gfa--Helvetica: "Helvetica", Arial, sans-serif;
	/**************************** Fontes **************************/
	--font64: 64px;
	--font48: 48px;
	--font40: 40px;
	--font32: 32px;
	--font24: 24px;
	--font18: 18px;
	--font16: 16px;
	--font14: 14px;
	--font12: 12px;
	/**************************** LINE HEIGHT **************************/
    --line64:64px;
	--line52:52px;
	--line44:44px;
	--line36:36px;
	--line28:28px;
	--line24:24px;
	--line20:20px;
	--line18:18px;
	--line16:16px;
    /**************************** CORES *********************************/
	--azul500:#11375f;
    --azul400:#405e7e;
    --azul300:#94a7c5;
    --pseudobranco:#f1f2f5;
    --branco:#fcfcfc;
    --gfa-line: rgba(255,255,255,.35);
    --gfa-blue: #123f6d;
  --gfa-deep: #071f38;
  --gfa-light: #f4f7fb;
}

/* Remover paddings */
.noPadding {
	padding-left: 0px;
	padding-right: 0px;
}

/* REGRAS PARA PROJETO */
body {
	/* margin:0px */
	overflow-x: hidden;
}

/* esconder badge do recaptcha */
.grecaptcha-badge {
	visibility: hidden !important;
}

/* esconder WPML no footer */
.otgs-development-site-front-end {
	display: none;
}

.container{
    width: calc(100% - 128px);
    margin: auto;
    padding: 0px !important;
}
/* ------------------------------ PRELOADER ------------------------------- */

/* PRELOADER BASE */
.gfa-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--gfa-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .3s ease;

}


.gfa-preloader.is-start::before {
  animation: gfaCut 900ms cubic-bezier(.76,0,.24,1) forwards;
}

.gfa-preloader.is-start::after {
  animation: gfaCut 900ms cubic-bezier(.76,0,.24,1) 120ms forwards;
}

.gfa-preloader.is-out {
  animation: gfaExit 800ms cubic-bezier(.76,0,.24,1) forwards;
    opacity: 0;

}



/* INNER */
.gfa-preloader__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: min(700px, 90vw);
}

/* WORDS */
.gfa-preloader__word-wrap {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-bottom: 30px;
}

.gfa-preloader__word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:var(--font48);
  font-family: var(--gfa--Helvetica);
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(35px);
  text-transform: uppercase;
}

/* LOGO */
.gfa-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(.95);
}

.gfa-preloader.is-start .word-4 {
  animation: wordLogo 900ms ease 400ms forwards;
}

.gfa-preloader.is-start .word-4 .gfa-logo {
  animation: logoFade 900ms ease 400ms forwards;
}

/* LINE */
.gfa-preloader__rule {
  width: 0;
  height: 1px;
  margin: 0 auto 20px;
  background: var(--gfa-line);
}

.gfa-preloader.is-start .gfa-preloader__rule {
  animation: ruleGrow 700ms ease 1100ms forwards;
}

.gfa-preloader.is-start .gfa-preloader__caption {
  animation: fadeUp 600ms ease 1300ms forwards;
}

/* CAPTION */
.gfa-preloader__caption {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  color: rgba(255,255,255,.7);
  font-family: var(--gfa--Apercu);
}


/* ANIMATIONS */

@keyframes gfaCut {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(1); }
}

@keyframes wordInOut {
  0% { opacity: 0; transform: translateY(30px); }
  25% { opacity: 1; transform: translateY(0); }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-30px); }
}

@keyframes wordLogo {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes logoFade {
  0% { opacity: 0; transform: scale(.95); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes ruleGrow {
  from { width: 0; }
  to { width: 260px; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gfaExit {
  to { transform: translateY(-100%); }
}
/*------------------------------------------  MENU ----------------------------------------- */

.header__toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.header__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
}

.header.menu-open .header__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header.menu-open .header__toggle span:nth-child(2) {
    opacity: 0;
}

.header.menu-open .header__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}



header{
	padding:34px 64px 34px 64px ;
}

.header__container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__menu{
	display: flex;
	gap: 32px;
}

.header__menu li a {
    font-family: var(--gfa--Helvetica);
    font-size: var(--font16);
    font-weight: 400;
    line-height: var(--line20);
    color: var(--azul500);
    transition: color 150ms linear;
    position: relative;
    padding-bottom: 3px;
}

.header__menu li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--azul400);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 150ms ease-in-out;
}

.header__menu li a:hover {
    color: var(--azul400);
}

.header__menu li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__menu .menu-item-23 a,.botao-artigos a, .parte-dir a,.cf7-contact-form input[type="submit"]  {
    font-family: var(--gfa--Apercu);
    color: var(--branco);
    padding: 13px 20px 10px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
    line-height: var(--line16);
    background-image: linear-gradient(to top, var(--azul400) 50%, var(--azul500) 50%);
    background-size: 100% 200%;
    background-position: top;
    transition: background-position 150ms ease-in-out;
}

.header__menu .menu-item-23 a:hover,.botao-artigos a:hover, .parte-dir a:hover, .cf7-contact-form input[type="submit"]:hover {
    background-position: bottom;
    color: var(--branco);
}

.header__menu .menu-item-23 a:hover::after{
	display: none;
}
/*------------------------------------------  BACK1 ----------------------------------------- */
.back1 {
    padding: 40px 0 80px 0;
}

.back1 h1, .back-sobre h1{
    width: 90%;
	max-width: 100%;
	color: var(--azul500);
}

.back1 p{
	font-size: var(--font18);
	line-height: var(--line24);
	color: var(--azul500);
	font-weight: 400;
	font-family: var(--gfa--Helvetica);
}

.parte1{
	margin-bottom:24px !important ;
}

.img1 .vc_figure,.img1 .vc_single_image-wrapper,.img1 .vc_single_image-wrapper img,.img2 .vc_figure,.img2 .vc_single_image-wrapper,.img2 .vc_single_image-wrapper img{
	width: 100%;
}
/*------------------------------------------  BACK2 ----------------------------------------- */
.back2{
	padding-bottom: 160px;
	display: flex;
	align-items: stretch;
}

.back2 .parte1 p:first-child,.back3 p,.back-sobre .parte20 p,.parte-tex > .vc_column-inner > .wpb_wrapper > .wpb_text_column:first-of-type > .wpb_wrapper > p:first-child, .areas-back > .wpb_column:first-child > .vc_column-inner > .wpb_wrapper > .wpb_text_column:first-of-type > .wpb_wrapper 
> p:first-child,.single-artigo-categoria,.contactos .wpb_column:first-child > .vc_column-inner > .wpb_wrapper > .wpb_text_column:first-of-type > .wpb_wrapper > p:first-child,.pol .wpb_column:first-child > .vc_column-inner > .wpb_wrapper > .wpb_text_column:first-of-type > .wpb_wrapper > p:first-child
{
	font-family: var(--gfa--Apercu);
	font-size: var(--font12);
	line-height: var(--line16);
	color: var(--azul500);
	font-weight: 400;
	text-transform: uppercase;
	padding: 11px 14px 8px 14px;
	border-radius: 100px;
	border: 1px solid var(--azul500);
	display: inline-block;
	margin-bottom: 32px !important;
    width: fit-content;
}

.back2 .parte1 h2, .back3 h2{
	font-family: var(--gfa--Helvetica);
	font-size: var(--font48);
	font-weight: 400;
	line-height: var(--line52);
	letter-spacing: -2px;
	color: var(--azul500);
	margin-bottom: 24px !important;
}

.back2 .parte1 p:last-child,.back-sobre p:nth-child(2),.back-sobre p:nth-child(2),.parte-tex > .vc_column-inner > .wpb_wrapper > .vc_row > .wpb_column > .vc_column-inner > .wpb_wrapper > .wpb_text_column > .wpb_wrapper > p,.gfa-equipa-card-titulo {
    font-family: var(--gfa--Helvetica);
    font-size: var(--font18);
    line-height: var(--line24);
    color: var(--azul500);
    font-weight: 400;
}

.back2 .parte1 p:last-child{
  width: 65%;
    max-width: 100%;
}

.back2 .parte2 p strong{
	font-family: var(--gfa--Helvetica);
	font-size: var(--font48);
	font-weight: 400;
	line-height: var(--line52);
	letter-spacing: -2px;
	color: var(--azul500);
}

.back2 .parte2 p{
	margin-top: 16px !important;
	font-family: var(--gfa--Apercu);
	font-size: var(--font16);
	line-height: var(--line20);
	color: var(--azul500);
	font-weight: 400;
	text-transform: uppercase;
}

.number1{
	border-left: 1px solid var(--azul500);
	padding-left: 32px;
	margin-bottom: 48px !important;
}

.back2 .parte0 > .vc_column-inner > .wpb_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.back2 .parte0 .vc_column-inner{
	height: 100%;
}
/*------------------------------------------  BACK3 ----------------------------------------- */
.wevolved-artigos-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
	margin-bottom:80px !important ;
}

.artigo-card{
    border:1px solid var(--pseudobranco);
    padding:32px;
    background:white;
    min-height:275px;
    display:flex;
    flex-direction:column;
    transition: background-color 150ms ease;
}

.artigo-card:hover{
    background-color: var(--pseudobranco);
}

.artigo-topo{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:26px;
}

.artigo-avatar-wrap{
    flex:0 0 52px;
    width:52px;
    height:52px;
    border-radius:50%;
    overflow:hidden;
}

.artigo-avatar{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.artigo-autor{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-top:2px;
}

.artigo-autor strong{
    font-family: var(--gfa--Helvetica);
    font-size: var(--font18);
    font-weight: 400;
    line-height: var(--line24);
    color: var(--azul500);
    margin:0 0 4px 0;
}

.artigo-data,.artigo-autor span{
    font-family: var(--gfa--Apercu);
    font-size: var(--font12);
    font-weight: 400;
    line-height: var(--line16);
    text-transform: uppercase;
     color: var(--azul300);
}

.artigo-autor span{
     margin:0;
}

h4.artigo-titulo{
    margin:0 0 8px 0;
}

h4.artigo-titulo{
    font-family: var(--gfa--Helvetica);
    font-size: var(--font32);
    font-weight: 400;
    line-height: var(--line36);
    color: var(--azul500);
    text-decoration:none;
    display:block;
	width: 100%;
}



.artigo-subtitulo{
    font-family: var(--gfa--Helvetica);
    font-size: var(--font14);
    font-weight: 400;
    line-height: var(--line18);
    color: var(--azul500);
    margin:0 0 8px 0;
	width: 310px;
    max-width: 100%;
}

.artigo-subtitulo p{
    margin:0;
}

.artigo-data{
    letter-spacing: 0px;
}

.wevolved-artigos-grid .artigo-card-link:nth-child(3n+1) .artigo-card{
    height: 350px;
}

.wevolved-artigos-grid .artigo-card-link:nth-child(3n+2) .artigo-card{
    height: 294px;
}

.wevolved-artigos-grid .artigo-card-link:nth-child(3n) .artigo-card{
    height: 330px;
}

.back3 h2{
    margin-bottom: 64px !important;
}

.botao-artigos{
    display: flex;
    justify-content: center;
    margin-bottom: 80px !important;
}


/************************************* FOOTER ***************************/

.gfa-footer{
    background: var(--azul500);
    color: #fff;
    font-family: var(--gfa--Helvetica);
}

.gfa-footer-container{

    padding: 80px 64px 32px 64px;
}

.gfa-footer-top {
    display: grid;
    grid-template-columns: 400px 1fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    justify-items: start;
}


.gfa-footer-logo img{
    max-width: 180px;
}

.gfa-footer-col h6{
    font-family: var(--gfa--Apercu);
    font-size: var(--font12);
    line-height: var(--line16);
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--branco);
}

.gfa-footer-col ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.gfa-footer-col ul li{
    margin-bottom:8px;
}

.gfa-footer-col a{
    font-family: var(--gfa--Helvetica);
    color: var(--branco);
    text-decoration: none;
    font-size: var(--font14);
    line-height: var(--line18);
    transition: opacity 150ms ease;
    font-weight: 400;

}

.gfa-footer-col a:hover{
    opacity: 0.7;
}



.gfa-footer-col span{
    font-weight: 400;
    color: var(--branco);
    font-size: var(--font14);
    line-height: var(--line18);
    font-family: var(--gfa--Helvetica);
}

.gfa-social{
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--branco);
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.gfa-footer-bottom {
    margin-top: 120px;
    padding-top: 32px;
    border-top: 1px solid #FCFCFC;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gfa-footer-copy,
.gfa-footer-credit,.link-wev{
    font-family: var(--gfa--Helvetica);
    font-size: var(--font14);
    line-height: var(--line18);
    color: var(--branco);
}
/*------------------------------  SOBRE NÓS ------------------------------------------------ */
.back-sobre{
    margin-top: 40px;
    margin-bottom: 168px !important;
}

.back-sobre h1{
    width: 55%;
    margin-bottom: 16px !important;
}

.back-sobre p:nth-child(2){
    width:63% ;
    max-width: 100%;
    margin-bottom: 85px !important;
}

.gfa-equipa-cargo-titulo{
color: var(--azul500);
margin-bottom: 16px !important;
}

.gfa-equipa-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:24px;
}

.gfa-equipa-card-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/4;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom:16px !important ;
}

.gfa-equipa-card-titulo{
    margin:0 0 4px 0;
}

.gfa-equipa-card-funcao{
    font-family: var(--gfa--Apercu);
    font-size: var(--font12);
    line-height: var(--line16);
    text-transform: uppercase;
    color: var(--azul300);
    margin:0;
}

.gfa-equipa-card-funcao{
    margin-bottom:80px !important ;
}

.back-sobrefim{
    height: 691px;
}


.valores-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--branco);
    padding: 24px;
    border-radius: 16px;
    min-width: 320px;
    transition: all 150ms ease;
    z-index: 99;
}

.valores-text p{
    font-family: var(--gfa--Apercu);
    font-size: var(--font12);
    line-height: var(--line16);
    text-transform: uppercase;
    color: var(--azul500);
    margin: 0;
    background-color: #F1F2F5;
    border-radius: 36px;

    opacity: 0;
    transform: translateY(10px);
    max-height: 0;
    overflow: hidden;
    padding: 0 14px;
    transition: opacity .3s ease, transform .3s ease, max-height .3s ease, padding .3s ease, margin .3s ease;
}

/* primeiro sempre visível */
.valores-text p:first-child{
    opacity: 1;
    transform: translateY(0);
    max-height: 50px;
    padding: 11px 14px 8px 14px;
}

/* ao hover da altura aparecem todos */
.altura:hover .valores-text p{
    opacity: 1;
    transform: translateY(0);
    max-height: 50px;
    padding: 11px 14px 8px 14px;
}

.altura:hover .valores-text{
    box-shadow: 0px 0px 48px 0px rgba(17, 55, 95, 0.6);
}

/* margem só entre items visíveis */
.altura:hover .valores-text p:not(:last-child){
    margin-bottom: 12px;
}

/* delays */
.altura:hover .valores-text p:nth-child(2){ transition-delay: .1s; }
.altura:hover .valores-text p:nth-child(3){ transition-delay: .2s; }
.altura:hover .valores-text p:nth-child(4){ transition-delay: .3s; }
.altura:hover .valores-text p:nth-child(5){ transition-delay: .4s; }

.altura {
    position: relative;
    overflow: hidden;
}


.altura > .vc_column-inner::before {
    height: 100%;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    width: 100%;
    transition: background-color 600ms ease;
}

.altura:hover > .vc_column-inner::before {
    background-color: rgba(17, 55, 95, 0.4);
}

.altura:hover .valores-text p:hover{
    background-color: var(--azul500);
    color: var(--branco);
}

.altura .wpb_wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
}

.parte-tex > .vc_column-inner{
    padding: 80px !important;
}

.parte-tex h3{
    color: rgba(17, 55, 95, 1);
}

.parte-tex .wpb_wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.parte-tex > .vc_column-inner > .wpb_wrapper > .vc_row > .wpb_column > .vc_column-inner > .wpb_wrapper > .wpb_text_column > .wpb_wrapper > p {
    width: 57%;
    max-width: 100%;
}
/*------------------------------  ÁREAS DE PRÁTICA ---------------------------------------------- */
.areas-back{
    margin-top:40px;
    margin-bottom: 120px !important;
}

.areas-back h1{
    color: var(--azul500);
    margin-bottom:40px !important;
    width: 70%;
    max-width: 100%;
}

.areas h5 {
    background: var(--pseudobranco);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px !important;
    margin-right: 24.5%;
    color: var(--azul500);
    transition: all 150ms ease;
}

.areas h5:hover{
    background-color: var(--azul500);
    color: var(--branco);
}

.parte-dir h4{
    color: var(--azul500);
    margin-bottom: 45px !important;
}

.parte-dir .vc_column-inner {
    padding-left: 37% !important;
}

.areas-back {
  position: relative !important;
}

.areas-back .parte-dir {
  box-sizing: border-box;
}

.maplibregl-ctrl.maplibregl-ctrl-attrib.maplibregl-compact.maplibregl-compact-show{
    display: none;
}
/*------------------------------  OPINIÃO JURÍDICA ------------------------------------------------ */
.back3.opinião{
    padding: 40px 0px 120px 0px;
}

.back3.opinião .wevolved-artigos-grid{
    align-items: stretch; 
}

.back3.opinião .wevolved-artigos-grid .artigo-card-link:nth-child(3n+2) .artigo-card, .back3.opinião .wevolved-artigos-grid .artigo-card-link:nth-child(3n+1) .artigo-card, .back3.opinião .wevolved-artigos-grid .artigo-card-link:nth-child(3n) .artigo-card{
    height: 100%;
}

.paginacao-artigos{
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.paginacao-artigos .page-numbers{
    font-family: var(--gfa--Helvetica);
    font-size: var(--font14);
    line-height: var(--line18);
    color: var(--azul300);
    font-weight: 400;
    cursor: pointer;
    transition: color 150ms ease;
}

.page-numbers.current{
    color: var(--azul500);
}

.prev.page-numbers,
.next.page-numbers{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--azul500);
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    overflow: visible;
}

.prev.page-numbers img,
.next.page-numbers img{
    width: 14px;
    height: 14px;
    display: block;
}

.paginacao-artigos{
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    overflow: visible;
}
/*------------------------------  SINGLE NOTICIAS ------------------------------------------------ */
.single-artigo-gfa{
    margin-top:30px;
    color: var(--azul500);
    position: relative;
    padding-bottom: 120px;
}

.single-artigo-voltar{
    position: absolute;
    font-family: var(--gfa--Apercu);
    font-size: var(--font12);
    line-height: var(--line16);
    text-transform: uppercase;
    color: var(--azul500);
    text-decoration: underline !important;
    text-underline-offset: 2px;
    font-weight: 400;
    top:9px;
}

.single-artigo-hero{
    max-width: 572px;
    margin: 0 auto 80px;
    text-align: center;
}


.single-artigo-titulo {
    color: var(--azul500);
    margin: 0 0 24px;
    width: 100%;
    margin: 0 auto 24px auto;
}

.single-artigo-subtitulo{
    width: 100%;
    margin: 0 auto 24px;
    font-family: var(--gfa--Helvetica);
    font-size: var(--font18);
    line-height: var(--line24);
    color: var(--azul500);
    font-weight: 400;
}

.single-artigo-data{
    font-weight: 400;
    font-family: var(--gfa--Apercu);
    font-size: var(--font12);
    line-height: var(--line16);
    text-transform: uppercase;
    color: var(--azul300);
}

.single-artigo-conteudo{
    max-width: 572px;
    margin: 0 auto 80px;
    font-family: var(--gfa--Helvetica);
    font-size: var(--font18);
    line-height: var(--line24);
    color: var(--azul500);
    font-weight: 400;
}

.single-artigo-autor-box{
    max-width: 340px;
    margin: 0 auto 40px;
    text-align: center;
}

.single-artigo-autor-label{
    font-family: var(--gfa--Apercu);
    font-size: var(--font12);
    line-height: var(--line16);
    text-transform: uppercase;
    letter-spacing: 0px;
    color: var(--azul500);
    margin-bottom: 24px;
    font-weight: 400;
}

.single-artigo-autor-img{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
}

.single-artigo-autor-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-artigo-autor-nome{
    font-family: var(--gfa--Helvetica);
    font-weight: 400;
    font-size: var(--font18);
    line-height: var(--line24);
    color: var(--azul500);
    margin-bottom:4px ;
}

.single-artigo-autor-funcao{
    font-family: var(--gfa--Apercu);
    font-weight: 400;
    font-size: var(--font12);
    line-height: var(--line16);
    text-transform: uppercase;
    letter-spacing: 0px;
    color: var(--azul300);
    margin-bottom: 80px;
}

.single-artigo-partilhar {
  text-align: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.single-artigo-partilhar button {
  font-family: var(--gfa--Apercu);
  font-size: var(--font11);
  text-transform: uppercase;
  color: var(--branco);
  background: var(--azul500);
  border: 0;
  border-radius: 100px;
  padding: 12px 22px 9px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform .2s ease;
}

.share-icons {
  position: absolute;
  inset: 0;
  display: flex;

  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;

  opacity: 0;
  transform: scale(.95) translateY(6px);
  pointer-events: none;
  visibility: hidden;

  transition:
    opacity .3s cubic-bezier(.76,0,.24,1),
    transform .3s cubic-bezier(.76,0,.24,1);
}

.single-artigo-partilhar.open button {
  opacity: 0;
  transform: scale(.95);
}

.single-artigo-partilhar.open .share-icons {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  visibility: visible;
}

/*------------------------------  CONTACTOS ------------------------------------------------ */
.contactos{
    padding-top:40px;
    padding-bottom: 61px !important;
    display: flex;
    align-items: center;
}

.contactos h1{
    color: var(--azul500);
    margin-bottom: 24px !important;
}

.cf7-contact-form label {
  font-family: var(--gfa--Apercu);
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
  color: var(--azul500);
  line-height: var(--line16);
  font-size: var(--font12);
  letter-spacing: 0px;
  text-transform: uppercase;
}

.cf7-contact-form input,
.cf7-contact-form textarea {
  width: 100%;
  border: 0;
  background: var(--pseudobranco);
  border-radius: 8px;
  padding:12px 16px ;
  color: var(--azul500);
  font-size: var(--font18);
  font-family: var(--gfa--Helvetica);
  font-weight: 400;
  line-height: var(--line24);

}

.cf7-contact-form textarea {
  height: 150px;
  resize: none;
}

.cf7-contact-form .form-row {
  margin-bottom: 28px;
}

.cf7-contact-form .two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cf7-contact-form .form-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  color: var(--azul500) ;
  font-size: var(--font12) ;
  font-family: var(--gfa--Helvetica) ;
    font-weight: 400 ;
    line-height: var(--line16) ;
}

.cf7-contact-form .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cf7-contact-form .wpcf7-acceptance input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
}

.cf7-contact-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form br{
display: none;
}

.wpcf7-spinner{
    position: absolute;
}

.cf7-contact-form textarea::placeholder {
  color: var(--azul500) !important;
}

.contactos .parte9 h5{
    color: var(--azul500);
    margin-bottom: 16px !important;
}

.contactos .parte9 p,.contactos .parte9 a{
    font-family: var(--gfa--Helvetica);
    font-size: var(--font18);
    line-height: var(--line24);
    color: var(--azul500);
    font-weight: 400;
    margin-bottom:16px !important ;
}

.contactos .parte9 .parte10 p{
    width: 55%;
    max-width: 100%;
}

.parte10{
    margin-bottom:40px !important ;
}

.parte9 {
    margin-left: auto;
    width: fit-content !important;
    margin-right: 5.4%;
}
/*---------------------------  POLITICA DE PRIVACIDADE ---------------------------------------- */
.pol{
    padding-top: 40px;
    padding-bottom: 80px;
}

.pol h4{
    color: var(--azul500);
    margin-bottom: 16px !important;
}

.pol p{
    font-family: var(--gfa--Helvetica);
    font-weight: 400;
    font-size: var(--font18);
    line-height: var(--line24);
    color: var(--azul500);
    width: 40%;
    max-width: 100%;
    margin-bottom:40px !important ;
}

.marg{
    margin-bottom:64px !important ;
}

.pol ul{
    list-style-type: disc;
    padding-left: 20px;
}

.pol ul li{
    font-family: var(--gfa--Helvetica);
    font-weight: 400;
    font-size: var(--font18);
    line-height: var(--line24);
    color: var(--azul500);
}


/*------------------------------  MEDIA QUERIES ------------------------------------------------ */
/* HD READY - Resolução Base Desenvolvimento */
@media only screen and (max-width: 1440px) {
h1 {
    font-size: 48px !important;
    line-height: 50px;
}

h2{
    font-size: 40px !important;
    line-height:45px ;
}

h3{
    font-size: 35px !important; 
    line-height: 40px;
}

.wevolved-artigos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 80px !important;
}
}

/* Media query para menu hamburguer */
@media print, screen and (max-width: 1250px) {
.parte-tex > .vc_column-inner > .wpb_wrapper > .vc_row > .wpb_column > .vc_column-inner > .wpb_wrapper > .wpb_text_column > .wpb_wrapper > p {
    width: 100%;
    max-width: 100%;
}
}

/* Media query para menu hamburguer */
@media print, screen and (max-width: 1200px) {
    .gfa-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
    justify-items: start;
}

.cf7-contact-form .form-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}
}

/*tablet landscape or old laptop */
@media print, screen and (max-width: 1024px) {
.gfa-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    justify-items: start;
}

.back-sobre h1 {
    width: 80%;
    margin-bottom: 16px !important;
}

.back-sobre p:nth-child(2) {
    width: 80%;
    max-width: 100%;
    margin-bottom: 85px !important;
}

.parte9 {
    margin-left: auto;
    width: fit-content !important;
    margin-right: 0%;
}
}

/* Size considerado para Tablet */
@media only screen and (max-width: 991px) {
.gfa-footer-bottom {
    margin-top: 120px;
    padding-top: 32px;
    border-top: 1px solid #FCFCFC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.contactos .vc_col-sm-5{
    width: 100% !important;
}

.contactos{
    flex-direction: column;
    gap: 61px;
}

.parte9 {
    margin-left: auto;
    width: 100% !important;
    margin-left: 0px;
}

.back-sobre h1 {
    width: 90%;
    margin-bottom: 16px !important;
}

.back2 .parte1 p:last-child {
    width: 100%;
    max-width: 100%;
}

.back-sobre p:nth-child(2) {
    width: 93%;
    max-width: 100%;
    margin-bottom: 85px !important;
}

.wevolved-artigos-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-bottom: 80px !important;
}

       .header__container {
        position: relative;
    }

    .header__toggle {
        display: flex;
        color: inherit;
        z-index: 20;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        background: #fff;
        z-index: 15;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 80px 24px 40px;
        width: 50%;
    }

    .header__menu li a {
    font-size: 23px;
}

    .header.menu-open .header__nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header__menu {
        display: flex;
        flex-direction: column;
        gap: 50px;
        text-align: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .header__menu a {
        font-size: 24px;
    }

    body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.areas-back h1 {
    color: var(--azul500);
    margin-bottom: 40px !important;
    width: 100%;
    max-width: 100%;
}
}
/* Size considerado para Tablet modo portrait*/
@media only screen and (max-width: 767.5px) {
      .gfa-preloader__word-wrap {
    height: 50px;
  }

  .gfa-preloader__caption {
    font-size: 10px;
  }

  .back2{
    flex-direction: column;
  }

  h1 {
    font-size: 47px !important;
    line-height: 50px;
}

.back1 p {
    margin-top: 20px;
}

.back1 h1, .back-sobre h1 {
    width: 100%;
    max-width: 100%;
    color: var(--azul500);
}

.gfa-footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: start;
}

.gfa-footer-bottom {
    margin-top: 60px;
}

.back-sobrefim > .altura > .vc_column-inner{
    height: 50dvh;
}

.back-sobrefim {
    height: auto;
}

.parte-tex h3 {
    margin-bottom: 50px !important;
}


.parte-dir .vc_column-inner {
    padding-left: 15px !important;
}

.areas-back .parte-dir {
    margin-top: 50px;
}
}

@media only screen and (max-width: 600px) {
.areas h5 {
    margin-right: 0%; 

}

    .container {
    width: calc(100% - 80px);
}

header,.gfa-footer-container,.parte-tex > .vc_column-inner {
    padding: 34px 40px 34px 40px !important;
}

.areas-back h1 {
    margin-bottom: 40px !important;
    width: 80%;
    max-width: 100%;
}

.pol p {
    width: 100%;
}

.header__nav {
    width: 100%;
    justify-content: flex-start;
    padding: 34px 40px 34px 40px;
}

.header__logo{
    z-index: 9999;
}

.header__menu {
   text-align: left;
}

.back-sobre p:nth-child(2) {
    width: 100%;
    max-width: 100%;
}

.artigo-card {
    padding: 16px;
}

}
/* Size considerado Mobile - 430px*/
@media only screen and (max-width: 430px) {
    h1 {
    font-size: 40px !important;
    line-height: 40px !important;
}

h2{
    font-size: 36px !important;
    line-height:35px !important ;
}

h3{
    font-size: 30px !important; 
    line-height: 30px !important;
}

h4{
    font-size: 25px !important;
    line-height: 25px !important;
}

.opinião h2{
    width: 80%;
    max-width: 100%;
}

.gfa-equipa-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.back1 h1, .back-sobre h1 {
    width: 100%;
}

.areas-back h1 {
    width: 90%;
    max-width: 100%;
}

.gfa-footer-copy, .gfa-footer-credit, .link-wev {
    text-align: center;
    margin-bottom: 20px;
}

h4.artigo-titulo,.artigo-subtitulo,.artigo-data,.artigo-topo{
    width: auto;
}

.artigo-topo{
    padding-top: 16px;
}
}
/* smartphones plus */
@media only screen and (max-width: 414px) {
    .areas-back h1 {
    width: 100%;
    max-width: 100%;
}

.share-icons {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    justify-items: center;
}

.cf7-contact-form .two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.wevolved-artigos-grid .artigo-card-link:nth-child(3n+1) .artigo-card {
     height: auto;
}
}
/* smartphones normais  */
@media only screen and (max-width: 378px) {
}
/* iphone 5 <=  */






