/* Fonts */

@font-face {
	font-family: "FontAwesome";
	src: url("fonts/FontAwesome.otf");
	font-weight: normal;
	font-style: normal;
	font-display: auto;
}

@font-face {
	font-family: "Bagoss";
	src: url("../fonts/Bagoss/BagossExtendedTRIAL-Light.ttf") format("truetype"),
		url("../fonts/Bagoss/BagossExtendedTRIAL-Light.woff2") format("woff2"),
		url("../fonts/Bagoss/BagossExtendedTRIAL-Light.woff") format("woff");
	font-style: normal;
	font-weight: 300;
}

@font-face {
	font-family: "Bagoss";
	src: url("../fonts/Bagoss/BagossExtendedTRIAL-RegularItalic.ttf")
			format("truetype"),
		url("../fonts/Bagoss/BagossExtendedTRIAL-RegularItalic.woff2")
			format("woff2"),
		url("../fonts/Bagoss/BagossExtendedTRIAL-RegularItalic.woff")
			format("woff");
	font-style: italic;
	font-weight: 400;
}

@font-face {
	font-family: "Bagoss";
	src: url("../fonts/Bagoss/BagossExtendedTRIAL-Regular.ttf")
			format("truetype"),
		url("../fonts/Bagoss/BagossExtendedTRIAL-Regular.woff2") format("woff2"),
		url("../fonts/Bagoss/BagossExtendedTRIAL-Regular.woff") format("woff");
	font-style: normal;
	font-weight: 400;
}

/* Estrutura */

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
}

h1,
h1 a,
h1 span {
	font-family: "Bagoss";
	font-weight: 300;
	font-size: 35px;
	line-height: 40px;
}

h2,
h2 a,
h2 span {
	font-family: "Bagoss";
	font-weight: 300;
	font-size: 40px;
	line-height: 42px;
}

h3,
h3 a,
h3 span {
	font-family: "Bagoss";
	font-weight: 300;
	font-size: 20px;
	line-height: 35px;
}

h4,
h4 a,
h4 span {
	font-family: "Bagoss";
	font-weight: 300;
	font-size: 18px;
	line-height: 22px;
}

h5,
h5 a,
h5 span {
	font-family: "Bagoss";
	font-weight: 300;
	font-size: 13px;
	line-height: 16px;
}

h6,
h6 a,
h6 span {
	font-family: "Bagoss";
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
}

p {
	font-family: "Bagoss";
	margin: 0px;
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
}

h6 span a,
a {
	font-family: "Bagoss";
	color: var(--white);
	font-weight: 400;
	font-style: normal;
}

li,
li a {
	font-size: 12px;
	line-height: 20px;
	font-family: "Bagoss";
	letter-spacing: 1px;
}

em {
	font-style: italic !important;
}

strong {
	font-weight: 400 !important;
}

a:hover {
	text-decoration: none;
	color: var(--black);
}

.col-md-12,
.col-md-3,
.col-md-6 {
	padding: 0px;
}

.custom-container {
	max-width: 1300px;
	margin: 0 auto;
}

:root {
	--black: #141818;
	--blue: #dce4e4;
	--grey: #f0f0f0;
	--white: #fff;
	--dark-blue: #37658a;
}

form.form-tag-contactos .captcha-google,
form.form-tag-contactos .grecaptcha-badge{
	display: none;
}

/* Header */

header > div {
	display: flex;
	position: absolute;
	z-index: 1;
	justify-content: space-between;
	width: 100%;
	padding: 30px 60px;
}

header img {
	width: 160px;
}

header .menu ul {
	display: flex;
	padding: 0px;
	gap: 30px;
}

header .menu li {
	list-style: none;
	position: relative;
}

header .menu li a {
	text-transform: uppercase;
	position: relative;
}

header .menu .sub-menu {
	padding-top: 20px;
	right: 0px;
	position: absolute;
	width: 200px;
	display: none;
}

header .menu .sub-menu .subMenuWrapper {
	display: flex;
	flex-direction: column;
	gap: 0px;
	align-items: flex-end;
}

header .menu .sub-menu li a {
	font-size: 12px;
	font-weight: 400;
	line-height: 26px;
	letter-spacing: 1px;
	text-align: right;
	text-transform: none;
}

.hamburguer-menu {
	display: none;
}

.menu li a::after {
	content: "";
	width: 20px;
	height: 1px;
	background-color: var(--white);
	position: absolute;
	bottom: -5px;
	right: 0px;
	display: none;
}

.menu li a.ativo:not(.sub-menu a.ativo)::after {
	display: block;
}

/* Homepage */

section#creative-capital {
	width: 100vw;
	max-height: 700px;
	height: 90vh;
	position: relative;
}

.back-img {
	width: 100%;
	height: 90vh;
	max-height: 700px;
	background-size: cover;
	background-position: center;
}

