/*
	Reset
*/

body, ul, li, h1, h2, h3, h4, h5, h6, input{
	padding: 0;
	margin: 0;
	border: 0;
	list-style: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after{
	box-sizing: border-box;
}

a{
	text-decoration: none;
	color: #FF69B4; /* Rosa para links */
	text-decoration: underline;
}

body{
	/* O fundo da imagem é mantido, mas o fallback é branco */
	background: url(../images/background.jpg) #FFF top center;
	background-size: cover;
	font-family: 'Oswald', Georgia, sans-serif;
	color: #FFD700; /* Texto principal DOURADO */
}

.wrap{
	max-width: 940px;
	margin: 0 auto;
	padding: 20px;
}

/*
	Header
*/

.main-header{
	text-align: center;
	padding: 25px 0;
	background: #DDA0DD; /* Lilás Claro */
	box-shadow: rgba(255,105,180,0.5) 0px 0px 11px; /* Sombra Rosa/Magenta */
	margin-bottom: 15px;
	text-transform: uppercase;
}

.main-header h1{
	font-size: 20px;
	color: #FFD700; /* Título do Header DOURADO */
}

/*
	Content
*/

.main-content header{
	text-align: center;
}

.main-content header h2{
	text-align: center;
	font-size: 36px;
	color: #FF69B4; /* Título h2 ROSA */
}

.main-content header h3{
	text-align: center;
	font-size: 26px;
	margin-bottom: 15px;
	color: #E6E6FA; /* Subtítulo h3 LILÁS (lavanda) */
}

.video {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	margin-bottom: 15px;
}

.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 
	Footer 
*/

.main-footer{
	font-size: 11px;
	text-align: center;
	line-height: 1.6;
	font-family: Arial;
	color: #FFD700; /* Footer DOURADO */
}

/* Button */

.btn{
	padding: 15px 30px;
	border-color: #DDA0DD; /* Borda Lilás */
	border-width: 0px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	/* Gradiente de LILÁS para ROSA */
	background: #DDA0DD;
	background: linear-gradient(to bottom, #DDA0DD 0%, #FF69B4 100%);
	box-shadow: 0px 0px 0px 5px rgba(255,105,180,0.4); /* Sombra Rosa */
	display: block;
	position: relative;
	transition: all 350ms ease;
	text-transform: uppercase;
	text-align: center;
	color: #FFD700; /* Cor do texto do botão DOURADO */
	font-size: 30px;
	font-weight: bold;
	letter-spacing: -1px;
	text-shadow: #8A2BE2 1px 1px 0px; /* Sombra do texto roxo vibrante */
	text-decoration: none;
}


.btn:hover{
	/* Gradiente invertido ou mais vibrante no HOVER */
	background: #FF69B4;
	background: linear-gradient(to bottom, #FFB6C1 0%, #BA55D3 100%); /* Rosa claro para Roxo médio */
	transform: scale(1.05);
}

.btn:before,
.btn:after{
	background: url(../images/arrow.png);
	width: 88px;
	height: 78px;
	content: ' ';
	position: absolute;
	top: -5px;
}

.btn:before{
	left: -105px;
}

.btn:after{
	right: -105px;
	transform: rotate(0deg) scaleX(-1);
}

@media screen and (max-width: 768px) {
	.main-header{
		margin-bottom: 0;
	}

	.main-content header h2{
		font-size: 22px;
	}

	.main-content header h3{
		font-size: 17px;
	}

	.main-header h1{
		font-size: 20px;
	}

	.btn:before,
	.btn:after{
		top: auto;
		bottom: -100px;
	}	

	.btn:before{
		transform: rotate(-80deg);
		left: 0;
	}

	.btn:after{
		transform: rotate(80deg) scaleX(-1);
		left: auto;
		right: 0;
	}
}
