	/* Remove barras laterais indesejadas */
	html, body {
		overflow-x: hidden;
		max-width: 100%;
		padding-bottom: 80px; /* EspaÃ§o para o footer fixo */
	}
	
	* {
		box-sizing: border-box;
	}
	
	.container-fluid {
		padding-left: 0;
		padding-right: 0;
	}
	
	.div-body{
		display: flex;
		justify-content: center;
	}
	.barra-left{
		padding-left: 20px;
		margin-left: 10px;
	}
	.page-header {
		color: #000;
		padding: 15px;
		margin-bottom: 10px;
		background: #ffefae !important;
	}
	.page-header h3 {
		font-weight: 600;
		margin: 0;
	}
	.page-header .fa {
		margin-right: 10px;
	}
	.main-content {
		background: white;
		border-radius: 15px;
		box-shadow: 0 8px 25px rgba(0,0,0,0.1);
		padding: 30px;
		margin-left: 15px;
		margin-right: 15px;
		border: 1px solid #e9ecef;
		margin-bottom: 30px;
	}
	.section-title {
		text-align: center;
		margin-bottom: 40px;
	}
	.section-title h3 {
		color: #2c3e50;
		font-weight: 700;
		font-size: 28px;
		margin-bottom: 10px;
	}
	
	.section-title::after {
		content: '';
		display: block;
		width: 80px;
		height: 4px;
		background: linear-gradient(135deg, #0D5EA8, #1976D2);
		margin: 15px auto;
		border-radius: 2px;
	}
	.edital-card {
		background: #30afb2;
		border: none;
		border-radius: 15px !important;
		padding: 30px 20px;
		color: white;
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
		max-width: 55%;
		margin: 0 auto;
	}
	.edital-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
		transition: left 0.5s;
	}
	.edital-card:hover::before {
		left: 100%;
	}
	.edital-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 30px rgba(13, 94, 168, 0.4);
		color: white;
	}
	.edital-card h2 {
		font-weight: 800;
		margin-bottom: 15px;
		font-size: 2.2rem;
	}
	
	.edital-card h4 {
		font-weight: 500;
		margin-bottom: 20px;
		opacity: 0.9;
		font-size: 1.1rem;
		text-wrap: auto;
	}
	
	.edital-card h3 {
		font-weight: 600;
		font-size: 1.3rem;
		text-transform: uppercase;
		letter-spacing: 1px;
	}
	
	.edital-card .fa {
		font-size: 2.5rem;
		opacity: 0.8;
		position: absolute;
		right: 20px;
		top: 20px;
	}
	
	.edital-card:active {
		background: linear-gradient(135deg, #0D5EA8 0%, #1976D2 100%) !important;
		color: white !important;
		transform: translateY(-3px);
		box-shadow: 0 8px 25px rgba(13, 94, 168, 0.5);
	}
	
	/* Sidebar melhorada */
	.sidebar {
		background: #fff;
		border-radius: 15px;
		padding: 25px;
		box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	}

	/* AnimaÃ§Ãµes */
	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(30px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	.fade-in-up {
		animation: fadeInUp 0.6s ease-out;
	}
	
	/* Responsividade aprimorada */
	@media (max-width: 768px) {
		html, body {
			padding-bottom: 120px; /* Mais espaÃ§o para o footer em mobile */
		}
		
		.page-header {
			padding: 20px 15px;
		}
		
		.page-header h3 {
			font-size: 1.2em; /* Ajusta o tamanho do título para caber numa linha do celular */
		}
		
		.main-content {
			padding: 15px;
		}
		
		.edital-card {
			padding: 15px;
			max-width: 95%;
		}
		
		.edital-card h2 {
			font-size: 1.8rem;
		}
		
		.barra-left {
			padding-left: 0;
			margin-left: 0;
			padding-right: 0;
			margin-right: 0;
		}
		
		.col-xs-12.col-sm-9 {
			width: 100% !important;
			max-width: 100% !important;
			flex: 0 0 100% !important;
		}
		
		.col-xs-12.col-sm-3 {
			width: 95% !important;
			max-width: 95% !important;
			flex: 0 0 95% !important;
		}
	}

	/* Regras adicionais que nÃ£o estavam duplicadas */
	.footer {
		display: none;
	}

	.btn-voltar {
		background: linear-gradient(135deg, #0D5EA8, #1976D2);
		color: white;
		padding: 12px 20px;
		border-radius: 10px;
		font-weight: 700;
		font-size: 14px;
		text-align: center;
		margin-bottom: 20px;
		box-shadow: 0 4px 15px rgba(13, 94, 168, 0.3);
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
		margin-top: 10px;
	}
	
	.btn-voltar:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(13, 94, 168, 0.4);
	}
	
	.btn-voltar::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
		transition: left 0.5s;
	}
	
	.btn-voltar:hover::before {
		left: 100%;
	}
	
	.btn-voltar:active {
		background: #2ba1c5 !important;
		color: white !important;
		transform: translateY(-3px);
	}

	.action-card {
		background: #2ba1c5;
		border: none;
		border-radius: 15px !important;
		padding: 25px 20px;
		color: white;
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
		margin-bottom: 15px;
		min-height: 85px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		font-weight: 600;
		text-decoration: none;
	}
	.action-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		transition: left 0.5s;
	}
	.action-card:hover::before {
		left: 100%;
	}
	.action-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 30px rgba(13, 94, 168, 0.4);
		color: white;
		text-decoration: none;
	}
	.action-card:active {
		background: linear-gradient(135deg, #0D5EA8 0%, #1976D2 100%) !important;
		color: white !important;
		transform: translateY(-3px);
		box-shadow: 0 8px 25px rgba(13, 94, 168, 0.5);
	}
	.action-card.btn-success {
		background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
		box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
	}
	.action-card.btn-success:hover {
		box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
	}
	.action-card.btn-warning {
		background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
		box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
		color: #212529;
	}
	.action-card.btn-warning:hover {
		box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
		color: #212529;
	}
	.observacoes-section {
		background: #f8f9fa;
		border-radius: 15px;
		padding: 30px;
		margin-top: 30px;
		box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	}
	.observacoes-section h3 {
		color: #2c3e50;
		font-weight: 700;
		margin-bottom: 25px;
		text-align: center;
	}
	.lista-obs{
		font-size: 16px;
		line-height: 1.8em;
		margin-bottom: 0;
	}
	.lista-obs li {
		margin-bottom: 12px;
		padding-left: 10px;
	}
	.lista-obs li:last-child {
		margin-bottom: 0;
	}

	.obs-item {
		text-align: justify;
		margin-bottom: 14px;
		padding-left: 10px;
		font-size: 1.2em;
		line-height: 1.8em;
	}
	.obs-item:last-child {
		margin-bottom: 0;
	}
	.btn-facebook-azul {
		background: #4267B2; 
		color: #fff; 
		border-radius: 5px; 
		margin-left: 10px;
	}

	/* Modal melhorado */
	.modal-content {
		border-radius: 15px;
		border: none;
		box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	}
	
	.modal-header {
		background: linear-gradient(135deg, #0D5EA8 0%, #1976D2 100%);
		color: white;
		border-radius: 15px 15px 0 0;
		padding: 25px 30px;
		border-bottom: none;
	}
	
	.modal-header .modal-title {
		color: white;
		font-weight: 700;
		font-size: 24px;
		margin: 0;
		display: flex;
		align-items: center;
	}
	
	.modal-header .close {
		color: white;
		opacity: 0.8;
		font-size: 1.8rem;
		text-shadow: none;
		font-weight: 300;
	}
	
	.modal-header .close:hover {
		color: white;
		opacity: 1;
	}
	
	.modal-body {
		padding: 35px 30px;
		background: #f8f9fa;
		font-size: 16px;
		line-height: 1.6;
	}
	
	.modal-body p {
		margin-bottom: 20px;
		color: #495057;
	}
	
	.modal-body p:last-child {
		margin-bottom: 0;
	}
	
	.modal-body .highlight-text {
		color: #dc3545;
		font-weight: 600;
	}
	
	.modal-footer {
		background: #f8f9fa;
		border-top: none;
		border-radius: 0 0 15px 15px;
		padding: 25px 30px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.btn-modal-primary {
		background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
		border: none;
		border-radius: 8px;
		padding: 12px 25px;
		color: white;
		font-weight: 600;
		font-size: 16px;
		transition: all 0.2s ease;
		box-shadow: 0 3px 12px rgba(233, 30, 99, 0.3);
		text-decoration: none;
	}
	
	.btn-modal-primary:hover {
		transform: translateY(-1px);
		box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
		color: white;
		text-decoration: none;
		background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%);
	}
	
	.btn-modal-primary:active {
		background: linear-gradient(135deg, #ad1457 0%, #880e4f 100%) !important;
		color: white !important;
		transform: translateY(0px);
		box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
	}
	
	.btn-modal-secondary {
		background: linear-gradient(135deg, #0D5EA8 0%, #1976D2 100%);
		border: none;
		border-radius: 8px;
		padding: 12px 25px;
		color: white;
		font-weight: 600;
		font-size: 16px;
		transition: all 0.2s ease;
		box-shadow: 0 3px 12px rgba(13, 94, 168, 0.3);
		text-decoration: none;
	}
	
	.btn-modal-secondary:hover {
		transform: translateY(-1px);
		box-shadow: 0 4px 15px rgba(13, 94, 168, 0.4);
		color: white;
		text-decoration: none;
		background: linear-gradient(135deg, #0c4d8b 0%, #1565c0 100%);
	}
	
	.btn-modal-secondary:active {
		background: linear-gradient(135deg, #0a3d6b 0%, #0c4d8b 100%) !important;
		color: white !important;
		transform: translateY(0px);
		box-shadow: 0 2px 8px rgba(13, 94, 168, 0.4);
	}

	/* Responsividade adicional para action-card e modal */
	@media (max-width: 768px) {
		.action-card {
			padding: 20px 15px;
			font-size: 14px;
			min-height: 75px;
		}
		
		.observacoes-section {
			padding: 20px;
		}
		
		.lista-obs {
			font-size: 14px;
		}
		
		.modal-header {
			padding: 20px 25px;
		}
		
		.modal-header .modal-title {
			font-size: 20px;
		}
		
		.modal-body {
			padding: 25px 20px;
			font-size: 15px;
		}
		
		.modal-footer {
			padding: 20px 25px;
			flex-direction: column;
			gap: 15px;
		}
		
		.btn-modal-primary,
		.btn-modal-secondary {
			width: 100%;
			text-align: center;
		}
	}

	.section-title {
		text-align: center;
		margin-bottom: 40px;
	}
	.section-title h3 {
		color: #2c3e50;
		font-weight: 700;
		font-size: 28px;
		margin-bottom: 10px;
	}
	
	.section-title::after {
		content: '';
		display: block;
		width: 80px;
		height: 4px;
		background: linear-gradient(135deg, #0D5EA8, #1976D2);
		margin: 15px auto;
		border-radius: 2px;
	}
	
	.orientation-section {
		margin-bottom: 40px;
	}
	
	.orientation-title {
		color: #2c3e50;
		font-weight: 700;
		font-size: 22px;
		margin-bottom: 25px;
		display: flex;
		align-items: center;
	}
	
	.tutorial-card {
		background: #f8f9fa;
		border-radius: 12px;
		padding: 25px;
		margin-bottom: 20px;
		box-shadow: 0 4px 15px rgba(0,0,0,0.08);
		border: 1px solid #e9ecef;
	}
	
	.tutorial-description {
		color: #2c3e50;
		font-size: 16px;
		font-weight: 500;
		margin-bottom: 20px;
	}
	
	.btn-tutorial {
		background: #e91e63;
		border: none;
		border-radius: 8px;
		padding: 12px 20px;
		color: white;
		font-weight: 600;
		font-size: 14px;
		transition: all 0.2s ease;
		box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
		text-decoration: none;
		margin: 5px;
		border: 1px solid rgba(233, 30, 99, 0.2);
	}
	
	.btn-tutorial:hover {
		transform: translateY(-1px);
		box-shadow: 0 3px 12px rgba(233, 30, 99, 0.25);
		color: white;
		text-decoration: none;
		background: #c2185b;
	}
	
	.btn-tutorial:active {
		background: #ad1457 !important;
		color: white !important;
		transform: translateY(0px);
		box-shadow: 0 1px 4px rgba(233, 30, 99, 0.3);
	}
	
	.faq-item {
		background: #f8f9fa;
		border-radius: 12px;
		padding: 20px;
		margin-bottom: 15px;
		box-shadow: 0 4px 15px rgba(0,0,0,0.08);
		border: 1px solid #e9ecef;
		transition: all 0.3s ease;
	}
	
	.faq-item:hover {
		box-shadow: 0 6px 20px rgba(0,0,0,0.12);
	}
	
	.faq-question {
		color: #2c3e50;
		font-size: 16px;
		font-weight: 600;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: space-between;
		text-decoration: none;
		margin: 0;
	}
	
	.faq-question:hover {
		color: #0D5EA8;
		text-decoration: none;
	}
	
	.faq-question:focus,
	.faq-question:active,
	.faq-question:visited {
		color: #2c3e50 !important;
		text-decoration: none !important;
		outline: none;
	}
	
	.faq-answer {
		margin-top: 20px;
		padding: 20px;
		background: white;
		border-radius: 8px;
		border-left: 4px solid #0D5EA8;
		box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	}
	
	.faq-answer p {
		color: #495057;
		line-height: 1.6;
		margin-bottom: 15px;
	}
	
	.faq-answer p:last-child {
		margin-bottom: 0;
	}
	
	
	/* Animações */
	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(30px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	.fade-in-up {
		animation: fadeInUp 0.6s ease-out;
	}
	
	/* Responsividade aprimorada */
	@media (max-width: 768px) {
		.page-header {
			padding: 20px 15px;
		}
		
		.main-content {
			padding: 25px 20px;
		}
		
		.tutorial-card, .faq-item {
			padding: 20px 15px;
		}
		
		.orientation-title {
			font-size: 20px;
		}
		
		.faq-question {
			font-size: 15px;
		}
		
		.btn-tutorial {
			width: 100%;
			margin-bottom: 10px;
		}

		.col-xs-12.col-sm-9 {
			width: 100% !important;
			max-width: 100% !important;
			flex: 0 0 100% !important;
		}
		
		.col-xs-12.col-sm-3 {
			width: 95% !important;
			max-width: 95% !important;
			flex: 0 0 95% !important;
		}
	}
