* {
	box-sizing: border-box;
}

html {
            scroll-behavior: smooth; /* Ativa a rolagem suave */
        }

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	min-height: 100%;
	overflow-y: auto;
}

.logo {
	width: auto;
	height: 40px;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #00549D;
	padding: 20px;
	position: fixed;
	width: 80%;
	top: 40px;
	left: 10%;
	border-radius: 20px;
	z-index: 6;
	height: 70px;
}

.header .nav {
	display: flex;
	gap: 10px;
	align-items: center;
	width: 100%;
	justify-content: right;
}

.header .nav a {
	color: #FFF;
	text-decoration: none;
	font-size: 16px;
	padding-top: 10px;
	padding-bottom: 10px;
/* 	border-top: 1px solid #e1e1e1; */ 
 	width: 90px;
	display: flex;
	justify-content: center;
}


.nav a.active {
	border-bottom: 5px solid #efce32; !important;
}

.hero {
	background-image: url('../images/home.jpg');
	background-repeat: no-repeat;
	background-position: center bottom; 
	background-size: cover;
	height: 100vh;
	position: relative;
	/*background-attachment: fixed;  Mantém a imagem de fundo fixa */
}

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: rgba(255, 255, 255, 0.7); */
	/* White overlay with transparency */
}

.hero .filter-container {
	margin: 0 auto; /* Opcional: centraliza horizontalmente */
	width: calc(100% - 40px); /* Adjust width to fit container */
	max-width: 830px; /* Ensure it does not exceed a max width */
	z-index: 3;
    padding-top: 15px; /* Adiciona padding superior */
    padding-bottom: 30px; /* Adiciona padding inferior */
    text-align: center
}


.hero .filter-box {
	background-color: #fff;
	padding: 15px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero .filter-container h2 {
	margin: 0;
	font-size: 35px;
	font-weight: bold;
	color: #FFF;
	text-align: left;
	text-shadow: 1px 1px 8px black;
}

.underline {
	width: 130px;
	height: 7px;
	background-color: #efce32;
	margin: 5px 0;
}

.container-index {
	z-index: 0;
	width: 100%;
	overflow-y: auto;
}

.section {
	padding: 50px 0;
	text-align: center;
	z-index: 1;
	position: relative;
	background-color: rgba(245, 245, 245, 0.9);
	height: 100vh;
	scroll-snap-align: start; /* Para um efeito de snap */
	scroll-behavior: smooth;
}

#busca {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
}


.section:nth-child(odd) {
	background-color: rgba(255, 255, 255, 0.9);
}

.section .quadros {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.quadro {
	width: 300px;
	box-sizing: border-box;
	margin: 0;
	padding: 10px;
	margin-bottom: 20px;
}

.quadro-clientes {
	width: 290px;	
}

.imobiliarias-img1 {
	width: 180px;			
}

.sobre-texto {
	width: 570px;
}


.sobre-img {
	margin-top: -130px;
	width: 350px;
}
.imobiliarias-img {
	margin-top: -30px;
	width: 400px;
}

.quadro .tituloquadro {
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	justify-content: left;
	display: flex;
	color: #00549D;
}

.quadro h2 {
	font-size: 35px;
	font-weight: bold;
	margin: 0;
	justify-content: left;
	display: flex;
	width: 100%;
}

.quadro p {
	color: #00549D;
	font-size: 16px;
	text-align: left;
	margin: 0;
}

.sobre-texto p {
	font-size: 18px;
}

.imobiliarias-texto {
	font-size: 16px;
	width: 550px;
	color: #00549D;

}
.imobiliarias-texto p {
}
.imobiliarias-texto h2 {
	font-size: 16px;
}

.amarelo {
	color: #efce32;
}

.aspas {
	color: #00549D;
	font-size: 80px;
	font-style: italic;
	margin-top: -20px;
	margin-right: -20px;
}


.quadro img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
}

.title-container {
	margin-top: 60px;
	width: 70%;
	display: flex;
	color: #00549D;
	position: relative;
	left: 15%;
	
}
.title-clientes {
	margin-top: -70px;
}

.title-container h1 {
	font-size: 40px;
	font-weight: bold;
}

.underline-section {
	position: absolute;
	left: 0%;
	top: 65px;
}

.button-container-imobiliarias {
	display: flex;
}
	
.button-container-imobiliarias button {
	font-size: 16px;
	width: 250px;
	padding: 10px 0;
	border-radius: 15px;
	border: 1px solid #00549D;
	color: #00549D;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.button-container-imobiliarias button:hover {
	border: 1px solid #808080;
}

.quadro.imgfull img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.container-index {
	margin: 0 auto;
	height: auto; /* Inicia com altura automática */
}

.header-index {
	text-align: center;
	margin-bottom: 40px;
}