section#creative-capital .content {
	position: absolute;
	top: 50%;
	left: -40vw;
	transform: translateY(-50%) translateX(-50%);
	width: fit-content;
	animation-name: slideRight;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideRight {
	0% {
		left: -40vw;
		opacity: 0;
	}

	100% {
		left: 50%;
		opacity: 1;
	}
}

section#creative-capital h1 {
	margin-bottom: 20px;
	font-size: 45px;
	color: var(--white);
	line-height: 50px;
}

section#creative-capital h5 {
	margin-bottom: 20px;
	display: none;
}

section#creative-capital h5,
section#creative-capital h5 span,
section#creative-capital h5 a {
	width: 220px;
	font-size: 14px;
}

section#creative-capital h6:hover span {
	text-decoration: none !important;
}

section#creative-capital h6 {
	display: none;
}

.block-banner {
	padding: 25px 120px;
	width: 990px;
	background-color: var(--dark-blue);
	margin: 0 auto;
	transform: translateY(-50%);
}

.block-banner h3 {
	color: var(--white);
	text-align: center;
}

section#home-block-2 .content,
section#culture-collaboration .content {
	width: 1280px;
	max-width: 100%;
	margin: 0 auto;
	padding: 10px 80px 100px;
	display: flex;
}

section#culture-collaboration {
	background-color: var(--grey);
	margin-bottom: 125px;
}

section#culture-collaboration .content {
	padding: 90px 80px 80px;
	align-items: center;
}

section#culture-collaboration .container-img {
	width: 50%;
	height: 450px;
}

section#culture-collaboration .container-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

section#culture-collaboration .content .text {
	width: 310px;
	margin-left: 130px;
}

section#culture-collaboration .content .text h2 {
	margin-bottom: 35px;
}

.slideUp {
	animation-name: slideUp;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-play-state: paused;
	opacity: 0;
	top: 200px;
	position: relative;
}

@keyframes slideUp {
	0% {
		top: 200px;
		opacity: 0;
	}

	100% {
		top: 0px;
		opacity: 1;
	}
}

section#home-block-2 .col-md-6 {
	float: none;
}

section#home-block-2 h2 {
	font-size: 35px;
	width: 340px;
	line-height: 42px;
}

section#home-block-2 p {
	margin-bottom: 20px;
}

section#explore-services .content {
	padding: 0px 60px 0px 100px;
}

section#explore-services .content2 {
	padding: 0px 60px 0px 100px;
	margin-bottom: 185px;
}

section#explore-services .content > div:not(:first-child) {
	width: 250px;
	height: 250px;
	background-color: var(--dark-blue);
	padding: 20px 25px 35px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	cursor: pointer;
}

section#explore-services .content2 > div:not(:first-child) {
	background-color: transparent;
	height: fit-content;
}

section#explore-services .content2 h5 {
	color: var(--black);
}
section#explore-services .content > div:first-child {
	width: calc(1160px - 780px);
}

section#explore-services .content {
	display: flex;
	gap: 10px;
}

section#explore-services .content > div:not(:first-child)::before,
section#explore-services .content > div:not(:first-child)::after {
	content: "";
	width: 25px;
	height: 1px;
	background-color: var(--white);
	display: block;
	position: absolute;
	top: 35px;
	left: 25px;
}

section#explore-services .content2 > div:not(:first-child)::after {
	background-color: var(--dark-blue);
	left: 15px;
}

section#explore-services .content2 h5 {
	margin-top: 50px;
}

section#explore-services .content > div:not(:first-child)::after {
	transform: rotate(-90deg);
	transition: 0.5s;
}

section#explore-services .content .col-md-3:hover::after {
	transform: rotate(0deg);
	transition: 0.5s;
}

section#explore-services h2 {
	font-size: 35px;
	line-height: 42px;
}

section#explore-services h4 {
	margin-bottom: 5px;
	color: var(--white);
}

section#explore-services h5 {
	height: 32px;
	color: var(--white);
	letter-spacing: 1px;
}

section#explore-services h5 em {
	opacity: 0.7;
}

section#home-transactions .content {
	display: flex;
	padding: 150px 60px 140px;
	gap: 60px;
}

section#home-transactions .img {
	width: 430px;
}

section#home-transactions img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.transactions {
	width: calc(100% - 490px);
	height: fit-content;
}

.transactions h6 {
	text-transform: uppercase;
	text-decoration: underline;
	letter-spacing: 2px;
	margin-bottom: 40px;
}

.transaction {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 12px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--black);
}

.transactions > h5 {
	margin-top: 25px;
}

.transactions h5 a {
	font-weight: 400;
	text-decoration: underline;
}

.transactions h5 a:hover {
	text-decoration: none;
}

/* Footer */

footer > div {
	width: 100%;
	background-color: var(--grey);
	padding: 50px 60px 25px;
}

footer .creditos h6 {
	float: none;
}

footer .contactos {
	display: flex;
	justify-content: space-between;
}

footer .contactos > div {
	display: flex;
	gap: 60px;
}

footer .creditos {
	display: flex;
	justify-content: space-between;
	margin-top: 135px;
}

footer .creditos > h6 {
	width: fit-content;
}

