:root {
	--dourado: #B8972C;
	--dourado-claro: #D4AF37;
	--escuro: #2c2c2c;
	--creme: #fdfaf5;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	color: var(--escuro);
}

header {
	background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
				url('imagens/modelo.png');
	background-size: cover;
	background-position: center;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 40px 5%;
	box-sizing: border-box;
}

.hero-content {
	flex: 1;
	min-width: 300px;
	max-width: 550px;
	color: white;
	text-align: left;
	padding: 20px;
	margin-top: -120px;
}

.logo {
	max-width: 180px;
	margin-bottom: 25px;
	border-radius: 50%;
	border: 3px solid var(--dourado);
	box-shadow: 0 0 20px rgba(184, 151, 44, 0.3);
}

h1 { font-size: 3.2rem; margin: 0; letter-spacing: 1px; line-height: 1.1; }
p.subtitle { font-size: 1.25rem; margin-top: 20px; line-height: 1.6; font-weight: 300; }

.container-form {
	flex: 0 1 420px;
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.4);
	margin: 20px;
}

.container-form h2 {
	text-align: center;
	color: var(--dourado);
	margin-top: 0;
	margin-bottom: 30px;
	font-size: 1.6rem;
	text-transform: uppercase;
}

.form-group { margin-bottom: 18px; }
label { display: block; margin-bottom: 6px; font-weight: bold; font-size: 0.85rem; color: #444; }

input, select, textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-sizing: border-box;
	font-size: 1rem;
	outline: none;
}

input:focus { border-color: var(--dourado); box-shadow: 0 0 5px rgba(184, 151, 44, 0.2); }

button {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
	margin-top: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

button:hover { 
	transform: translateY(-3px); 
	box-shadow: 0 8px 15px rgba(184, 151, 44, 0.4); 
}

.features {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 80px 20px;
	max-width: 1200px;
	margin: 0 auto;
	background: #FFFFFF;
}

.feature-item { text-align: center; flex: 1; min-width: 250px; padding: 25px; }
.feature-item h3 { color: var(--dourado); margin-bottom: 15px; font-size: 1.4rem; }
.feature-item p { color: #666; line-height: 1.6; }

footer {
	text-align: center;
	padding: 40px;
	background: #D4AF37;
	color: #000000;
	font-size: 0.85rem;
	border-top: 2px solid #D4AF37;
}

@media (max-width: 850px) {
	header { text-align: center; justify-content: center; min-height: auto; padding: 60px 20px; }
	.hero-content { text-align: center; margin-bottom: 40px; }
	h1 { font-size: 2.5rem; }
}

/* Modais */
/* Grid de botões */
.faq-grid { display: grid; gap: 10px; padding: 20px; }
.modal-trigger { 
	padding: 15px; background: #D4AF37; border: 1px solid #B8972C; 
	cursor: pointer; text-align: left; font-weight: bold; 
}

/* Overlay do Modal */
.modal-overlay {
	display: none; position: fixed; z-index: 9999;
	left: 0; top: 0; width: 100%; height: 100%;
	background-color: rgba(0,0,0,0.6);
}

/* Caixa do Modal */
.modal-content {
	background-color: white; margin: 15% auto;
	padding: 30px; border-radius: 8px;
	width: 90%; max-width: 500px; position: relative;
}

.close-modal {
	position: absolute; right: 20px; top: 10px;
	font-size: 28px; cursor: pointer;
}

#modalTitle {
    color: #D4AF37; 
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: sans-serif;
}

/* Embed Vídeo */
.video-container {
	max-width: 550px; /* Limita a largura para não esticar demais no PC */
	margin: 0 auto;   /* Centraliza o vídeo na página */
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

video {
	display: block;
	background-color: #000;
	height: 300px;
}