/*
--- 01 TYPOGRAPHY

- font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- font weights:
Default 400
medium 500
semi bold 600
bold 700

- line heights: 
Default 1
small 1.05
medium 1.2
paragraph default 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

--- 05 SHADOWS

--- 06 BORDER RADIUS
default 9px

--- 07 WHITESPACE (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*/

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* *:focus {
    outline: none;
    outline: 4px dotted #e67e22;
    outline-offset: 8px;
    box-shadow: 0 0 0 0.8rem #e67e22;
} */

html {
	/* default = 16px. */
	/* default 1 rem = 16 pixels */
	font-size: 62.5%;
	/* 10 / 16 = 0.625 = 62.% */
	/* 1 rem = 10 pixels */

	overflow-x: hidden;
	/* scroll-behavior: smooth; */
	/*  nao funciona no iphone  */
}

body {
	/* font-family: 'Cormorant Garamond', serif; */
	/* font-family: 'EB Garamond', serif; */
	font-family: 'Montserrat', sans-serif;
	/* font-family: "Public Sans", sans-serif; */
	line-height: 1;
	font-weight: 400;
	color: #555;
	background-color: #fff;
}

.fancy {
	font-family: 'Cormorant Garamond', serif;
}

b {
	font-weight: 600;
}

a,
a:visited {
	text-decoration: none;
	color: #000;
	transition: all 300ms;
}

a:hover {
	color: rgb(255, 179, 0)
}

/* 
rgba(64,104,64,255)
rgba(19,61,21,255)
rgba(60,60,61,255)


rgba(68,135,71,255)

rgba(12,28,12,255)
*/
/* HEADER ********************************************************************/

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 9rem;
	padding: 4.2rem;
	font-size: 2.8rem;

	background-color: #000;
	color: #fff;
}

/* PRINCIPAL ********************************************************/