footer .contactos > div > div > h5 {
	margin-bottom: 3px;
}

footer .contactos h5,
footer .contactos h5 a,
footer .contactos h5 span {
	line-height: 22px;
	color: var(--black);
}

footer .creditos h6 a {
	color: var(--black);
}

footer .contactos > div > div > h5:last-child {
	text-decoration: underline;
}

footer .contactos > div > h5:last-child a {
	text-decoration: underline;
	font-weight: 400;
}

footer a:hover {
	text-decoration: none !important;
}

/* About Direct Lending */

section#about {
	position: relative;
	background-position: bottom;
	background-size: cover;
}

section#about .back-img {
	background-position: bottom;
}

section#about .content {
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	animation-name: slideUpCapa;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes slideUpCapa {
	0% {
		top: 80%;
		opacity: 0;
	}

	100% {
		top: 50%;
		opacity: 1;
	}
}

section#about h1,
section#about h1 span {
	font-size: 45px;
	color: var(--white);
	margin-bottom: 20px;
}

section#about h3 {
	width: 625px;
	color: var(--white);
	line-height: 30px;
	letter-spacing: 0.3px;
}

section#about-overview .content {
	padding: 100px 80px 180px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 25px;
}

section#about-overview.overview-bs .content {
	padding: 70px 70px 110px 135px;
}

section#about-overview.overview-bs h6 {
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

section#about-overview.overview-bs .text p {
	margin-bottom: 20px;
	width: 440px;
}

section#about-overview.overview-bs .container-img {
	width: 575px;
	height: 430px;
	margin-top: 40px;
}

section#about-overview.overview-bs .container-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

section#about-overview h2 {
	margin-bottom: 42px;
}

section#about-overview .text p {
	letter-spacing: 0.3px;
}

section#about-overview .content h6 {
	width: 100%;
	letter-spacing: 2px;
}

section#about-overview .text {
	width: 380px;
}

section#about-overview .container-img {
	width: 575px;
	height: 468px;
	position: relative;
}

section#about-overview .container-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

section#about-overview .container-img p {
	background-color: var(--dark-blue);
	padding: 25px 40px;
	color: var(--white);
	width: 450px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	transform: translateY(50%);
	line-height: 22px;
}

section#about-overview .col-md-3 {
	float: none;
	width: 190px;
}

section#about-overview p {
	line-height: 28px;
}

section#about-ic {
	background-color: var(--blue);
	width: 100%;
	height: fit-content;
}

section#about-ic.ic-bs {
	background-color: transparent;
}

section#about-ic.ic-bs .content {
	padding: 80px 105px 125px 105px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
}

section#about-ic .content {
	padding: 80px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

section#about-ic .col-md-6,
section#about-ic .col-md-4 {
	float: none;
	width: 220px;
	margin-top: 0px;
}

section#about-ic h2 {
	width: 220px;
	margin-bottom: 40px;
	font-size: 35px;
}

section#about-ic.ic-bs h2 {
	width: 100%;
}

section#about-ic.ic-bs .content {
	padding: 80px 105px 125px 105px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
}

section#about-ic.ic-bs .content .text {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 60px;
}

section#about-ic.ic-bs .col-md-4 p span {
	margin-bottom: 25px;
	font-size: 20px;
}

section#about-ic.ic-bs .col-md-4 {
	width: 100%;
}

section#about-ic .content > div:first-child > p {
	width: 130px;
}

section#about-ic .container-content {
	display: flex;
	gap: 110px;
}

section#about-ic .img {
	width: 390px;
	height: 290px;
	margin-top: 0px;
}

section#about-ic .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

section#about-ic .col-md-6 p,
section#about-ic .col-md-4 p {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 26px;
}

section#about-ic .col-md-6 p span,
section#about-ic .col-md-4 p span {
	display: block;
	margin-top: 20px;
}

section.about-block4-dl .content {
	padding: 90px 85px 80px;
	display: flex;
	gap: 60px;
}

section.about-block4-dl .content h2 {
	margin-bottom: 25px;
}

section.about-block4-dl .content p {
	margin-bottom: 20px;
}

section.about-block4-dl .content > .col-md-4 {
	float: none;
}

section.about-block4-dl .content h2 {
	font-size: 35px;
}

.nav-about {
	width: 100%;
	background-color: var(--white);
	display: flex;
}

.nav-about .col-md-6 {
	margin-top: 0px !important;
	background-color: var(--dark-blue);
}

.nav-about h3 {
	width: 50% !important;
	padding: 45px 80px 45px 50px;
	position: relative;
}

.nav-about h3:first-child {
	border-right: 1px solid var(--white);
}

.nav-about h3 a {
	width: 100%;
	display: block;
}

.nav-about h3 a::after,
.nav-about h3 a::before {
	content: "";
	width: 50px;
	height: 1px;
	background-color: var(--white);
	display: block;
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
}

.nav-about h3 a::after {
	transform: translateY(-50%) rotate(90deg);
}

