* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	
	background-image: linear-gradient(white, lightgray);
	
}

main{
	text-align : center;
	/*height: 100%;*/
	width: 1060px;
	margin: 0 auto;
	margin-top: 20px;
	
}

#topo{
	display:flex;
	width: 1260px;
    margin: 0 auto;
    height: 600px;
    gap: 30px;
}

#banner {
	background-image: url("imagem/vilarejo.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	flex: 1;
	/*display: flex;*/
	align-items: top;
	justify-content: center;
	border-radius: 4px;
	
    
}

#banner h1 {
	padding-top: 5px;
	color : white;
	text-shadow: 1px 1px 1px black;
	
}

nav{
	width: 150px;
	/*display: flex;*/
	padding: 10px;
	margin: 0;
	align-items: center;
	height: 170px;
	
	
}

nav ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	
}
nav ul li {
	padding: 7px 0;
	text-align: center;
	border: 1px solid gray;
	margin: 1px;
	border-radius: 6px;
	background-color: rgba(237, 145, 10, 45%);
	background: linear-gradient(319deg, #f88379 0%, #fd9600 37%, #ffb347 100%);   
	cursor: pointer;
}
nav ul li a {
	text-decoration: none;
	color: inherit;
	display: block;
	width: 100%;
    height: 100%;
}


nav ul li:hover{

	background: #722F37;
	color: white;	
}



#minhaViagem, #nosEncontre, #conselhos, #depoimentos {
	
	padding-top: 40px;
	padding-bottom: 30px;
}
#minhaViagem h2, #nosEncontre h2, #conselhos h2, #depoimentos h2 {
	padding-bottom: 10px;
	
}

#minhaViagem p, #nosEncontre p, #conselhos p, #depoimentos p{
    text-align: justify;
    text-align-last: center;
	
	 
	
}
footer{
	padding: 20px;
	
}

#btnTopo {
	
	width: 60px; 
	height: 60px;	
	color: white;
	right: 30px; 
	bottom: 30px; 
	position: fixed; /* Essencial para o botão ficar fixo na tela** */
	background-color: red;
	z-index: 999; 
	border: none; 
	border-radius: 50%;
	cursor: pointer;
	display: flex; 
	flex-direction: column; /* Organiza os itens em coluna (seta em cima, texto embaixo) */
	justify-content: center; 
	align-items: center; 
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 
	text-decoration: none;
	
}

 span {
	position: relative;
    top: -3px;
}

#btnTopo:hover {
	background-color: #722F37;
}

#contato{
	display: flex;
	border: 1px solid black;
	width: 100%;
	height: 70px;
	background-color: #722F37;
	color: white;
	font-weight: bold;
	align-items: center;
	justify-content: center;
}
#contato p{
	background-color: #722F37;
	
}

#contato a{
	background-color: #722F37;
	color: white;
	text-decoration: none;
	font-weight: normal;
	
}

.boxParagrafos {
	width: 1075px;
	background-color: rgba(255, 255, 255, 0.90);
	margin-top: 5px;
    padding: 15px 15px;
    border-radius: 4px;
}
