/* Reset básico e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* Header e Navbar */
  header {
    background: #333;
    color: #fff;
    padding: 10px 0;
  }
  
  .navbar {
    padding: 0 15px;
  }
  
  .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .navbar-nav li a {
    color: #fff !important;
    padding: 8px 15px;
    transition: background 0.3s;
  }
  
  .navbar-nav li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
  }
  
  /* Seção Hero */
  .hero {
    background: url('imagens/hero.jpg') center center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 15px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  /* Seção de Imóveis */
  #imoveis {
    padding: 50px 15px;
  }
  
  #imoveis h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  /* Cards dos Imóveis */
  .property-card {
    margin-bottom: 30px;
  }
  
  .property-card .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  /* Seção Sobre */
  #sobre {
    background: #f8f8f8;
    padding: 50px 15px;
    text-align: center;
  }
  
  #sobre h2 {
    margin-bottom: 20px;
  }
  
  #sobre p {
    max-width: 800px;
    margin: auto;
  }
  
  /* Seção Contato */
  #contato {
    padding: 50px 15px;
  }
  
  #contato h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  #contato form .form-group {
    margin-bottom: 20px;
  }
  .suely-img {
    width: 33.33%;
    height: auto;
  }
  
  /* Footer */
  .footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 15px;
  }
  
  /* Media Queries para Responsividade */
  @media (max-width: 768px) {
    .hero {
      height: 50vh;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
  }
  