@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	font-size: 16px;
}

* {
	font-family: "Montserrat", sans-serif;
	box-sizing: border-box;
}

html, body {
	margin: 0;
	overscroll-behavior-y: none;
	scroll-behavior: smooth;
}

.container {
	position: relative;
	min-height: 200vh;
	background-color: rgb(255, 255, 255);
}

.stickyMask {
	display: flex;
	overflow: hidden;
	position: sticky;
	top: 0;
	height: 100vh;
	align-items: center;
	justify-content: center;
	mask-image: url('live-your-dream-mask-en.svg');
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: 60%;
	mask-position: center center;
	/* margin-bottom: 100vh; */
}

.stickyMask img {
	height: 100vh;
	width: 100vw;
	object-fit: cover;
}

@media screen and (max-width: 1024px) {
	.stickyMask img {
		width: 100vw;
	}
}

/* .imgFilter { */
	/* filter: grayscale(100%) saturate(0%) sepia(0.6) hue-rotate(171deg) saturate(113%) brightness(54%); */
/* } */

.stickyMask .logo {
	position: absolute; 
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, -50%); 
	width: 80%;
	height: auto;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 30px;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar .logo {
	height: 40px;
}

.navbar .menu {
	display: flex;
	gap: 20px;
	align-items: center;
}

.navbar .menu a {
	text-decoration: none;
	color: #333;
	font-size: 16px;
	font-weight: 300;
	transition: color 0.3s;
}

.navbar .menu a:hover {
	color: #007bff;
}

.navbar .cta-button {
	padding: 10px 20px;
	background-color: #233446;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s;
}

.navbar .cta-button:hover {
	background-color: #101820;
}

.section {
	padding: 1rem;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	scroll-margin-top: 60px;
}

.form-container {
	max-width: 500px;
	margin: 0 auto;
	background: #fff;
	padding: 20px;
	/* border-radius: 8px; */
	/* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.form-group {
	margin-bottom: 0.5rem;
}

input, textarea {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

button {
	width: 100%;
	padding: 10px;
	background: #007bff;
	color: white;
	font-size: 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s;
}

button[type="submit"] {
	margin-top: 0.5rem;
}

button[type="submit"]:hover {
	background: #0056b3;
}

.success, .error {
	text-align: center;
	margin-top: 15px;
	font-weight: bold;
}

.success {
	color: green;
}

.error {
	color: red;
}

p {
	font-size: 1rem; /* 16px */
	line-height: 1.5; /* 24px */
}

h1 {
	font-size: 2.5rem; /* 40px */
	line-height: 1.2; /* 48px */
}

h2 {
	font-size: 2rem; /* 32px */
	line-height: 1.3; /* 41px */
}

h3 {
	font-size: 1.5rem; /* 24px */
	line-height: 1.4; /* 34px */
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 1rem;
	gap: 1.5rem;
}

@media screen and (max-width: 1024px) {
	.two-col {
		display: flex;
		flex-direction: column;
		/* grid-template-columns: 1fr; */
	}

	.reversed-col {
		flex-direction: column-reverse;
	}
}

.partners-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 4rem;
	margin-top: 2rem;
	padding-bottom: 2rem;
}

.partner-item a {
	display: block;
	transition: transform 0.3s ease;
}

.partner-item a:hover {
	transform: scale(1.1);
}

.partner-item img {
	max-width: 250px;
	height: auto;
	transition: filter 0.3s ease;
}

.side-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.text-center {
	text-align: center;
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 2rem;
	height: 2rem;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.hamburger span {
	width: 2rem;
	height: 0.25rem;
	background: #333;
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
	position: relative;
	transform-origin: 1px;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
	transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
	.navbar .menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 70px; /* Altura da navbar, pode precisar de ajuste */
		left: 0;
		background-color: #fff;
		width: 100%;
		box-shadow: 0 8px 16px rgba(0,0,0,0.1);
		gap: 0;
	}

	.navbar .menu.active {
		display: flex;
	}

	.navbar .menu a {
		padding: 1rem;
		text-align: center;
		width: 100%;
		border-bottom: 1px solid #eee;
	}
	
	.navbar .menu a:last-of-type {
		border-bottom: none;
	}

	.hamburger {
		display: flex;
	}
}

[hidden] {
	display: none !important;
}

.mvv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.mvv-item h3 {
    color: #233446;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
	stroke: #233446;
	fill: none;
	stroke-width: 1;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mvv-item p, .mvv-item ul {
    text-align: center;
}

.mvv-item ul {
    list-style: none;
    padding: 0;
}

.mvv-item ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}