body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #dce3ea;
    color: #060644;
}
header {
    background-color: #060644;
    color: white;
    text-align: center;
    padding: 15px;
}
footer {
    background-color: #060644;
    color: white;
    text-align: center;
    padding: 15px;
}

nav {
  background-color: #060644;
  color: white;
  text-align: center;
  padding: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto; /* Para permitir rolagem horizontal se precisar */
  white-space: nowrap; /* Evita quebra de linha */
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1rem;
  padding: 10px;
  white-space: nowrap; /* Mantém cada item em uma linha só */
}
main {
    padding: 20px;
    text-align: center;
}
.section {
    margin: 30px 0;
}

.property-listing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}
.store-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 1rem 0;
}
.store-item {
    text-align: center;
    flex: 1 1 150px;
    max-width: 160px;
}

.property-card {
    background-color: #060644;
    color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.property-card a {
    color: #738bb8;
    text-decoration: underline;
    font-weight: none;
}
.property-card a:hover {
    color: #5c6f9b;
    text-decoration: underline;
}
.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
a {
    color: #060644;
    text-decoration: underline;
    font-weight: none;
}
a:hover {
    text-decoration: underline;
    color: #394289;
}

.contato-section {
    background-color: #060644;
    color: white;
    padding: 40px 20px;
}
.contato-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}
.contato-info {
    flex: 1 1 300px;
}
.contato-info h3 {
    color: white;
    margin-top: 20px;
}
.contato-info a {
    color: white;
    text-decoration: underline;
}
.contato-form {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contato-form input,
.contato-form textarea {
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
}
.contato-form textarea {
    height: 150px;
    resize: vertical;
}
.contato-form button {
    background-color: white;
    color: #060644;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    align-self: flex-end;
    font-weight: bold;
}
.contato-form button:hover {
    background-color: #738bb8;
}

footer a {
  color: #ffffff;
}

footer a:hover {
  text-decoration: underline;
  color: #a4997f;
}