section.ic-oc .content > div:first-child > p {
	width: 170px !important;
	line-height: 20px;
}

section.bs-block3 {
	background-color: var(--grey);
}

section.bs-block3 .content {
	padding: 80px 100px 80px 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section.bs-block3 .content .container-img {
	width: 800px;
	height: 460px;
}

section.bs-block3 .content .container-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

section.bs-block3 .content .text {
	width: 230px;
}

section.bs-block3 .content .text h3 {
	font-size: 30px;
	letter-spacing: 0.3px;
	line-height: 45px;
}

section.oc-block3 .content .text h3 {
	font-size: 20px;
	line-height: 32px;
}

section.oc-block3 .content {
	padding: 80px 60px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

section.oc-block3 .content {
	padding: 80px 60px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

/* Team */

section#team {
	position: relative;
}

/*section#team .back-img::before{
	content: '';
	width: 100vw;
	height: 90vh;
	background-color: rgba(255,255,255,0.4);
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	min-height: 700px;
}*/

section#team .content {
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 580px;
	animation-name: slideUpCapa;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

section#team h1,
section#team h1 span {
	font-size: 45px;
	color: var(--white);
	text-align: center;
}

section#team-members .content {
	padding: 110px 65px 245px 110px;
	display: flex;
	gap: 95px;
}

section#team-members h3,
section#team-members h3 span {
	width: 250px;
	font-size: 25px;
}

.vcard{
    position: absolute;
    top: 25px;
    right: 0px;
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: 0.5s;
}

.member.abriu .vcard{
	opacity: 1;
	transition: 0.5s;
}

.vcard a {
    color: var(--black);
    font-size: 13px;
    line-height: 8px;
    font-weight: 400;
    text-decoration: underline;
   	font-style: italic;
}

.vcard::before{
	content: '';
	background-image: url('../GestorSistema/Line15.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	height: 13px;
    width: 13px;
	display: block;
}

.content-member{
	position: relative;
}

.member {
	margin-bottom: 3px;
	cursor: pointer;
}

.member p {
	background-color: var(--grey);
	padding: 25px 30px;
	position: relative;
}

.member ul {
	padding: 25px 100px 50px 50px;
	display: none;
}

.member ul li {
	font-size: 14px;
	margin-bottom: 10px;
}

.member p::after,
.member p::before {
	content: "";
	width: 25px;
	height: 1px;
	background-color: var(--black);
	display: block;
	position: absolute;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
}

.member p::after {
	transform: translateY(-50%) rotate(-90deg);
	transition: 0.5s;
}

.loop-members {
	width: calc(100% - 250px + 95px);
}

.abriu p {
	background-color: var(--blue);
}

.member.abriu p::after {
	transform: translateY(-50%) rotate(0);
	transition: 0.5s;
}

/* Selected Transactions*/

section#selected-transactions .content {
	display: flex;
	padding: 100px 150px 150px 100px;
	column-gap: 100px;
	flex-wrap: wrap;
}

section#selected-transactions .content h1,
section#selected-transactions .content h1 span {
	width: 250px;
	font-size: 30px;
	line-height: 40px;
}

section#selected-transactions .loop-transactions {
	width: calc(100% - 350px);
}

section#selected-transactions .content > h5 {
	margin-left: 350px;
	margin-top: 45px;
	font-weight: 400;
	text-decoration: underline;
	cursor: pointer;
}

section#selected-transactions .transaction {
	display: none;
}

section#selected-transactions .transaction.aparece {
	display: flex;
}

section#selected-transactions .content:nth-child(2) {
	padding-top: 0px;
}

section#selected-transactions h5 em {
	opacity: 0.8;
}

section#selected-transactions h5 {
	margin-top: 3px;
}

section#selected-transactions .transaction > div:nth-child(2) p{
	white-space: nowrap;
}

/*************** PÀGINA DE CONTACTOS ************/
/* secção wrapper com tudo */
.conteudo-cms-contacts .custom-container {
	display: flex;
	justify-content: space-between;
	padding: 100px 80px 150px 100px;
}

section#sideContact .content h2 {
	font-size: 20px;
	font-weight: 400;
	line-height: 40px;
	letter-spacing: 0.30000001192092896px;
	color: var(--black);
	margin-bottom: 11px;
}
/* tipo letra contactos */
section#sideContact .content a,
section#sideContact .content p {
	color: #333;
	font-weight: 300;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0.699999988079071px;
}
/* elemento com email */
section#sideContact .content p:last-child a {
	text-decoration: underline;
	font-weight: 400;
}
/* margens entre os contactos */
section#sideContact .content p:nth-child(2),
section#sideContact .content p:nth-child(3) {
	margin-bottom: 22px;
}

/* zona com o form */
.conteudo-paginas-contacts .form-contactos h3,
.conteudo-paginas-contacts
	.form-contactos
	.formInput
	label:not(.formInput.cx-textarea label) {
	display: none;
}

