/*
Theme Name: Muralha
Author: D-Lab
Author URI: 
Description: 
Version: 1.0

*/



:root {
	--ease: cubic-bezier(0.87, 0, 0.13, 1);
	--black: #292e34;
	--gray: #c4c4c4;
	--white: #ececea;
	--pad: 17vw;
}

@media (orientation: portrait) {
	:root {
		--pad: 5vw;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	position: relative;
}

html {
	height: -webkit-fill-available;
	scroll-behavior: smooth;
    scroll-padding-top: 5.5vw;
}

body {
	font-family: "Syne", sans-serif;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	background-color: var(--black);
	color: var(--gray);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

header,
section,
footer,
div,
nav,
form,
a,
button {
	display: flex;
}

h1,
h2 {
	font-family: "Syne", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

p,
small,
a,
input,
::placeholder {
	font-family: "Syne", sans-serif;
	font-weight: 400;
	color: var(--gray);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1 {
	font-size: 1.6vw;
	line-height: 1.2;
	letter-spacing: 0.32vw;
}

@media (orientation: portrait) {
	h1 {
		font-size: 7vw;
		letter-spacing: 1.4vw;
	}
}

h2 {
	font-size: 1.1vw;
	line-height: 1.6;
	letter-spacing: 0.2vw;
}

@media (orientation: portrait) {
	h2 {
		font-size: 4vw;
		letter-spacing: 0.8vw;
	}
}

p,
input,
::placeholder {
	font-size: 1.2vw;
	line-height: 2;
}

@media (orientation: portrait) {
	p,
    input,
    ::placeholder {
		font-size: 4.2vw;
	}
}

small {
	font-size: 1.1vw;
	line-height: 2;
}

@media (orientation: portrait) {
	small {
		font-size: 4vw;
	}
}

a,
button {
	--color: var(--gray);
	color: var(--color);
	font-size: 1vw;
	letter-spacing: 0.1vw;
	line-height: 1.5;
	text-transform: uppercase;
	text-decoration: none;
	user-select: none;
	cursor: pointer;
}

@media (orientation: portrait) {
	a,
    button {
		font-size: 3.5vw;
		letter-spacing: 0.35vw;
	}
}

a:hover,
button:hover {
	--color: var(--white);
}

button,
input {
	appearance: none;
	outline: none;
	border: 0;
	background: transparent;
}

.btn {
	margin-top: 1vw;
	align-items: center;
}

.btn::after,
.btn::before {
	content: "";
	position: absolute;
	right: 0;
	transition: transform 0.7s;
	transition-timing-function: var(--ease);
}

.btn::before {
	width: 14vw;
	height: 1px;
	background: var(--color);
	transform: translateX(0);
}

.btn-alt{
	margin: 1vw 0 0;
	align-items: center;
	justify-content: center;
	border: 0.1vw solid;
	padding: 1vw 2vw;
}

@media (orientation: portrait) {
	.btn::before {
		width: 40vw;
	}

	.btn-alt{
		padding: 3vw 6vw;
	}
}

.btn::after {
	width: 4px;
	height: 4px;
	background: none;
	border-top: 1px solid var(--color);
	border-right: 1px solid var(--color);
	transform: translateX(0) rotate(45deg);
}

.btn:hover::before {
	transform: translateX(1.5vw);
}

.btn:hover::after {
	transform: translateX(1.5vw) rotate(45deg);
}

form {
	align-items: flex-end;
	gap: 1vw;
}

input {
	width: 100%;
	padding: 1vw 0 0.5vw 0;
	border-bottom: 1px solid var(--gray);
}

@media (orientation: portrait) {
	input {
		padding: 4vw 0 2vw 0;
	}
}

.stripe {
	margin-right: 4vw;
	width: 0.8vw;
	height: 8vw;
	background: var(--gray);
	transform: skewX(-24deg) scaleY(0);
	transition: transform 1.4s var(--ease);
}

@media (orientation: portrait) {
	.stripe {
		width: 1.7vw;
		height: 17vw;
		margin-bottom: 5vh;
		margin-left: 4vw;
	}
}

.in-view .stripe {
	transform: skewX(-24deg) scaleY(1);
}

.logo {
	width: 15vw;
	margin: 4vw;
	margin-bottom: 2vw;
	align-self: center;
}

.logo svg{
    width: 100%;
    height: auto;
}

@media (orientation: portrait) {
	.logo {
		width: 40vw;
		margin: 10vw;
	}
}

#menu {
	position: absolute;
	top: 0;
	right: 0;
	align-items: center;
	justify-content: space-between;
	z-index: 666;
	padding: 0;
	width: 100%;
	height: 100vh;
	transition: 0.4s;
}

@media (orientation: landscape) {
	#menu {
		position: sticky;
		top: 0;
		height: auto;
		padding: 0 var(--pad);
	}

	#menu.scroll {
		background: var(--gray);
	}

	#menu.scroll nav {
		transform: translateX(0);
	}

	#menu.scroll nav a {
		color: var(--black);
	}
}

