/*FONT*/
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');


/*GENERAL*/
:root {
	--primary: #233B4F;
	--secondary: #A2913B;
	--text: #1E1E1E;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	min-height: 100%;
	scroll-behavior: smooth;
}

body {
	background: #FFF;

	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--text);
}

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

figure {
	margin: 0;
}

h1,
h2,
h3,
strong {
	font-weight: 700;
}

p {
	font-weight: 400;
	font-size: 15px;
	line-height: 150%;
	color: var(--text);
}

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

h2.title {
	display: inline-block;
	font-size: 28px;
	font-weight: 600;
	line-height: 120%;
}

h2.title:after {
	content: '';
	display: block;
	width: 100%;
	height: 7px;
	background: var(--secondary);
}

.btn {
	border-radius: 15px;
	background: var(--primary);
	transition: .4s ease;

	font-size: 20px;
	font-weight: 600;
	color: #FFF;
}

.btn:hover {
	background: #000;
	color: #FFF;
}

::-webkit-input-placeholder {
	/* Edge */
	color: var(--light-grey);
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--light-grey);
}

::placeholder {
	color: var(--light-grey);
}

.slick-dots {
	display: flex;
	gap: 15px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
}

.slick-dots button {
	display: block;
	width: 15px;
	aspect-ratio: 1/1;
	background: transparent;
	/* background: rgba(255, 255, 255, 0.2); */
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	overflow: hidden;
	text-indent: 999px;
	transition: .4s ease;
}

.slick-dots li.slick-active button {
	background: rgba(255, 255, 255, .9)
}


/*HEADER*/
header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	padding: 40px 0 30px;
	background: var(--primary);
	z-index: 10;
	transition: .3s ease;
}

header.scrolling {
	padding: 20px 0 10px;
	background: rgba(35, 59, 79, 0.98);
	-webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);

	-webkit-backdrop-filter: blur(3px);
	-o-backdrop-filter: blur(3px);
	-moz-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);

	animation-timing-function: cubic-bezier(0.79, 0.14, 0.15, 0.86);
}

header figure {
	max-width: 250px;
	margin: 0;
}

header nav.menu {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 7px;
}

header nav.menu a {
	position: relative;
	margin: 0;

	font-size: 18px;
	font-weight: 300;
	text-decoration: none;
	color: #FFF;
}

header nav.menu a:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--secondary);
	transition: .2s ease;
}

header nav.menu a:hover:after {
	width: 20px;
}


/* MENU */
#menuToggle {
	display: inline-block;
	width: 30px;
	margin: 10px 0 0;
	z-index: 1;
	-webkit-user-select: none;
	user-select: none;
}

#menuToggle input {
	display: flex;
	width: 40px;
	height: 32px;
	position: absolute;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
}

#menuToggle span {
	position: relative;
	display: block;
	width: 100%;
	height: 2px;
	margin-bottom: 5px;
	background: #FFF;
	border-radius: 3px;
	z-index: 1;
	transform-origin: 5px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
		opacity 0.55s ease;
}

#menuToggle span:first-child {
	transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
	opacity: 1;
	transform: rotate(45deg) translate(-3px, -1px);
	background: #36383F;
}

#menuToggle input:checked~span:nth-last-child(3) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
	transform: rotate(-45deg) translate(0, -1px);
}

#menu {
	position: fixed;
	width: 250px;
	height: 100vh;
	top: 0;
	right: 0;
	box-shadow: 0 0 10px #85888C;
	padding: 20px;
	padding-top: 125px;
	background-color: #F5F6FA;
	-webkit-font-smoothing: antialiased;
	transform-origin: 0% 0%;
	transform: translate(110%, 0);
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
	padding: 10px 0;
	transition-delay: 2s;
}

#menu li a {
	color: var(--primary);
}

#menuToggle input:checked~ul {
	transform: none;
}



/*MAIN*/
main {
	overflow: hidden;
}


/*FOOTER*/
footer {
	position: relative;
	padding: 70px 0 15px;
	background: url(img/footer-bg.svg) no-repeat;
	background-size: cover;
	background-position: center top;
	overflow: hidden;
}

footer figure {
	margin: 0;
}

footer .logo-wrap {
	display: flex;
	align-items: end;
	gap: 20px;
}

footer .contact {
	margin-left: 30px;
	margin-bottom: 10px;
}

footer .contact p {
	margin: 0;

	font-size: 16px;
	line-height: 26px;
	color: #FFF;
}

footer .contact a {
	transition: .4s ease;
	color: #FFF;
}

