
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Verdana, sans-serif;
}

body {
	/*background-color: #f5f5f5;*/
	background-image: url('img/banner.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	color: #333;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100% !important;
  background-color: rgba(0, 0, 0, 0.5); /* Filtro escuro */
  z-index: 0
}
body.no-img {
	background-image:none!important;
	background-color: #f5f5f5 !important;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	color: #333;
}
/* Menu */
.navbar {
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 15px 20px;
	position: sticky;
	top: 0;
	z-index: 100;
	
}
.navbar .container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar .logo img {
	max-width: 150px;
}

.navbar .nav-links a {
	color:#808080;
	text-decoration: none;
	margin-left: 20px;
	font-size: 16px;
	transition: color 0.3s;
}
.navbar .nav-links a:hover,
.navbar .nav-links a.active {
	text-decoration:underline;
}
.navbar .nav-links a.central{ 
	width: 100%;
	padding: 12px;
	background-color: #fb8c00;
	color: #fff;
	font-size: 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;  text-decoration:none;}.navbar .nav-links a.central:hover{  background-color: #808080;}

/* Container */
.container { 
	display:flex;
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px;
	color:#808080;
	justify-content: center;
}

/* Contato */
.contact { 
	max-width: 1100px;
/*	width:100%;    Centraliza as informações de contato */
	margin: 0 auto;
	padding: 20px;
	color:#808080;
}
.contact span {
	font-size:16px;
	padding:5px;
	vertical-align:middle;
}
.contact a {
	color:#808080;
	text-decoration:none;
}
.contact img{
	max-width:30px;
	max-height:30px;
	padding:5px;
	vertical-align:middle;
}
/* Section */
.section {
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin: 20px auto;
	text-align: center;
	width:400px;
	margin-left:2px;
	margin-right:2px;
}
.section:hover {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	transform: scale(1.05);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.section_active {
    transform: scale(1.10);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.section h1 {
	color: #ffa726;
	margin-bottom: 20px;
}
.section span{
	
}
.section p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
}
.section_select{
	width:400px;
	height:400px;
	background-color: #fff;
	padding: 40px;
	border-radius: 5px;
	box-shadow: 0 12px 12px rgba(0, 0, 0, 0.5);
	margin: 20px auto;
	text-align: center;
}
.section_select:hover {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	transform: scale(1.05);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.section img{
	max-width:30px;
	max-height:30px;
	padding:5px;
	vertical-align:middle;
}
/* Select */
.select{
	padding: 10px;
	margin: 10px;
	font-size: 16px;
	border-radius: 5px;
	border: 1px solid #ccc;

}


.btn {
	width: 50%;
	padding: 10px;
	background-color: #fb8c00;
	color: #fff;
	font-size: 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;  text-decoration:none;
}

.btn:hover {
	background-color: #808080;
}



/* Rodapé */
.footer {
	background-color: #333;
	color: #fff;
	padding: 20px;
	text-align: center;  position: fixed;  bottom:0;  width: 100%;
	font-size:12px;
}

.footer a {
	color: #fff;
	text-decoration: none;
	margin: 0 10px;
}

.footer a:hover {
	text-decoration: underline;
}

/* Páginas */
.page {
	display: none;
}

.page.active {
	display: block;
}

/* Responsivo*/
@media (max-width: 768px) {
  .navbar .nav-links a {
	margin-left: 10px;
	font-size: 14px;
  }

  .section {
    padding: 20px;
    margin: 10px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}