#menu:target .menu-icon a[href="#menu"] {
	display: none;
}

#menu:target .menu-icon a[href="#"] {
	display: block;
}

#menu:target .menu-icon span:nth-of-type(1) {
	transform: rotate(45deg) scaleX(1.3);
	transform-origin: left top;
}

#menu:target .menu-icon span:nth-of-type(2) {
	transform: scaleX(0);
	transform-origin: left;
}

#menu:target .menu-icon span:nth-of-type(3) {
	transform: rotate(-45deg) scaleX(1.3);
	transform-origin: left bottom;
}

#menu:target nav {
	transform: scale(1);
}

#menu .logo {
	width: 2vw;
	margin: 0;
}

@media (orientation: portrait) {
	#menu .logo {
		display: none;
	}
}

#menu nav {
	transform: translateX(-4.5vw);
	transition: 0.4s;
	gap: 3vw;
	padding: 2vw;
}

@media (orientation: portrait) {
	#menu nav {
		flex-direction: column;
		justify-content: center;
		gap: 10vw;
		padding: 15vw;
		width: 100%;
		height: 100%;
		transform: scale(0);
		transition: transform 0.7s var(--ease);
		background: var(--black);
		overflow: hidden;
	}
}

#menu .menu-icon {
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	width: 4.4vw;
	height: 4.4vw;
	top: 10.2vw;
	right: 11vw;
	gap: 6px;
	z-index: 1000;
	pointer-events: auto;
}

@media (orientation: landscape) {
	#menu .menu-icon {
		display: none;
	}
}

#menu .menu-icon a {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: auto;
	background-color: transparent;
	transition: background-color 0.4s;
	transition-delay: 0s;
}

#menu .menu-icon a[href="#menu"] {
	display: block;
}

#menu .menu-icon a[href="/"] {
	display: none;
}

#menu .menu-icon span {
	transform: scaleX(1.7);
	pointer-events: none;
	user-select: none;
	width: 100%;
	height: 2px;
	background-color: var(--gray);
	transition: 0.7s var(--ease);
}

#menu .menu-icon span:nth-of-type(1),
#menu .menu-icon span:nth-of-type(3) {
	transition-delay: 0.1s;
}