footer .contact a:hover {
	color: var(--secondary);
}

footer figure.airplane {
	position: absolute;
	max-width: 700px;
	top: 30px;
	right: -50px;
}



/*HERO*/
section.hero {
	position: relative;
}

section.hero:before {
	content: 'DIREITO AERONÁUTICO';
	position: absolute;
	left: 15px;
	bottom: 50%;
	transform: rotate(270deg) translateX(calc(-50% - 90px));
	transform-origin: 0 0;
	z-index: 2;

	font-size: 40px;
	font-weight: 700;
	color: #FFF;
	opacity: 0.07;
}

section.hero:after {
	content: 'CONTENCIOSO CÍVEL ESTRATÉGICO';
	position: absolute;
	left: 55px;
	bottom: 50%;
	transform: rotate(270deg) translateX(calc(-50% - 90px));
	transform-origin: 0 0;
	z-index: 2;

	font-size: 25px;
	font-weight: 700;
	color: #FFF;
	opacity: 0.07;
}


section.hero .item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 130px;
	height: 650px;

	text-align: center;
}

section.hero ul.slider li {
	background-size: cover;
	background-position: center;
}

section.hero h2 {
	margin: 0;

	font-family: 'Inria Serif';
	font-size: 32px;
	font-weight: 400;
	line-height: 130%;
	color: #FFF;
}

section.hero p {
	margin: 0;

	font-size: 16px;
	font-weight: 300;
	line-height: 130%;
	color: #FFF;
}

section.hero h2+p {
	margin-top: 30px;
}

section.hero a.btn-down {
	display: inline-block;
	margin-top: 10px;
}

/* quem somos */
section.quem-somos {
	padding: 140px 0 70px;
	background-color: var(--primary);
	background-image: url(img/quem-somos-bg.svg);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 80%;
}

section.quem-somos h2 {
	margin-bottom: 25px;
	color: #FFF;
}

section.quem-somos h2:after {
	width: calc(100% + 60px);
	transform: translateX(-60px);
}

section.quem-somos p {
	color: #FFF;
}

section.quem-somos figure {
	max-height: 610px;
	overflow: hidden;
}

/* equipe */
section.equipe {
	padding: 140px 0 0;
}

section.equipe h2 {
	margin-bottom: 25px;
}

section.equipe hr {
	margin: 70px 0;
}

section.equipe figure.matheus {
	max-height: 475px;
	overflow: hidden;
}

/* area atuacao */
section.areas-atuacao {
	padding: 140px 0 70px;
}

section.areas-atuacao h2 {
	margin-bottom: 50px;
}

section.areas-atuacao figure .wrap {
	overflow: hidden;
}

section.areas-atuacao figure img {
	transition: .4s ease;
}

section.areas-atuacao figure:hover img {
	filter: saturate(2);
	transform: scale(1.05);
}

section.areas-atuacao figcaption {
	margin-top: 5px;
	padding: 10px;
	background: var(--secondary);

	font-size: 16px;
	font-weight: 500;
	text-align: center;
	color: #FFF;
}

/* modal */

.modal .modal-header {
	border: 0;
}

.modal .modal-content {
	padding: 30px;
	border-radius: 20px;
	border: 1px solid var(--primary);
	z-index: 1;
}

.modal .modal-content h2 {
	margin-bottom: 20px;
	text-align: center;
}

.modal .modal-content p {
	margin: 0;
}

.modal .btn-close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
}

.modal .btn {
	padding: 5px 20px;
}


/*////////////////
/// RESPONSIVE
////////////////*/
@media (max-width: 1200px) {}

@media (max-width: 992px) {
	section.quem-somos {
		text-align: center;
	}

	section.quem-somos h2:after {
		width: initial;
		transform: initial;
	}

	header figure {
		margin: 0 auto;
	}

	footer {
		padding: 180px 0 30px;
	}

	section.equipe {
		text-align: center;
	}

	section.areas-atuacao {
		padding-top: 0;
	}

	footer img.hammer {
		display: none;
	}

	footer figure.airplane {
		display: none;
	}

	footer .logo-wrap {
		flex-direction: column;
		align-items: center;
	}

	footer img.logo {
		max-width: 200px !important;
		margin-bottom: 10px;
	}

	footer .contact {
		margin-left: 0;
		text-align: center;
	}
}

@media (max-width: 768px) {}

@media (max-width: 576px) {

	section.hero:before,
	section.hero:after {
		display: none;
	}
}

@media (max-width: 375px) {}

@media (max-width: 320px) {}