.formInput input,
.formInput textarea {
	background-color: transparent;
	border: unset;
	border-bottom: 1px solid rgba(0, 0, 0, 0.7);
	box-shadow: unset;
	border-radius: 0px;
	resize: none;
	padding: 0px;
	color: rgba(0, 0, 0, 0.7);
}

.formInput textarea {
	padding: 10px;
	height: 167px;
}
.formInput input,
.formInput textarea,
.formInput.cx-textarea label {
	font-family: "Bagoss";
	font-size: 13px;
	font-style: italic;
	font-weight: 300;
	line-height: 22px;
	letter-spacing: 1px;
}

.formInput input::placeholder,
.formInput textarea::placeholder,
.formInput.cx-textarea label {
	color: var(--black);
	opacity: 1; /* Firefox */
}

.formInput input::-ms-input-placeholder,
.formInput textarea::-ms-input-placeholder {
	/* Edge 12 -18 */
	color: var(--black);
}

.formInput input:focus,
.formInput textarea:focus {
	border-color: unset;
	outline: 0;
	-webkit-box-shadow: unset;
	box-shadow: unset;
}
.form-tag-contactos .formInput.cx-textarea textarea {
	border: 1px solid rgba(0, 0, 0, 0.7);
}

.form-tag-contactos {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-template-rows: repeat(4, auto);
	grid-column-gap: 32px;
	grid-row-gap: 27px;
	position: relative;
	margin-top: 80px;
}

.form-tag-contactos button.form-control.g-recaptcha{
	position: absolute;
	bottom: -20px;
	right: 0px;
	font-family: 'Bagoss';
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
	text-decoration: underline;
	border: 0px;
	width: fit-content;
	background-color: transparent;
	padding: 0px;
	box-shadow: none;
}

.form-tag-contactos .formInput:nth-child(1) {
	grid-area: 1 / 1 / 2 / 2;
}
.form-tag-contactos .formInput:nth-child(2) {
	grid-area: 1 / 2 / 2 / 3;
}
.form-tag-contactos .formInput:nth-child(3) {
	grid-area: 2 / 1 / 3 / 3;
}
.form-tag-contactos .formInput:nth-child(4) {
	grid-area: 3 / 1 / 4 / 3;
}
.form-tag-contactos .formInput:nth-child(5) {
	grid-area: 4 / 1 / 5 / 3;
}

/* botão de send */
.form-tag-contactos .formInput.formButton {
	margin-left: auto;
}
.form-tag-contactos .formInput.formButton input {
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
	font-style: normal;
	border: unset;
	text-decoration: underline;
	color: var(--black);
	width: fit-content;
}
input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px var(--white) inset; /* Changes the background to white */
	-webkit-text-fill-color: rgba(0, 0, 0, 0.7); /* Changes the text color */
}

/* Remove autofill focus glow */
input:-webkit-autofill:focus {
	box-shadow: 0 0 0px 1000px var(--white) inset; /* Same custom background as autofill */
	-webkit-text-fill-color: rgba(
		0,
		0,
		0,
		0.7
	); /* Ensure the text color remains */
	border-color: rgba(
		0,
		0,
		0,
		0.7
	); /* Optional: add custom border color if needed */
}
.alert {
	padding: 0px !important;
	margin-bottom: 20px;
	border: 1px solid transparent !important;
	color: var(--black) !important;
	background-color: transparent !important;
	border-color: transparent !important;
}
.formulario.form-contactos {
	display: flex;
	flex-direction: column-reverse;
	width: 641px;
	transition: all 500ms linear;
}
/* aqui */

/* Media Queries */

@media only screen and (max-width: 1200px) {
	/* About */

	section#about-overview .container-img {
		width: 50%;
		height: 400px;
	}

	section#about-overview .container-img p {
		padding: 20px 30px;
		width: 75%;
	}

	section#about-ic .img {
		width: 310px;
		height: 250px;
		margin-top: 0px;
	}

	section.about-block4-dl .content h2 {
		font-size: 30px;
	}

	section.bs-block3 .content {
		gap: 60px;
	}

	section.bs-block3 .content .container-img {
		width: 100%;
	}

	.formulario.form-contactos {
		/* max-width: 500px; */
		width: 500px;
	}
}
@media only screen and (max-width: 1100px) {
	.formulario.form-contactos {
		/* max-width: 500px; */
		width: 350px;
	}
}

