@charset "UTF-8";

/* Reset já aplicado via 01-reset.css — apenas estilos específicos desta página abaixo */

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	background: white;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	overflow: hidden;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.header {
	background: linear-gradient(135deg, #2CC8A4 0%, #1A9E82 100%);
	color: white;
	padding: 3rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;

	width: 100vw;
	left: 50%;
	transform: translateX(-50%);

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.1;
}

.header h1 {
	font-size: 2.4rem;
	margin-bottom: 0.3rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: white;
}

.header p {
	font-size: 1.05rem;
	opacity: 0.95;
	margin: 0;
	color: rgba(255,255,255,0.9);
}

.nav-tabs {
	display: flex;
	background: #f8f9fa;
	border-bottom: 3px solid #e9ecef;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-tab {
	flex: 1;
	padding: 1.5rem;
	text-align: center;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 600;
	color: #6c757d;
	transition: all 0.3s ease;
	position: relative;
}

.nav-tab:hover {
	background: #e9ecef;
	color: #495057;
}

.nav-tab.active {
	color: #2c3e50;
	background: white;
}

.nav-tab.active::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.content {
	padding: 0;
}

.tab-content {
	display: none;
	padding: 3rem;
	animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

h2 {
	color: #2c3e50;
	font-size: 1.8rem;
	margin: 2rem 0 1rem 0;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e9ecef;
	position: relative;
}

h2::before {
	content: '▶';
	color: #667eea;
	margin-right: 0.5rem;
	font-size: 0.8em;
}

h3 {
	color: #34495e;
	font-size: 1.3rem;
	margin: 1.5rem 0 0.8rem 0;
}

p {
	margin-bottom: 1rem;
	text-align: justify;
}

ul {
	margin: 1rem 0 1rem 2rem;
}

li {
	margin-bottom: 0.5rem;
}

.highlight {
	background: linear-gradient(120deg, #a8e6cf 0%, #dcedc8 100%);
	padding: 1.5rem;
	border-radius: 10px;
	margin: 1.5rem 0;
	border-left: 4px solid #4caf50;
}

.warning {
	background: linear-gradient(120deg, #ffecb3 0%, #fff3c4 100%);
	padding: 1.5rem;
	border-radius: 10px;
	margin: 1.5rem 0;
	border-left: 4px solid #ff9800;
}

.contact-info {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 2rem;
	border-radius: 15px;
	margin: 2rem 0;
	text-align: center;
	border: 2px solid #dee2e6;
}

.contact-info strong {
	color: #2c3e50;
	font-size: 1.1rem;
}

.footer {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
	text-align: center;
	padding: 2rem;
	margin-top: 3rem;
}

.date-updated {
	background: #667eea;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	display: inline-block;
	font-size: 0.9rem;
	margin-top: 1rem;
}

@media (max-width: 768px) {
	.container {
		margin: 1rem;
		border-radius: 15px;
	}

	.header {
		padding: 2rem 1rem;
	}

	.header h1 {
		font-size: 2rem;
	}

	.nav-tab {
		padding: 1rem 0.5rem;
		font-size: 1rem;
	}

	.tab-content {
		padding: 2rem 1.5rem;
	}

	h2 {
		font-size: 1.5rem;
	}
}

.scroll-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	font-size: 1.2rem;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

.scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}