.user-button-img {
	width: auto; /* Ajuste o tamanho da imagem conforme necessário */
	height: 15px;
	margin-right: 5px; /* Adiciona um espaçamento à direita da imagem */
}

.user-button {
	padding: 10px;
	border-radius: 15px;
	cursor: pointer;
	align-items: center; /* Alinha os itens verticalmente */
	display: flex;
	font-size: 14px;
	min-width: 100px;
	justify-content: center;
	background-color: #fff;
	border: 0px;
	border-bottom: 1px solid #e1e1e1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #808080;
}

.user-button:hover {
	border-top: 1px solid #0056b3;
}

.profile {
	display: flex;
	width: 200px;
	justify-content: center;
}

.hero .carregando {
	width: 50px;
	margin-top: -60px;
	display: none; /* Inicia oculto */
	position: absolute;
	margin-left: 750px
}

.filters-index {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: 930px;
}

.filter-select {
	padding: 10px;
	margin: 5px;
	width: 105px;
	font-size: 15px;
	border-radius: 15px;
	border: 1px solid #808080;
	cursor: pointer;
	background-color: transparent;
	color: #808080;
	transition: background-color 0.3s ease, color 0.3s ease;
	font-size: 15px;
}

.filter-select.active {
	background-color: #808080;
	color: #fff;
}

.filter-select:hover {
	border: 1px solid #0056b3;
}

.search-form {
	display: flex;
	justify-content: center;
	align-items: center;
}

.search-input {
	padding: 10px;
	margin: 5px;
	border-radius: 15px;
	border: 1px solid #C0C0C0;
	font-size: 15px;
	width: 400px;
	transition: border-color 0.3s ease;
}

.search-input:focus {
	outline: none;
	border-color: #0056b3;
}

.search-button {
	font-size: 15px;
	width: 120px;
	margin: 5px;
	padding: 10px 10px;
	border-radius: 15px;
	border: 1px solid #808080;
	color: #808080;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.search-button:hover {
	border: 1px solid #0056b3;
}

.menu-toggle {
	width: 50px;
	height: 50px;
	display: none;
	font-size: 40px;
	margin-top: -5px;
}

.submit-btn {
	margin-top: 25px;
	width: 110px;
	padding: 10px 0;
	border-radius: 15px;
	border: 1px solid #808080;
	color: #808080;
	background-color: #e1e1e1;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.submit-btn:hover {
	border: 1px solid #0056b3;
}

.map-filter-container {
	width: 400px;
}

.container-imovel-list .map-filter-container {
	display: none;
	flex-direction: column;
	float: right;
	height: calc(100vh - 50px);
	overflow-y: auto;
	padding: 15px;
	position: absolute;
	background-color: #fff;
	right: 0;
	z-index: 9;
}

.container-imovel-list .map-filter-container.active {
	display: flex;
}

.container-contato {
	max-width: 600px;
	margin: 20px;
	margin-top: -20px;
	background: #fff;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
}

.form-group {
	margin-bottom: 15px;
}

.form-section h3 {
	color: #00549D;
	font-size: 12px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: #00549D;
	text-align: left;
}
.form-group input, .form-group textarea, .form-group select {
	width: 100%;
	padding: 8px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
}
#contato {
	background-image: url('../images/contato.jpg');
	background-repeat: no-repeat;
	background-position: center bottom; 
	background-size: cover;
}

.button-container {
	display: flex;
	justify-content: left;
}

.button-container button {
	font-size: 16px;
	width: 150px;
	background-color: #e1e1e1;
	padding: 10px 0;
	border-radius: 15px;
	border: 1px solid #00549D;
	color: #00549D;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.button-container button:hover {
	border: 1px solid #808080;
}

.modal-contato-site {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}


.modal-content-contato-site {
	background-color: #fff;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	height: 200px;
	max-width: 600px;
	border-radius: 10px;
	text-align: center;
}

.confirm-contato-site, .cancel-contato-site {
	border: 1px solid #808080;
	color: #808080;
	float: center;
	margin-left: 10px;
	cursor: pointer;
	padding: 10px;
	border-radius: 15px;
	font-size: 16px;
	font-weight: normal;
}

.close-contato-site {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	margin-left: 10px;
	cursor: pointer;
}

.close-contato-site:hover, .close-contato-site:focus, .confirm-contato-site:hover,
	.confirm-contato-site:focus, .cancel-contato-site:hover, .cancel-contato-site:focus {
	color: black;
	text-decoration: none;
}


.success-contato-site {
	color: #28a745;
}

.error-contato-site {
	color: #dc3545;
}

.rodape {
	position:absolute;
	bottom: 0;	
	width: 100%;
	display: flex;
	justify-content: center;
		
}