@media only screen and (max-width: 1024px) {
	/* Estrutra */

	h2,
	h2 a,
	h2 span {
		font-size: 30px;
		line-height: 35px;
	}

	h4,
	h4 a,
	h4 span {
		font-size: 16px;
		line-height: 20px;
	}

	/* Homepage */

	section#explore-services .content > div:first-child {
		width: calc(100% - 630px);
	}

	section#explore-services .content > div:not(:first-child) {
		width: 200px;
		height: 200px;
	}

	section#explore-services .content2 > div:not(:first-child) {
		height: fit-content;
	}

	.block-banner {
		padding: 25px 25px;
		width: 750px;
	}

	/* About */

	section#about-overview .content {
		padding: 60px 80px 80px;
	}

	section#about-ic h2 {
		width: 190px;
	}

	section#about-ic .col-md-6,
	section#about-ic .col-md-4 {
		width: 190px;
	}

	section#about-ic .col-md-6 p,
	section#about-ic .col-md-4 p {
		margin-bottom: 5px;
	}

	section#about-overview .text {
		width: 50%;
		padding-right: 100px;
	}

	section#about-overview .container-img p {
		font-size: 12px;
		line-height: 18px;
	}

	section#about-ic .container-content {
		display: flex;
		gap: 60px;
	}

	section.about-block4-dl .content h2 {
		margin-bottom: 15px;
	}

	section.about-block4-dl .content {
		gap: 50px;
	}

	section.about-block4-dl .content h2 {
		font-size: 27px;
	}

	section.about-block4-dl .content p {
		font-size: 14px;
		line-height: 23px;
		margin-bottom: 15px;
	}

	/* Team */

	section#team-members .content {
		padding: 110px 65px 245px 80px;
		gap: 60px;
	}

	/* Selected Transactions */

	section#selected-transactions .content {
		padding: 100px 80px 150px 80px;
	}
}

