/* Reset do CSS de async desenvolvimentos*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
a{
    text-decoration:none;
    color:#fff;
}
ol, ul{
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*Fontes*/
@font-face {
	font-family:Montserrat-Regular;
	src: url('../fontes/Montserrat-Regular.ttf');
}
@font-face {
	font-family:Montserrat-Light;
	src: url('../fontes/Montserrat-Light.ttf');
}
@font-face {
	font-family:Montserrat-SemiBold;
	src: url('../fontes/Montserrat-SemiBold.ttf');
}
@font-face {
	font-family:Montserrat-ExtraBold;
	src: url('../fontes/Montserrat-ExtraBold.ttf');
}
@font-face {
	font-family:async;
	src: url('../fontes/A101HLVB.TTF');
}
@font-face {
	font-family:Barlow-SemiBold;
	src: url('../fontes/BarlowCondensed-SemiBold.ttf');
}
@font-face {
	font-family:Dancing;
	src: url('../fontes/DancingScript-Regular.ttf');
}
header{
	width:100%;
	height:auto;	
	display:flex;
	flex-direction:rows;
	justify-content:space-between;		
	background-color:#FFFAFA;
	position:relative;
}
@media (max-width: 768px){
	header{
		
		height:auto;
	}
}
header_{
	width:100%;
	height:auto;
	background-color:transparent;
	display:flex;
	flex-direction:rows;
	justify-content:space-between;
	padding-left:3.8rem;		
	background-color:#FFFAFA;
	
}
@media (max-width: 768px){
	header_{
		
		height:auto;
	}
}
.logo{
	width:18%;
	height:auto;
	margin-left:2rem;
}
.logo img{
	width:100%;
	height:auto;
	cursor:pointer;
	opacity:.9;
}
.logo img:hover{
	opacity:1;
}
/*.header::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(255,255,255,0.2);
    z-index: 0;
}

/*Menu*/
menu{
    display:flex;    
    width:6rem;
    height:6rem;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background-color:transparent; 
	top:0rem;   
    right:3.8rem;    
	position:absolute;
    cursor:pointer;
    z-index:100;
	transition:1s;
}
.barra{
    width:3.2rem;
    height:0.6rem;
    border-radius:0.2rem;
    background-color:#FFD700;
	box-shadow:1px 1px 1px #bdbaba;
    margin:0.2rem;
	
}
.barra:hover{
    background-image:linear-gradient(to right,#FF4500,#Efb810);
}
/*Menu móbile*/
nav{
    display:none;
    top:6rem;
    right:0.2rem;
    width:16%;
    height:30rem;
    float:right;   
    padding-top:2rem;
    padding-left:2rem;
    background-color:#FFFAFA;
	box-shadow:1px 1px 1px #000;
    position:absolute;
    z-index:100;
	
}
@media (max-width: 768px){
	nav{
		width:12rem;
		margin-right:1rem;
	}
}
nav ul > li{
    display:block;
    line-height:3rem;    
}
nav ul > li > a{
    font-family:Montserrat-SemiBold;
    font-size:1.4rem;
    color:#FFD700;
	text-shadow:1px 1px 1px #000;
}
nav ul > li > a:hover{
    color:#FF4500;
    cursor:pointer;
}
main{
	width:100%;
	height:auto;
	background-color:#FFFAFA;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	
}
h1{
	font-family:Dancing;
	font-size:26pt;
	text-shadow:1pt 1pt 1pt #000;
	color:#Ffd700;
	text-align:center;
	padding-top:3rem;
}
section{
	width:90%;
	height:auto;
	padding:3rem;
	background-color:#FFFAFA;
	margin:auto;
	border-radius:0.3rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
p{
	font-family:Montserrat-Regular;
	color:#Ffd700;
	font-size:12pt;
	text-shadow:1px 1px 1px #000;
	text-align:center;
}
.btn{
    width:9rem;
    height:1.6rem;
    border-radius:0.8rem;
    background-color:#FFD700;
	box-shadow:2px 2px 2px #bdbaba;  
	border:none;
}
.btn:hover{
	cursor:pointer;
    background-image:linear-gradient(to right,#FF4500,#Efb810);
}
.section-form{
	width:100%;
	height:42rem;
	background-color:#FFFAFA;
}
.section-form, h1, label{
	font-family:Dancing;
	font-size:26pt;
	text-shadow:1pt 1pt 1pt #000;
	color:#Ffd700;
	text-align:center;
	padding-top:3rem;
}
.section-form{
	width:100%;
	height:2rem;
	border:1px solid #FFD700;
	border-radius:0.2rem;
}
input {
	width:100%;
	height:2rem;
  border: 2px solid #FFD700; 
  border-radius: 0.2rem;       
}
textarea {
  width: 100%;
  height: auto;
  padding: 10px;
  font-size: 16px;
  font-family:Montserrat-Regular ;
  border: 1px solid #FFD700;
  border-radius: 5px;
  resize: none; /* Prevent resizing */
}
.obrigado{
	width:90%;
	height:auto;
	padding:3rem;
	background-color:#FFFAFA;
	margin:auto;
	border-radius:0.3rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.obrigado h1{
	font-family:Dancing;
	font-size:26pt;
	text-shadow:1pt 1pt 1pt #000;
	color:#Ffd700;
	text-align:center;
	padding-top:3rem;
}
footer{
	width:100%;
	height:3rem;
	margin-top:2rem;
}
footer p{
	font-family:Montserrat-Regular;
	color:#Ffd700;
	font-size:9pt;
	text-shadow:1px 1px 1px #000;
	text-align:center;
}