:root {
	--blue: #1A4889;
	--black: #404040;
	--grey: #373435;
}

/* General */

body {
	color: var(--black);
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	font-weight: 300;
}
.headline-xl {
	font-family: 'Merriweather', sans-serif;
	font-size: 40px;
}
.headline-lg {
	font-family: 'Merriweather', sans-serif;
	font-size: 34px;
}
.headline-md {
	font-family: 'Merriweather', sans-serif;
	font-size: 24px;
}
.headline-sm {
	font-family: 'Merriweather', sans-serif;
	font-size: 20px;
}
.gap-sm { gap: 8px }
.gap-md { gap: 16px }
.gap-lg { gap: 24px }
.gap-xl { gap: 32px }
h2 {
	margin-bottom: 24px;
	color: var(--blue);
}
h3 {
	margin-bottom: 16px;
	color: var(--blue);
}
h4 {
	margin-bottom: 16px;
	font-weight: 600;
}

.wrapper {
	animation: fadeIn  1s ease-in;
}

/* Header */

header {
	border-top: solid 10px var(--blue);
	border-bottom: solid 4px var(--blue);
}
.top-img {
	height: 280px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.navbar {
	padding-left: 40px;
	padding-right: 40px;
	background-color: white;
}
.navbar-nav .nav-link.active {
	font-weight: bold;
	color: var(--grey);;
}
.navbar-collapse {
	flex-grow: 0;
}
.nav-link {
	color: var(--grey);
	font-family: 'Merriweather', sans-serif;
	font-size: 18px;
	font-weight: 300;

	&:hover {
		color: var(--blue) !important;
		text-decoration: underline;
	}
}

/* Data Container */

.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.main-content {
	flex: 1;
	padding: 40px;
}
.image-container {
	width: 50%
}
.image-container.second {
	margin-right: 24px;
	float: left;
}

/* Footer */

.main-footer {
	font-size: 14px;
	font-weight: 400;
	border-bottom: solid 10px var(--blue);

	.container {
		border-top: solid 2px var(--blue);
		padding: 16px 0;
	}

	p { margin-bottom: 6px }

	& a {
			color: var(--black);
			text-decoration: none;
	} 
}
.divider {
	height: 12px;
	width: 2px;
	background-color: rgba(0, 0, 0, .25);
}

/* Internas */

.accordion-button {
    background-color: transparent !important;
    font: 24px 'Merriweather', serif;
		color: var(--blue) !important;
}

.accordion-item {
    border: none;
}

.form-label {
    font-size: 16px;
}

.required {
    color: red;
}

.top-img.contato {
	background-color: var(--blue);
	background-blend-mode: screen;
}

#excelencia {
    margin-top: 40px;
}

.selos {
    margin-top: 40px;
    width: 180px;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {

	.nav-link {
        text-align: center;
	}

	.navbar {
		padding: 8px 16px;
	}

	.top-img {
		width: 100%;
		height: 200px;
	}

	.main-content {
		padding: 24px 16px;
	}

	.image-container {
		width: 100%;
	}

	h3.headline-md {
		margin-top: 20px;
	}
	
	.image-container.second {
        margin-bottom: 20px;
	}

	.copy, .footer-logo {
		width: 100%;
	}

	.main-footer {
        padding: 30px;
	}

	.footer-logo {
		text-align: center;
	}

	.copy {
		text-align: center;
		margin-bottom: 32px;
	}

	.change-mobile {
		justify-content: center;
        gap: 4px;
        margin-top: 24px;
	}
	
	#excelencia {
        margin-top: 0;
    }
	
	.selos {
        flex-direction: row;
        margin-top: 0;
        width: 100%;
	}

}

/* Animation */
@keyframes fadeIn {
  0% {	
    opacity: 0;
  }
	100% {
    opacity: 1;
  }
}