@media only screen and (max-width: 820px) {
	/* Estrutura */

	h1,
	h1 a,
	h1 span {
		font-size: 25px;
		line-height: 28px;
	}

	h3,
	h3 a,
	h3 span {
		font-size: 16px;
		line-height: 24px;
	}

	/* Header */

	.hamburguer-menu {
		display: block;
	}

	.menu {
		width: 100vw;
		height: fit-content;
		background-color: var(--dark-blue);
		position: fixed;
		top: -70vh;
		left: 0px;
		transition: 0.5s;
	}

	header .menu li a {
		text-transform: uppercase;
		font-size: 16px;
	}

	header .menu > ul {
		gap: 10px;
		flex-direction: column;
		padding: 120px 35px;
		align-items: flex-start;
		justify-content: flex-start;
	}
	header .menu .sub-menu {
		padding-top: 5px;
		padding-left: 15px;
		position: relative;
		width: fit-content;
		display: block;
	}
	header .menu .sub-menu .subMenuWrapper {
		align-items: flex-start;
	}

	header .menu > ul {
		display: flex;
		padding: 0px;
		gap: 15px;
		flex-direction: column;
		padding: 130px 15px 60px;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.logo {
		position: absolute;
		top: 30px;
		left: 15px;
		z-index: 1;
	}

	.hamburguer-menu::after,
	.hamburguer-menu::before {
		content: "";
		width: 25px;
		height: 1px;
		background-color: var(--white);
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
		transition: 0.5s;
	}

	.hamburguer-menu {
		position: absolute;
		top: 30px;
		right: 15px;
		width: 25px;
		height: 25px;
	}

	.hamburguer-menu::before {
		transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	}

	header.open-menu .hamburguer-menu::before {
		transform: translateX(-50%) translateY(-50%) rotate(0deg);
		transition: 0.5s;
	}

	header.open-menu .menu {
		top: 0vh;
		transition: 0.5s;
	}

	header.open-menu .logo {
		position: fixed;
	}

	header.open-menu .hamburguer-menu {
		position: fixed;
	}

	/* Homepage */

	.back-img,
	section#creative-capital {
		height: 50vh;
		min-height: 500px;
	}

	.block-banner {
		padding: 25px 25px;
		width: 600px;
	}

	section#home-block-2 .content {
		width: 100%;
		padding: 0px 35px 60px;
	}

	section#home-block-2 h2 {
		font-size: 35px;
		width: 80%;
	}

	section#culture-collaboration .content .text {
		width: 50%;
		margin-left: 50px;
	}

	section#culture-collaboration .container-img {
		height: 420px;
	}

	section#creative-capital h5,
	section#creative-capital h5 span,
	section#creative-capital h5 a {
		width: 190px;
		font-size: 11px;
		line-height: 15px;
	}

	section#creative-capital .content {
		left: 35px;
	}

	section#creative-capital h1 {
		margin-bottom: 10px;
	}

	section#creative-capital h5 {
		margin-bottom: 10px;
	}

	section#explore-services .content > div:first-child {
		width: 100%;
	}

	section#explore-services .content {
		flex-wrap: wrap;
		row-gap: 30px;
	}

	section#explore-services .content {
		padding: 0px 35px 0px 35px;
	}

	section#explore-services .content > div:not(:first-child) {
		width: calc((100vw / 3) - 30px);
		height: calc((100vw / 3) - 30px);
	}

	section#explore-services .content2 > div:not(:first-child) {
		height: fit-content;
	}

	section#explore-services .content2 > div:not(:first-child) {
		padding-top: 0px;
	}

	section#explore-services .content2 > div:not(:first-child)::after {
		top: 10px;
	}

	section#home-transactions .content {
		padding: 50px 35px 100px;
		gap: 40px;
		flex-direction: column;
	}

	section#home-transactions .img {
		width: 100%;
	}

	section#home-transactions .img {
		width: 100%;
		height: 50vh !important;
	}

	.transactions {
		width: 100%;
	}

	/* Footer */

	footer > div {
		padding: 50px 35px 25px;
	}

	/* About */

	section#about h1,
	section#about h1 span {
		font-size: 30px;
		width: 100%;
		line-height: 27px;
		text-align: center;
		margin-bottom: 0;
	}

	section#about h3,
	section#about h3 span {
		width: 600px;
		max-width: 100%;
		padding: 0px 20px;
		letter-spacing: 0.3px;
		font-size: 20px;
	}

	section#about-overview .col-md-3 {
		float: none;
		width: 47%;
	}

	section#about-overview .content {
		padding: 50px 35px 60px;
	}

	section#about-overview.overview-bs .content {
		padding: 50px 35px 70px 35px;
		row-gap: 0;
	}

	section#about-overview.overview-bs .container-img {
		width: 100%;
		height: 430px;
		margin-top: 40px;
	}

	section#about-overview.overview-bs .text p {
		margin-bottom: 10px;
		width: 100%;
	}

	section#about-overview .text {
		width: 100%;
		padding-right: 0;
	}

	section#about-ic .content {
		padding: 50px 35px;
		flex-wrap: wrap;
		column-gap: 15px;
	}

	section#about-ic .content > div:first-child {
		width: 30%;
	}

	section#about-ic h2,
	section#about-ic .content > div:first-child > p {
		width: 50%;
	}

	section#about-ic.ic-bs .content > div:first-child {
		width: 100%;
	}

	section#about-ic.ic-bs .col-md-4 {
		padding: 0px;
	}

	section#about-ic.ic-bs .content {
		padding: 50px 35px 50px 35px;
	}

	section#about-ic.ic-bs .content .text {
		gap: 50px;
	}

	section#about-ic .img {
		width: 95%;
		height: 280px;
		margin-top: 30px;
	}

	section#about-ic .container-content {
		gap: 20px;
		width: 66%;
	}

	section#about-ic .col-md-6,
	section#about-ic .col-md-4 {
		margin-top: 30px;
		width: 100%;
	}

	.nav-about h3 a::after,
	.nav-about h3 a::before {
		width: 30px;
	}

	section#about-ic h2 {
		margin-bottom: 10px;
	}

	section.ic-oc .content > div:first-child > p {
		width: 50% !important;
	}

	section.about-block4-dl .content {
		padding: 60px 20px 60px;
	}

	section.bs-block3 .content {
		padding: 50px 35px 50px 35px;
	}

	section.bs-block3 .content .text h3 {
		font-size: 25px;
		line-height: 37px;
	}

	section.bs-block3 .content .container-img {
		height: 350px;
	}

	/* team */

	section#team .back-img::before {
		height: 50vh;
		min-height: 500px;
	}

	section#team-members .content {
		padding: 50px 35px 100px 35px;
		gap: 50px;
		flex-wrap: wrap;
	}

	section#team-members h3,
	section#team-members h3 span {
		width: 50%;
		font-size: 20px;
		line-height: 28px;
	}

	.loop-members {
		width: 100%;
	}

	.member ul {
		padding: 25px 70px 50px 50px;
	}

	/* Selected Transactions */

	section#selected-transactions .content {
		padding: 50px 35px 100px 35px;
		gap: 30px;
	}

	section#selected-transactions .loop-transactions {
		width: 100%;
	}

	section#selected-transactions .content h1,
	section#selected-transactions .content h1 span {
		width: 50%;
		font-size: 25px;
		line-height: 35px;
	}

	section#selected-transactions .content > h5 {
		margin-left: 0;
		margin-top: 20px;
	}

	section#selected-transactions .content h1,
	section#selected-transactions .content h1 span {
		width: 100%;
	}

	section#selected-transactions .content {
		padding: 40px 20px 100px 20px;
		gap: 20px;
	}

	/*************** PÀGINA DE CONTACTOS ************/
	.conteudo-cms-contacts .custom-container {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 40px 20px 100px 20px;
		gap: 20px;
	}

	.formulario.form-contactos {
		width: 100%;
		display: contents;
	}
	.formulario.form-contactos div:has(.titulo-formulario) {
		display: none;
	}
	.form-tag-contactos {
		margin-top: 0px;
	}
	/* aqui */
}