.section-hero {
	/* display: flex; */
	/* justify-content: center; */
	/* margin-left: 20rem; */
	/* margin-right: 20rem; */
	/* gap: 10rem;
    max-width: 130rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center; */
	padding: 9rem;
	/* background-color: #000000; */
	background-color: rgb(255, 179, 0);
	background-image: url(../img/camouflage-background-desfocado.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	/* color: #fff; */
	color: #000000;
	min-height: 70rem;
	/* width: 100%; */
}

.hero-container {
	width: 130rem;
	margin: auto auto;
	padding: 9rem 3.2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9.6rem;
	align-items: center;
	/* width: auto; */
}


.hero-img-box {
	/* background-color: rgba(0, 0, 255, 0.267); */
	text-align: center;
	font-size: 4rem;
}

.logo1 {
	max-width: 50rem;
}

.logo1-sub {
	font-size: 7rem;
	font-family: "Public Sans", sans-serif;
	color: rgb(255, 179, 0);
	font-weight: 900;

}

.hero-text-box {
	/* font-size: 4.6rem; */
	/* background-color: rgba(255, 127, 80, 0.247); */
	text-align: center;
	color: white;
}

.hero-text-box ul li {
	font-size: 2rem;
	text-align: left;
	margin-left: 12rem;
	margin-bottom: 1rem;
}

.hero-text-box ul {
	margin-bottom: 4rem;
}

h1 {
	font-size: 3.6rem;
	margin-bottom: 6rem;
}

.hero-description {
	font-size: 2.4rem;
	line-height: 1.6;
	margin-bottom: 8rem;
}

.hero-grid {
	/* background-color: #78e6e6; */
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 0;
	font-size: 2.8rem;
	align-items: center;
	justify-content: center;
}

.hero-grid div {
	display: flex;
	align-items: center;
	text-align: center;
	align-content: center;
	margin: auto;
	padding: 2.2rem;
	max-height: 12rem;
	/* width: 17rem; */
}

.hero-grid--span-2 {
	grid-column: span 1;
}

.hero-grid--span-3 {
	grid-column: span 3;
}


.hero-btn,
.hero-btn:link,
.hero-btn:visited {
	display: inline-block;
	padding: 9px;
	background-color: #1a1a1a;
	color: #fff;
	border-radius: 9px;
	text-decoration: none;
	text-transform: none;
	transition: all 300ms;
}

.hero-btn-destaque,
.hero-btn-destaque:link,
.hero-btn-destaque:visited {
	background-color: rgb(255, 255, 255);
	color: #000;
	font-weight: bold;
}

.hero-btn:hover,
.hero-btn:active {
	color: rgb(255, 179, 0);
	/* background-color: #afafaf; */
}

/*******************************************************/

.icon {
	width: 5rem;
	height: 5rem;
	/* color: red; */
}

.big-icon {
	width: 15rem;
	height: 15rem;
}

h2 {
	/* padding: 9rem; */
	font-size: 4.4rem;
	margin-bottom: 3.6rem;
	text-align: center;
}

h3 {
	font-size: 3.2rem;
	margin-bottom: 2.8rem;
}

h4 {
	font-size: 2rem;
	margin-top: 1rem;
	margin-bottom: 3.6rem;
	font-weight: 300;
}

.negrito {
	font-weight: 700;
}

.centralizar {
	padding: 9rem;
	max-width: 100%;
	display: flex;
	justify-content: center;

}

/* transiçao*************************************************************/

.section-transicao {
	display: flex;
	justify-content: center;
	padding: 5rem;
	/* background-image: linear-gradient(180deg, rgb(64, 104, 64), #fefefe); */
	background-image: linear-gradient(180deg, rgb(32, 32, 32), #fefefe);
}

/* faq *****************************************************************/

.section-faq {
	background-color: #f8f8f8;
	/* background-color: #ffffff; */
	flex-direction: column;
	align-items: center;
	position: relative;
}

/* PARTICIPE ***************************************************************/

.participe-container {
	display: flex;
	width: 1000px;
	text-align: center;
	flex-direction: column;
}

.form {
	color: black;
	font-size: 2.2rem;
	/* background-color: rgb(180, 180, 180); */
	background-color: rgba(64, 64, 64, 255);
	padding: 20px 100px;
	border-radius: 10px;
	/* display: grid;  */
	/* grid-template-columns: 1fr 10fr; */
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	/* justify-content: flex-start; */
	/* align-items: flex-end; */
	gap: 10px;
	/* width: 50%; */
	margin-top: 10px;
	height: 50rem;
	transition: all 900ms;
	overflow: hidden;
}

#captcha:img {
	margin: 1rem;
}

.hidden {
	height: 0px;
	padding-top: 0;
	padding-bottom: 0;
	margin: 0;
}

.form input {
	height: 5rem;

	font-family: inherit;
	color: inherit;
	width: 100%;
	padding: 1.2rem;
	font-size: 1.8rem;
	border: none;
	background-color: #ffffff;
	border-radius: 9px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.form textarea {
	/* height: 5rem; */
	resize: none;
	font-family: inherit;
	color: inherit;
	width: 100%;
	padding: 1.2rem;
	font-size: 1.8rem;
	border: none;
	background-color: #ffffff;
	border-radius: 9px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	margin-bottom: -0.4rem;
}

.btn--form {
	width: 100%;
	/* grid-column: span 2; */
	padding: 10px;
	margin-top: 10px;
}

.btn,
.btn:link,
.btn:visited {
	display: inline-block;
	font-size: 2rem;
	font-weight: 600;
	text-decoration: none;
	padding: 1.6rem 3.2rem;
	border-radius: 9px;
	/* background-color: #000000; */
	background-color: rgb(0, 0, 0);
	color: #fff;
	/* color: rgb(64, 104, 64); */
	transition: all 300ms;
}

.btn:hover,
.btn:active {
	background-color: #ffffff;
	color: rgb(128, 90, 0);
	/* color: rgb(255, 255, 255) */
}


/* INFO **********************************************************************/
.section-info {
	/* background-color: #f3f3f3; */
	background-color: #ffffff;
	/* background-color: #eee; */
	flex-direction: column;
	align-items: center;
	position: relative;
}

.info-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 130rem;
	font-size: 2.4rem;
	line-height: 1.6;
	justify-content: center;
	padding: 3rem 10rem 1rem;
	gap: 2rem;
	margin: 0 5rem;
}


/* CARDS *******************************************************************/

.section-cards {
	background-color: #ffffff;
	flex-direction: column;
	align-items: center;
}

.cards-container {
	/* background-color: burlywood; */
	display: grid;
	justify-content: center;
	justify-items: center;
	/* gap: 10rem; */
	width: 120rem;
	grid-template-columns: 1fr 1fr;
}

.cards-item {
	/* box-shadow: inset 0px 0px 15px rgb(0, 0, 0); */
	box-shadow: inset 0px 0px 5px 10px rgb(128, 90, 0);
	color: rgba(12, 28, 12, 255);
	background-color: rgb(255, 203, 83);
	/* color: #f8f8f8; */
	/* background-color: rgb(64, 104, 64); */
	width: 40rem;
	border-radius: 12px;
	font-size: 2.4rem;
	line-height: 1.6;
	padding: 20px;
	display: flex;
	flex-direction: column;

}

.cards-item p:first-child {
	display: flex;
	/* margin-top: auto; */
	align-items: center;
	padding: 0 2rem;
	margin-bottom: 2rem;
}

.cards-titulo {
	font-weight: 800;
	font-size: 2.8rem;
	margin-left: 3rem;
}

.cards-texto {
	font-weight: 400;
	margin-left: 3rem;
}

.mensagem-sucesso,
.mensagem-falha {
	width: 80%;
	padding: 2rem;
	margin: 0 auto;
	/* box-shadow: inset 0px 0px 15px rgb(0, 0, 0); */
	box-shadow: inset 0px 0px 5px 10px rgb(64, 64, 64);
	color: rgba(12, 28, 12, 255);
	background-color: rgb(255, 212, 112);
	/* color: #f8f8f8; */
	/* background-color: rgb(64, 104, 64); */
	border-radius: 12px;
	font-size: 2.4rem;
	line-height: 1.6;
}

.mensagem-falha {
	background-color: lightcoral;
	box-shadow: inset 0px 0px 5px 10px rgb(255, 0, 0);
}

/*******************************************************/

footer {
	display: flex;
	flex-direction: column;
	min-height: 12rem;
	background-color: rgb(0, 0, 0);
	justify-content: flex-start;
	/* align-items: center; */
	padding: 3rem 40rem 20rem;
}

.footer-item {
	display: flex;
	align-items: center;
	padding: 1rem 0;
}

.footer-texto {
	font-size: 1.8rem;
	color: rgb(128, 128, 128);
	color: #fefefe;
	padding-left: 2rem;
}

.icon-footer {
	height: 3rem;
	fill: #fefefe
}


/** MEDIA QUERIES *******************************************/

@media (max-width: 60em) {

	body {
		padding: 0;
		margin: 0;
		/* font-size: 20%; */
	}

	.texto-beta {
		font-size: 2rem;
	}

	.centralizar {
		padding: 6rem 0;
	}

	.section-hero {
		width: 100%;
		/* background-color: #fff; */
		/* color: #000; */
		/* padding-left: auto; */
	}

	.hero-container {
		margin: 0;
		padding: 0;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.logo1 {
		width: 100%;
		border-radius: 9px;
	}

	.logo1-sub {
		font-size: 3rem;
	}

	h1 {
		font-size: 3rem;
	}

	.hero-description {
		font-size: 1.8rem;
		line-height: 1.6;
	}

	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-text-box ul li {
		font-size: 2rem;
		text-align: left;
		margin-left: 2rem;
		margin-bottom: 1rem;
	}


	.info-container {
		width: 70%;
		/* font-size: 2rem; */
	}

	.section-info {
		padding-left: 1rem;
		padding-right: 1rem;
		/* font-size: 1px; */
	}

	.info-container {
		/* grid-template-columns: 1fr; */
		flex-direction: column;
		font-size: 1.4rem;
		padding: 1rem;

	}

	.info-item {
		width: 95%;
	}

	.icon {
		width: 0rem;
		height: 0rem;
	}

	.cards-container {
		grid-template-columns: 1fr;
		width: 100%;
		align-items: center;
		/* justify-content: center; */
		justify-items: center;
	}

	.cards-item {
		width: 60%;
		padding: 1rem;
		margin-bottom: 20px;
		margin-left: 1rem;
		min-height: 15rem;
	}

	.cards-titulo {
		font-size: 2rem;
		padding: 0rem;
		margin-left: 0;
	}

	.cards-texto {
		margin-left: 1rem;
		font-size: 1.4rem;

	}

	.participe-container {
		width: 80%;
	}

	.form {
		padding: 0 1rem;
	}

	html {
		width: 100%;
	}

	footer {
		padding: 2rem;
		padding-bottom: 13rem;
	}

	.btn--form {
		margin-bottom: 20px;
	}
}
