body {
	font-family: 'Montserrat', sans-serif;
	background: #0D0E0E;
	padding: 0;
	margin: 0;
	min-height: 100vh;
	width: 100%;
}


/* Configs do cabecalho, bloco geral*/
header{
	background: #800000;
	color: white;
	padding: 10px;
	text-align: center;
	align-items: center;
	justify-content: center;
	display: flex;
	height: 85px;
	width: 100%;
	box-sizing: border-box;
}

/* Aqui temos as configs da logo no cabecalho, bloco especifico*/
header .logo a{
	background-image: url("../images/ralampinhaiconbranco.png");
	background-size: 200px;
	background-repeat: no-repeat;
	position: relative;
	display: inline-block;
	height: 65px;
	text-indent: -99999px;
	top: -5px;
	width: 200px;
}

/* Aqui, temos um bloco entre o header geral e ul; ul, um bloco que engloba o li*/
nav{
	margin: 0px;
}

.menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.menu li{
    list-style: none;
}


.menu li:not(.logo) {
    margin-left: 40px;
}


/* li possui cada texto de pagina no cabecalho*/
li{
	
	display: inline-block;
	width: auto;
	font-size: 24px;
}

/* "a", um bloco mais especifico ainda para os textos de pag*/
a{
	text-decoration: none;
	color: white;

}

/* caixa Dropdown */
.dropdown {
	position: relative;
	z-index: 9999;

}

/* seta */
.arrow {
	font-size: 14px;
	margin-left: 5px;
}

/* menu */
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: -35px;
	background-color: #800000;
	padding: 0;
	min-width: auto;
	border-radius: 5px;
	opacity: 0;                 
	visibility: hidden;
	transition: opacity 0.15s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}


/* Itens dentro do dropdown */
.dropdown-menu li {
	display: block;
	margin: 0;
	font-size: 18px;
}

/* Links dentro do dropdown */
.dropdown-menu a {
	display: flex;
	padding: 10px;
	color: white;
	white-space: nowrap;

}

/* Hover efeito */
.dropdown-menu a:hover {
	background-color: #a00000;
}

/* Mostra dropdown no hover */
.dropdown:hover .dropdown-menu {
	display: block;
}


/* Bloco geral de section */
section {
	background: #0D0E0E;
	color: white;
	position: center;
	align-items: center;
	padding: 40px;
	overflow-wrap: break-word;
	word-wrap: break-word;
	white-space: normal;
	width: 100%;
	box-sizing: border-box;
}

section .image1 a{
	background-image: url("images/ach1.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;

	display: block;

	width: 100%;
	max-width: 1500px;
	height: 750px;

	margin: auto;

	padding: 0;
}

section .image2 a{
	background-image: url("images/ach3.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;

	display: block;

	width: 100%;
	max-width: 1400px;
	height: 680px;

	margin: auto;
	margin-top: -180px;
	
	padding: 0;
}

section .image3 a{
	background-image: url("images/ach2.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;

	display: block;

	width: 100%;
	max-width: 1300px;
	height: 1000px;

	margin: auto;
	margin-top: -350px;
	margin-bottom: -70px;

	padding: 0;
}

@media (max-width: 900px){

/* faz a página inteira ficar maior que a tela */
body{
	min-width: 190vw;
}

/* header acompanha automaticamente */
header{
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* section */
section{
	padding: 10px;
}

/* imagens */
section .image1 a{
	height: 100vw;
	background-size: 600px;
	margin-top: 20px;
}

section .image2 a{
	height: 55vw;
	background-size: 550px;
	margin-top: 0;
}

section .image3 a{
	height: 140vw;
	background-size: 700px;
	margin-top: -35px;
	margin-bottom: 0;
}

/* menu */
.menu{
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu li{
	font-size: 12px;
	margin: 0px;
}

header .logo a{
	background-size: 80px;
	width: 80px;
	height: 30px;
}

.arrow{
	font-size: 10px;
	margin-left: 3px;
}

}