@media only screen and (max-width: 500px) {
	/* Estrutura */

	h3,
	h3 a,
	h3 span {
		font-size: 13px;
		line-height: 18px;
	}

	/* Homepage */

	.back-img,
	section#creative-capital {
		height: 75vh;
		min-height: unset;
	}

	.block-banner {
		width: 93vw;
	}

	section#home-block-2 .content {
		width: 100%;
		padding: 0px 15px 35px;
	}

	section#home-block-2 .content,
	section#culture-collaboration .content {
		flex-direction: column;
		gap: 40px;
	}

	section#home-block-2 h2 {
		font-size: 35px;
		width: 100%;
	}

	section#culture-collaboration .content {
		padding: 35px 15px 35px;
	}

	section#culture-collaboration .container-img {
		width: 100%;
	}

	section#culture-collaboration .content .text {
		width: 100%;
		margin-left: 0;
	}

	section#culture-collaboration {
		margin-bottom: 50px;
	}

	section#explore-services .content > div:not(:first-child) {
		padding: 20px 15px 20px;
	}

	section#explore-services .content > div:not(:first-child) {
		height: 45vw;
		width: 100%;
	}

	section#explore-services .content {
		padding: 0px 15px;
	}

	section#explore-services .content {
		flex-wrap: wrap;
		row-gap: 15px;
	}

	section#explore-services .row-group > div:first-child > h5 {
		height: fit-content;
		margin-bottom: 15px;
	}

	section#explore-services .content > div:not(:first-child) {
		height: 55vw;
	}

	section#explore-services .content2 {
		margin-bottom: 50px;
	}

	section#explore-services h2 {
		margin-bottom: 20px;
	}

	section#creative-capital .content {
		width: 80%;
	}

	section#creative-capital h1,
	section#team h1 {
		font-size: 30px;
		line-height: 40px;
		text-align: center;
		margin-bottom: 0px;
	}

	section#home-transactions .content {
		padding: 40px 15px 75px;
		gap: 40px;
		flex-direction: column;
	}

	.transactions h6 {
		margin-bottom: 20px;
	}

	/* Footer */

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

	footer .contactos > div {
		gap: 15px;
		flex-direction: column;
	}

	footer > div {
		padding: 30px 15px 25px;
	}

	footer .creditos {
		margin-top: 50px;
	}

	footer .creditos > h6 {
		width: 50%;
	}

	footer .creditos > h6:last-child {
		text-align: right;
	}

	/* About */

	section#about .content {
		width: 80%;
	}

	section#about h1 span {
		width: 100%;
	}

	section#about h1 {
		width: 270px;
	}
	section#about-overview .col-md-3 {
		width: 100%;
	}

	section#about-overview .content {
		padding: 50px 15px 70px;
		flex-direction: column;
	}

	section#about-overview.about-overview-dl .content {
		padding: 50px 15px 150px;
	}

	section#about-overview .text {
		width: 100%;
		padding-right: 0;
		padding-bottom: 30px;
	}

	section#about-overview .container-img {
		width: 100%;
		height: 400px;
	}

	section#about-overview .container-img p {
		font-size: 14px;
		line-height: 20px;
	}

	section#about-ic .content > div:first-child > p {
		width: 100%;
	}

	section#about-ic .content > div:first-child {
		width: 100%;
	}

	section#about-ic .container-content {
		width: 100%;
		margin-top: 30px;
		flex-direction: column;
	}

	section#about-ic .img {
		width: 100%;
	}

	section#about-ic .content {
		padding: 50px 15px;
	}

	section#about-ic .col-md-6,
	section#about-ic .col-md-4 {
		width: 100%;
		padding: 0px;
		margin-top: 10px;
	}

	section#about-overview.overview-bs .content {
		padding: 40px 15px 70px 15px;
	}

	section#about-overview .text {
		padding-bottom: 0;
	}

	section.bs-block3 .content {
		padding: 30px 15px;
		flex-direction: column;
		gap: 30px;
	}

	section.bs-block3 .content .text h3 {
		font-size: 20px;
		line-height: 30px;
	}

	section.bs-block3 .content .text {
		width: 100%;
	}

	section#about-ic.ic-bs .content .text {
		gap: 0px;
		flex-direction: column;
	}

	section#about-ic.ic-bs .content {
		padding: 45px 15px 40px 15px;
	}

	.nav-about h3 {
		padding: 30px 15px 30px 15px;
	}

	.nav-about h3 a::after,
	.nav-about h3 a::before {
		width: 20px;
		right: 20px;
	}

	section.ic-oc .content > div:first-child > p {
		width: 100% !important;
	}

	section.about-block4-dl .content {
		gap: 15px;
		flex-direction: column;
		padding: 35px 5px 35px;
	}

	.nav-about .col-md-6 {
		padding: 20px 15px !important;
	}

	/* Team */

	section#team .back-img::before,
	.back-img {
		height: 75vh;
		min-height: unset;
	}

	section#team .content {
		width: 100%;
		padding: 30px;
	}

	section#team h1 span {
		font-size: 20px;
		line-height: 25px;
	}

	section#team-members h3,
	section#team-members h3 span {
		width: 100%;
	}

	.member p {
		padding: 20px 75px 15px 15px;
		font-size: 13px;
	}

	.member p::after,
	.member p::before {
		width: 15px;
		right: 25px;
	}

	section#team-members .content {
		padding: 40px 15px 100px 15px;
		gap: 30px;
	}

	.member ul {
		padding: 25px 65px 30px 30px;
	}

	/* Transactions */

	section#selected-transactions .transaction.aparece {
		display: flex;
		gap: 30px;
	}
}
