body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
  }
  
  a {
    text-decoration: none;
  }
  
  /* Banner superior reduzido */
  .banner-topo img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    display: block;
  }
  
  /* Topo */
  .topo {
    background: url('img/capa.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding-bottom: 60px;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0d47a1;
    padding: 10px 40px;
  }
  
  .navbar .logo {
    font-size: 20px;
    color: white;
  }
  
  .navbar nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .navbar nav ul li a {
    color: white;
    font-weight: bold;
  }
  
  .hero {
    text-align: center;
    margin-top: 60px;
  }
  
  .hero h1 {
    font-size: 3em;
    font-weight: bold;
  }
  
  .hero p {
    font-size: 1.2em;
    margin: 10px 0 20px;
  }
  
  .botoes {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .btn {
    background-color: #0d47a1;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
  }
  
  .btn-secundario {
    background-color: #64b5f6;
    color: #0d47a1;
  }
  
  .conteudo {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 80px;
    background-color: #fff;
  }
  
  .texto {
    flex: 1;
  }
  
  .texto h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    border-left: 4px solid #0d47a1;
    padding-left: 10px;
  }
  
  .texto p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .btn-link {
    display: inline-block;
    margin-top: 20px;
    background-color: #0d47a1;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
  }
  
  .imagem {
    flex: 0.8;
    text-align: center;
  }
  
  .imagem img {
    max-width: 100%;
    border-radius: 10px;
  }
  
  .imagem p {
    margin-top: 10px;
    font-size: 0.95em;
    color: #444;
  }
  
  /* Newsletter */
  .newsletter {
    background-color: #f0f4f8;
    text-align: center;
    padding: 60px 20px;
  }
  
  .newsletter h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #0d47a1;
  }
  
  .newsletter p {
    font-size: 1em;
    margin-bottom: 30px;
  }
  
  .form-container {
    display: flex;
    justify-content: center;
  }
  
  .btn-newsletter {
    background-color: #0d47a1;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1em;
  }
  