/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* 2. Remove default margin */
* {
	margin: 0;
}

body {
	/* 3. Add accessible line-height */
	line-height: 1.5;
	/* 4. Improve text rendering */
	-webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
	font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
	text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	text-wrap: balance;
}

/*
	9. Create a root stacking context
 */
#root,
#__next {
	isolation: isolate;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
	padding: 15px 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}
.hamburger:hover {
	opacity: 0.7;
}
.hamburger.is-active:hover {
	opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #000;
}

.hamburger-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 40px;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner::before {
	top: -10px;
}
.hamburger-inner::after {
	bottom: -10px;
}

/*
	 * Collapse
	 */
.hamburger--collapse .hamburger-inner {
	top: auto;
	bottom: 0;
	transition-duration: 0.13s;
	transition-delay: 0.13s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
	top: -20px;
	transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
		opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
	transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
		transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
	transform: translate3d(0, -10px, 0) rotate(-45deg);
	transition-delay: 0.22s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
	top: 0;
	opacity: 0;
	transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
		opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
	top: 0;
	transform: rotate(-90deg);
	transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
		transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
* Fonts
*/
@font-face {
	font-family: "Area Normal Black";
	src: url("../fonts/") format("woff2"),
		url("../fonts/AreaNormal-Black.woff") format("woff"),
		url("../fonts/AreaNormal-Black.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Area Normal Bold";
	src: url("../fonts/AreaNormal-Bold.woff2") format("woff2"),
		url("../fonts/AreaNormal-Bold.woff") format("woff"),
		url("../fonts/AreaNormal-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Area Normal Regular";
	src: url("../fonts/AreaNormal-Regular.woff2") format("woff2"),
		url("../fonts/AreaNormal-Regular.woff") format("woff"),
		url("../fonts/AreaNormal-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/*
* Variables
*/
:root {
	--red: "#AE2128";
}

/*
* Estilos Aliacer
*/
body {
	font-family: "Area Normal Regular", Arial, Helvetica, system-ui,
		-apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell,
		serif;
	font-style: normal;
	color: #000;
	font-size: 16px;
}
body.overhidden {
	overflow: hidden;
}

.site-header {
	background-color: #000;
	padding: 0.5em;
	position: relative;
}
.site-header .contw {
	display: flex;
	align-items: center;
	flex-direction: row;
}
.site-header .contw .logo {
	width: 250px;
}
.site-header .contw .logo img {
	width: 100%;
	height: auto;
}

.site-header .contw .extras {
	display: none;
}

.site-header .contw .side {
	margin-left: auto;
}
.site-header .contw .side .hamburger .hamburger-box {
	width: 45px;
}
.site-header .contw .side .hamburger .hamburger-box .hamburger-inner,
.site-header .contw .side .hamburger .hamburger-box .hamburger-inner::before,
.site-header .contw .side .hamburger .hamburger-box .hamburger-inner::after {
	width: 45px;
	background-color: #fff;
}

.mn-cont {
	position: absolute;
	top: 100%;
	right: 0;
	background-color: rgba(0, 0, 0, 0.75);
	border-bottom-left-radius: 30px;
	width: 200px;
	z-index: 99;

	opacity: 0;
	visibility: hidden;
	transform: translatey(30px);
	transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mn-cont.is-active {
	opacity: 1;
	visibility: visible;
	transform: translatey(0);
}
.mn-cont .inner {
	padding: 1em;
}
.mn-cont .inner ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.mn-cont .inner ul li {
	border-bottom: 1px solid #fff;
}
.mn-cont .inner ul li a {
	color: #fff;
	text-decoration: none;
	padding: 0.5em 0;
	display: block;
	text-align: center;
}
.mn-cont .inner ul li a:hover,
.mn-cont .inner ul li a:focus {
	color: red;
}
.mn-cont .inner ul li:last-child {
	border: none;
}

@media (min-width: 768px) {
	.site-header .contw .logo {
		width: 400px;
	}

	.site-header .contw .extras {
		display: block;
		margin-left: auto;
		padding-right: 0.5em;
	}
	.site-header .contw .extras a {
		color: #fff;
		text-decoration: none;
		display: inline-block;
		padding: 0 0.5em;
	}
	.site-header .contw .extras a:hover,
	.site-header .contw .extras a:focus {
		color: #ae2128;
	}

	.site-header .contw .side {
		display: none;
	}
}

@media (min-width: 999px) {
	.site-header .contw .logo {
		width: 500px;
	}

	.site-header .contw .extras a {
		font-size: 22px;
	}
}

@media (min-width: 1200px) {
	.site-header .contw .logo {
		width: 600px;
	}
}

.site-footer {
	text-align: center;
	margin: 2em 0;
	padding: 0 1em;
	padding-bottom: 2em;
}

.site-footer a {
	color: #000;
}
.site-footer a:hover {
	color: #ae2128;
}

.banner {
	background-color: #ae2128;
}
.banner video {
	background: #ae2128;
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}

.intro {
	text-align: center;
	padding: 0 1em;
	margin: 2em 0;
}
.intro .coming {
	font-family: "Area Normal Black";
	font-weight: 900;
	font-size: 48px;
	font-size: clamp(48px, 8vw, 100px);
	background: linear-gradient(90deg, #6e90a4 0%, #652d47 100%);
	hyphens: auto;
	line-height: 1em;
	margin-bottom: 0.15em;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
}
.intro p {
	font-size: 20px;
}

.team {
	margin: 3em 0;
	text-align: center;
}
.team p {
	margin-bottom: 1em;
	font-family: "Area Normal Bold";
}
.team ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.team ul li {
	width: 50%;
	position: relative;
}
.team ul li:first-child img {
	display: block;
	margin-left: auto;
}
.team ul li:first-child::before {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background-color: #707070;
	position: absolute;
	top: 0;
	right: 0;
}
.team ul li:last-child img {
	display: block;
	margin-right: auto;
}
.team ul li img {
	max-width: 100%;
	height: auto;
}