header {
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

@media (orientation: portrait) {
	header {
		flex-direction: column-reverse;
		justify-content: center;
		margin-top: 5vh;
	}
}

header img {
	width: 50vw;
	height: 55vh;
	opacity: 0.5;
	object-fit: cover;
	transition: 2s var(--ease);
}

header.interno img{
	height: 20vh;
}

header img:first-of-type {
	transform: scale(1.3) translateX(-15vw);
	clip-path: polygon(0 0, 30% 0, 0 100%, 0 100%);
	margin-top: 5vw;
}

header img:last-of-type {
	transform: scale(1.3) translateX(15vw);
	clip-path: polygon(100% 0, 100% 0, 100% 100%, 70% 100%);
	margin-bottom: 5vw;
}

@media (orientation: portrait) {
	header img {
		width: 90vw;
		height: 30vh;
	}

	header.interno img{
		height: 10vh;
	}

	header img:first-of-type {
		align-self: flex-start;
	}

	header img:last-of-type {
		align-self: flex-end;
		margin-bottom: 3vw;
	}
}

header.in-view h1 {
	transform: translateY(-3vw) scale(1);
	opacity: 1;
}

@media (orientation: portrait) {
	header.in-view h1 {
		transform: translateY(0) scale(1);
	}
}

header.in-view img:first-of-type {
	transform: scale(1) translateX(0);
	clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
}

header.in-view img:last-of-type {
	transform: scale(1) translateX(0);
	clip-path: polygon(30% 0, 100% 0%, 100% 100%, 0 100%);
}

.symbol {
	padding: 2vw;
	gap: 4.4vw;
	align-items: flex-end;
	justify-content: center;
}

@media (orientation: portrait) {
	.symbol {
		padding: 20vh 10vw;
		gap: 18.3vw;
	}
}

.symbol span {
	width: 1.2vw;
	height: 5vw;
	background: var(--gray);
	transition: transform 1.4s var(--ease);
	transform-origin: bottom auto;
	transform: scaleY(0);
	transform-origin: center top;
}

.symbol span:first-of-type {
	height: 11vw;
	transform: skewX(-24deg) scaleY(0);
	transform-origin: center bottom;
}

.symbol span:last-of-type {
	height: 11vw;
	transform: skewX(24deg) scaleY(0);
	transform-origin: center bottom;
}

@media (orientation: portrait) {
	.symbol span {
		width: 4vw;
		height: 16vw;
	}

	.symbol span:first-of-type {
		height: 45vw;
	}

	.symbol span:last-of-type {
		height: 45vw;
	}
}

.symbol.in-view span {
	transform: scaleY(1);
}

.symbol.in-view span:first-of-type {
	transform: skewX(-24deg) scaleY(1);
}

.symbol.in-view span:last-of-type {
	transform: skewX(24deg) scaleY(1);
}

.sobre {
	padding: 5vw 20vw;
	align-items: baseline;
}

.sobre div {
	flex: 1;
	flex-direction: column;
	gap: 2vw;
}

.sobre h2 {
	padding: 0 5vw 0 2.5vw;
	color: var(--white);
}

.sobre p {
	color: var(--white);
}

@media (orientation: portrait) {
	.sobre {
		padding: 5vw;
		flex-direction: column;
		gap: 5vw;
	}

	.sobre h2 {
		padding: 2vw 0;
	}
}

.asset,
.wealth {
	padding: 5vw 0;
}

.asset figure,
.wealth figure {
	width: 50vw;
}

.asset figure::after,
.wealth figure::after {
	content: "";
	position: absolute;
	top: 0;
	width: 1vw;
	height: 100%;
	background: var(--gray);
	transition: transform 1.4s var(--ease);
}

.asset figure img,
.wealth figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.asset div,
.wealth div {
	width: 50vw;
	flex-direction: column;
	gap: 2vw;
}

.asset div{
	align-self: center;
}

.asset div small,
.wealth div small {
	padding-left: 5vw;
}

@media (orientation: portrait) {
	.asset,
    .wealth {
		flex-direction: column;
		gap: 10vh;
		padding: 10vh 0;
	}

	.asset figure,
    .wealth figure {
		width: 100%;
	}

	.asset figure::after,
    .wealth figure::after {
		width: 3vw;
	}

	.asset div,
    .wealth div {
		width: 100%;
		gap: 5vh;
	}

	.asset div small,
    .wealth div small {
		padding-left: 0;
	}
}

.asset figure {
	padding: 10vw 5vw 10vw 0;
}

.asset figure::after {
	right: 0;
	transform: skewX(-24deg) scaleY(0);
	transform-origin: top right;
}

.asset div {
	padding: 2.5vw var(--pad) 2.5vw 5vw;
}

@media (orientation: portrait) {
	.asset figure {
		padding: 10vh 0;
	}

	.asset figure::after {
		right: -10vw;
	}
}

.asset.in-view figure::after {
	transform: skewX(-24deg) scaleY(1);
}

.wealth figure {
	padding: 10vw 0 10vw 5vw;
}

.wealth figure::after {
	left: 0;
	transform: skewX(24deg) scaleY(0);
	transform-origin: top left;
}

.wealth div {
	padding: 2.5vw 5vw 2.5vw var(--pad);
}

@media (orientation: portrait) {
	.wealth {
		flex-direction: column-reverse;
	}

	.wealth figure {
		padding: 10vh 0;
	}

	.wealth figure::after {
		left: -10vw;
	}
}

.wealth.in-view figure::after {
	transform: skewX(24deg) scaleY(1);
}

.coinvestimentos {
	padding: 5vw var(--pad);
	flex-direction: column;
}

.coinvestimentos .title {
	flex-direction: column;
	gap: 1.5vw;
}

.coinvestimentos .title > div {
	gap: 8vw;
	align-items: flex-end;
}

.coinvestimentos .title > div p {
	max-width: 42ch;
}

.coinvestimentos .title > div .stripe {
	height: 11vw;
	margin-bottom: 1vw;
}

@media (orientation: portrait) {
	.coinvestimentos .title > div .stripe {
		display: none;
	}
}

.coinvestimentos .logos {
	flex-wrap: wrap;
	justify-content: center;
	gap: 2vw;
	padding: 5vw;
}

.coinvestimentos .logos img{
    height: auto;
    align-self: center;
}

@media (orientation: portrait) {
	.coinvestimentos .logos {
		gap: 5vw;
	}
}

.coinvestimentos .logos img {
	width: 6vw;
	transition: opacity 0.5s;
}

@media (orientation: portrait) {
	.coinvestimentos .logos img {
		width: 20vw;
	}
}

.coinvestimentos .logos img:hover {
	opacity: 0.6;
}

.principais {
	padding: 5vw 0;
	flex-direction: column;
}

.principais .title {
	padding-left: var(--pad);
}

.principais .cards {
	flex-wrap: wrap;
	gap: 3vw;
	padding: 0 var(--pad) 0 22vw;
}

.principais .cards > div {
	flex: 1;
	flex-direction: column;
	gap: 1.5vw;
	border-top: 1px solid var(--gray);
	padding-top: 2.5vw;
	min-width: 17vw;
}

@media (orientation: portrait) {
	.principais {
		gap: 10vh;
	}

	.principais .title {
		flex-direction: column;
	}

	.principais .cards {
		flex-direction: column;
		gap: 10vh;
	}

	.principais .cards > div {
		gap: 5vh;
	}
}

.documentos {
	padding: 5vw var(--pad);
	flex-direction: column;
	gap: 3vw;
}

.documentos .title {
	gap: 5vw;
	align-items: flex-end;
}

.documentos .downloads {
	gap: 3vw;
}

.documentos .downloads > p {
	flex: 1;
}

.documentos .downloads > div {
	flex: 2;
	column-count: 2;
	column-gap: 3vw;
	column-span: none;
	display: block;
}

.documentos .downloads > div .hide-desktop {
	display: none;
}

@media (orientation: portrait) {
	.documentos .downloads > div .hide-mobile {
		display: none;
	}

	.documentos .downloads > div .hide-desktop {
		display: flex;
	}
}

.documentos .downloads > div > a {
	break-inside: avoid;
	gap: 1vw;
	padding-top: 0.5vw;
	text-transform: none;
	letter-spacing: normal;
	border-top: 1px solid var(--gray);
}

.documentos .downloads > div > a::after {
	content: "↓";
	font-family: Arial, sans-serif;
	font-size: 1.4vw;
	position: absolute;
	right: 1vw;
	transform: scaleY(1.2);
}

.documentos .downloads > div > a span {
	opacity: 0.5;
}

.documentos .downloads > div > a span::before {
	content: "/";
}

.documentos .downloads > div > a p {
	width: calc(100% - 4vw);
	font-size: 1vw;
	line-height: 1.2;
	height: 5vw;
}

@media (orientation: portrait) {
	.documentos {
		gap: 10vh;
	}

	.documentos .title {
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 0;
	}

	.documentos .downloads {
		flex-direction: column;
		gap: 10vh;
	}

	.documentos .downloads > div {
		column-count: 1;
	}

	.documentos .downloads > div > a {
		gap: 4vw;
		padding-top: 2vw;
	}

	.documentos .downloads > div > a::after {
		font-size: 4vw;
		right: 5vw;
	}

	.documentos .downloads > div > a p {
		width: calc(100% - 20vw);
		font-size: 4vw;
		height: 20vw;
	}
}

.institucional {
	justify-content: flex-end;
	align-items: center;
}

.institucional .title {
	position: absolute;
	left: var(--pad);
	width: 46vw;
	flex-direction: column;
	align-items: flex-end;
	gap: 2vw;
}

.institucional .title a {
	width: 28vw;
}

.institucional img {
	width: 59vw;
    height: auto;
	aspect-ratio: 2/1;
	object-fit: cover;
}

@media (orientation: portrait) {
	.institucional {
		flex-direction: column;
		height: 180vw;
		justify-content: flex-start;
	}

	.institucional .title {
		width: 90vw;
		top: 100vw;
		gap: 5vh;
	}

	.institucional .title a {
		width: 100%;
	}

	.institucional img {
		width: 100%;
		aspect-ratio: auto;
	}
}

.return-chart{
	height: 50vh;
	margin: 5vh 0;
}

.return-table{
	font-size: 0.875vw;
	border-collapse: collapse;
}

.return-table :is(td, th){
	padding: 1vw;
}

.return-table thead th{
	white-space: nowrap;
}

.return-table th{
	text-transform: uppercase;
}

.return-table td{
	text-align: center;
	color: var(--white);
}

.return-table tbody :is(th, td){
	border-top: 0.0625rem solid #c4c4c494;
}

.return-table tbody th{
	text-align: left;
}

.return-table.return-table-mobile{
	display: none;
}

.return-table-disclaimer{
	font-size: 0.75vw;
	margin-top: 1vw;
}

@media (orientation: portrait) {
	.return-table.return-table-desktop {
		display: none;
	}

	.return-table.return-table-mobile {
		display: table;
	}

	.return-table{
		font-size: 2.9vw;
	}

	.return-table thead th{
		white-space: normal;
	}
}

.fundo-img{
	flex-direction: column;
	text-align: right;
	width: 50vw;
}

.fundo-img h1{
	margin: 2vw 5vw 4vw;
	max-width: 25vw;
    align-self: flex-end;
}

.fundo-img img{
	transform: scale(0) translateX(-15vw);
	clip-path: polygon(0 0, 30% 0, 0 100%, 0 100%);
	width: 100%;
	height: 100%;
	margin-bottom: 4vw;
	transition: 2s var(--ease);
	transform-origin: left;
	justify-self: left;
}

.fundo.in-view .fundo-img img{
	transform: scale(1) translateX(0);
    clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
	object-fit: cover;
}

.fundo-img::after {
	content: "";
	position: absolute;
	top: 0;
	width: 1vw;
	height: 100%;
	background: var(--gray);
	transition: transform 1.4s var(--ease);
	right: 30vw;
	transform: skewX(-24deg) scaleY(0);
	transform-origin: top right;
}

.fundo.in-view .fundo-img::after{
	transform: skewX(-24deg) scaleY(1);
}

.fundo-conteudo{
	width: 50vw;
	flex-direction: column;
	margin-bottom: 4vw;
	justify-content: center;
}

.fundo-conteudo::before,
.fundo-conteudo::after{
	content: '';
	display: block;
	position: absolute;
	inset: 0 -5vw;
	background: var(--gray);
	clip-path: polygon(22.5% 0, 100% 0, 79.5% 100%, 0 100%);
	z-index: -1;
}

.fundo-conteudo::after{
	inset: 0.1vw -4.8vw;
	background: var(--black);
}

.fundo-conteudo-interno{
	flex-direction: column;
	padding: 5vw 13vw;
}

@media (orientation: portrait) {
	.fundo{
		flex-direction: column;
	}

	.fundo-img h1{
		max-width: 100%;
		align-self: flex-start;
	}

	.fundo-img{
		width: 100vw;
		text-align: left;
	}

	.fundo-img img{
		height: 85vw;
	}

	.fundo.in-view .fundo-img img{
		clip-path: none;
	}
	
	.fundo-img::after {
		width: 3vw;
		right: 5vw;
	}

	.fundo-conteudo{
		width: 100vw;
		padding: 5vw;
	}

	.fundo-conteudo::before,
	.fundo-conteudo::after{
		display: none;
	}

	.fundo-conteudo-interno{
		padding: 5vw;
	}
}

.volatilidade{
	background-color: #2C3137;
}

.documentos-fundo{
	padding: 5vw var(--pad);
	gap: 3vw;
}

.documentos-fundo .title {
	gap: 2vw;
	white-space: nowrap;
}

.documentos-fundo .downloads > div{
	gap: 1vw 2vw;
	flex-wrap: wrap;
}

.documentos-fundo .downloads > div a{
	width: 8.9vw;
	align-items: center;
	min-height: 6vw;
}

.documentos-fundo .downloads > div a::before{
	content: '';
	display: block;
	width: 150%;
	position: absolute;
	inset: 0 -20% 0 -30%;
	background: var(--gray);
	clip-path: polygon(25% 0, 100% 0, 74% 100%, 0 100%);
	transition: 0.2s var(--ease);
}

.documentos-fundo .downloads > div a:is(:hover, :focus)::before{
	background: var(--white);
}

.documentos-fundo .downloads > div p{
	color: var(--black);
	font-size: 0.875vw;
	text-transform: none;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0;
	padding: 1vw 0;
}

.documentos-fundo .downloads > div .hide-desktop {
	display: none;
}

@media (orientation: portrait) {
	.documentos-fundo {
		gap: 10vw;
		flex-direction: column;
		white-space: normal;
	}

	.documentos-fundo .title {
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 0;
	}

	.documentos-fundo .downloads > div{
		gap: 10vw;
	}

	.documentos-fundo .downloads > div .hide-mobile {
		display: none;
	}

	.documentos-fundo .downloads > div .hide-desktop {
		display: flex;
	}

	.documentos-fundo .downloads > div a{
		width: 100%;
		padding: 5vw;
	}

	.documentos-fundo .downloads > div a::before{
		width: 100%;
		inset: 0;
		clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
	}

	.documentos-fundo .downloads > div p{
		font-size: 4vw;
	}
}

.caracteristicas{
	padding: 5vw var(--pad);
    flex-direction: column;
    gap: 3vw;
}

.caracteristicas .cards{
	flex-wrap: wrap;
    gap: 3vw;
}

.caracteristicas .cards > div{
	flex: 1;
    flex-direction: column;
    min-width: 17vw;
}

.caracteristicas .cards > div h3{
	font-size: 1.1vw;
    line-height: 1;
	font-weight: 400;
}

.caracteristicas .cards > div small{
	color: var(--white);
	line-height: 1.5;
}

.caracteristicas .btn-alt{
	margin-inline: auto;
}

@media (orientation: portrait) {
	.caracteristicas h1{
		font-size: 5vw;
	}

	.caracteristicas{
		gap: 7vw;
	}

	.caracteristicas .cards{
		column-gap: 5vw;
		row-gap: 7vw;
	}

	.caracteristicas .cards > div{
		min-width: 30vw;
	}

	.caracteristicas .cards > div h3{
		font-size: 4vw;
	}
}

.contato {
	padding: 10vw 25vw;
}

.contato .formulario {
	flex: 1;
	flex-direction: column;
	gap: 3vw;
}

.contato .formulario form {
	flex-direction: column;
	gap: 3vw;
    width: 100%;
}

.contato .formulario form p{
    width: 100%;
}

.contato .formulario form button {
	width: 21vw;
	margin-top: 3.2vw;
    margin-left: auto;
}

.wpcf7 form .wpcf7-not-valid-tip{
    color: inherit;
    font-style: italic;
    font-size: 0.75rem;
}

.wpcf7 form .wpcf7-response-output{
    width: 100%;
    justify-content: center;
    text-align: center;
    border: none;
    padding: 0;
    margin: 3vw auto 0;
}

@media (orientation: portrait) {
	.contato {
		flex-direction: column;
		padding: 10vh 5vw 20vh;
	}

	.contato .formulario {
		gap: 5vh;
	}

	.contato .formulario form {
		gap: 5vh;
	}

	.contato .formulario form button {
		width: 100%;
		margin-top: 12vw;
	}

	.contato .formulario form button::before {
		width: 65vw;
	}
}

footer {
	padding: 5vw var(--pad) 0;
	background-color: var(--gray);
	flex-direction: column;
	align-items: center;
	gap: 2vw;
}

footer .links {
	width: 100%;
	gap: 3vw;
}

footer .links div {
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
}

footer .links a {
	color: var(--black);
	font-size: 0.8vw;
	letter-spacing: 0.08vw;
	line-height: 2.3vw;
}

footer .links img {
	width: 7vw;
    height: auto;
	margin-bottom: 2.2vw;
}

footer .logo {
	width: 100%;
	padding: 3vw;
	border-top: 1px solid var(--black);
	justify-content: center;
}

footer .logo :is(img, svg) {
	width: 10vw;
    height: auto;
}

@media (orientation: portrait) {
	footer .links {
		flex-direction: column;
		align-items: center;
		gap: 10vh;
		padding: 10vh 0;
	}

	footer .links div {
		align-items: center;
		text-align: center;
		gap: 5vh;
	}

	footer .links a {
		font-size: 3.5vw;
		letter-spacing: 0.35vw;
		line-height: 2;
	}

	footer .links img {
		width: 30vw;
	}

	footer .logo {
		padding: 20vw;
	}

	footer .logo :is(img, svg) {
		width: 40vw;
	}
}

.default-style{
    padding: 10vw 25vw;
}

.default-style > article > *{
    margin-bottom: 3vw;
}

.default-style a{
    display: inline-flex;
}

@media (orientation: portrait) {
	.default-style {
		padding: 10vh 5vw;
	}
    
    .default-style > article > *{
        margin-bottom: 5vw;
    }
}

.page-not-found{
    justify-content: center;
    text-align: center;
}

.page-not-found-inner{
    flex-direction: column;
    gap: 3vw;
}

@media (orientation: portrait) {
    .page-not-found-inner{
        gap: 5vw;
    }
}