/*	CSS */


/*PERGUNTAS*/

.accordionService {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 0.5rem 1rem;
	margin: 0.25rem 0;
	width: 100%;
	border: none;
	text-align: left;
	font-weight: 600;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
}

.activeService,
.accordionService:hover {
	background-color: #ccc;
}

.accordionService:after {
	content: '\002B';
	color: #777;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

.activeService:after {
	content: "\2212";
}


.accordion>.card {
	overflow: hidden
}

.accordion>.card:not(:first-of-type) .card-header:first-child {
	border-radius: 0
}

.accordion>.card:not(:first-of-type):not(:last-of-type) {
	border-bottom: 0;
	border-radius: 0
}

.accordion>.card:first-of-type {
	border-bottom: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}

.accordion>.card:last-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.accordion>.card .card-header {
	margin-bottom: -1px
}

.panel {
	padding: 0 2rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.panel::after {
	height: 5000px;
}

.panel h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 1rem 0 0.5rem;
	color: #00214A;
}

.panel p {
	width: 100%;
}

.paneltxt ol li {
	list-style-type: number;
	margin-left: 2rem;
}

.paneltxt ul li {
	list-style-type: square;
	margin-left: 2rem;
}

.panel ul li a {
	color: #666;
	font-size: 0.9em;
	margin: 0.15rem 0;
}

.panel ul li a:hover {
	color: #000;
}

.btnPanel a {
	text-align: center;
	max-width: 200px;
	padding: 0.5rem 1rem;
	background-color: #00214A;
	color: #FFF;
	border-radius: 0.25rem;
}

.btnPanel a:hover {
	background-color: #2d4fa5;
}

/* Oculta-exibe Conteúdo */
#toggle-1 {
	display: none;
}

label {
	-webkit-appearance: push-button;
	-moz-appearance: button;
	display: inline-block;
	cursor: pointer;
	padding: 5px;
}

/* CSS padrão da div */
#mostra {
	display: none;
}

/* CSS quando o checkbox está marcado */
#toggle-1:checked~#mostra {
	display: block;
}

/*TRANSITION*/

.transition {
	transition: height 500ms
}

/*GERAL*/

.bdPinkTop {
	border-top: 2px solid #EA4394;
}

.bdPinkBottom {
	border-bottom: 2px solid #EA4394;
}

.bdPinkRight {
	border-right: 2px solid #EA4394;
}

.bdPinkLeft {
	border-left: 2px solid #EA4394;
}

.bdBlueTop {
	border-top: 2px solid #2d63a9;
}

.bdBlueBottom {
	border-bottom: 2px solid #2d63a9;
}

.bdBlueRight {
	border-right: 2px solid #2d63a9;
}

.bdBlueLeft {
	border-left: 2px solid #2d63a9;
}

p.imgFAQ {
	text-align: center;
	margin: 1rem auto 2rem;
}

p.imgFAQ img {
	width: 100%;
	height: auto;
	max-width: 500px;
}


  