@charset "utf-8";
/* CSS Document */

main {
	display: flex;
    flex-direction: column;
    width: 100%;
}

header a {
	width: 120px;
    display: contents;
}

/*FAIXA CINZA COM CEBOLA*/
hero {
	display: flex;
	flex-direction: column;
}


hero h1 {
	text-align: center;
    margin: 60px 0px 125px 0px;
    font-family: FlodeB;
    letter-spacing: 1px;
    color: #80134a;
	font-size: 34px;
	font-weight: 100;
}

hero h2 {
	text-align: center;
    font-family: 'FlodeB';
    color: #80134a;
    letter-spacing: 1px;
	margin-bottom: 10px;
	font-size: 32px;
	font-weight: 100;
}

hero h3 {
	text-align: center;
    font-family: 'Flode';
    letter-spacing: 1px;
	line-height: 1.3;
	margin-bottom: 20px;
}

hero section {
	display: flex;
	flex-direction: column;
    width: 100%;
    height: auto;
    background-color: #ddd;
	margin-bottom: 75px;
}

hero span {
    display: flex;
    max-width: 820px;
    width: 90%;
    margin: 0 auto;
    flex-direction: column-reverse;
}

.txt-duvida {
    display: flex;
	flex-direction: column;
}

.cebola-faq {
	display: flex;
    flex-direction: column;
    align-items: center;
	margin-bottom: 25px;
    margin-top: -70px;
}

/*Ocultando imagem para PC*/
.cebola-corte {
	display: none;
}

.cebola-normal {
	width: 50%;
	max-width: 200px;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/*PERGUNTAS*/
.faq {
	width: 94%;
    max-width: 800px;
    display: flex;
    margin-bottom: 60px;
    flex-direction: column;
    margin: 0 auto;
}

.faq li {
	width: 100%;
	margin-bottom: 6px;
}

.faq li label {
	padding: 20px 16px;
    font-family: 'FlodeB';
    font-size: 18px;
    background-color: #80134a;
    color: #fff;
    display: flex;
	align-items: center;
	cursor: pointer;
	transition: 0.3s ease;
}

.faq li label:hover {
	background-color: #581248;
}

.faq li label::before {
	content: '+';
	margin-right: 10px;
}

.faq input[type=radio] {
	display: none;
}

.faq .resposta {
	padding: 0px 16px 0px 32px;
    background-color: #ddd;
	line-height: 1.5;
	max-height: 0px;
	overflow: hidden;
	transition: max-height 0.2s, padding 0.1s ease;
}

.faq input[type=radio]:checked + label + .resposta {
	max-height: 100%;
	padding: 10px 16px 10px 32px;
}

.faq input[type=radio]:checked + label::before {
	content: '-';
}

/*TELA + 768*/
@media (min-width:769px) {
	.cebola-normal {
		display: none;
	}
	
	.cebola-corte {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	
	hero span {
		flex-direction: row;
	}
	
	.txt-duvida {
		width: 70%;
		justify-content: center;
	}
	
	.cebola-faq {
		width: 30%;
		margin-bottom: 0px;
	}
}
