/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
  }
  
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  main {
    flex: 1;
  }
  
  /* ===== MENU SUPERIOR ===== */
  .topo {
    background-color: #4885A3;
    padding: 10px 0;
    text-align: center;
    width: 100%;
  }
  
  .container-menu {
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .logo {
    width: 50px;
    height: auto;
  }
  
  .menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .menu a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .menu a:hover,
  .menu a.ativo {
    color: #24454E;
  }
  
  /* ===== BANNER ===== */
  .banner {
    background-color: #8CC7FF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    width: 100%;
  }
  
  .banner-conteudo {
    position: relative;
    width: 100%;
    max-width: 973px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .banner-img {
    width: 100%;
    height: auto;
    max-height: 222px;
    object-fit: cover;
    display: block;
  }
  
  .frase-banner {
    width: 100%;
    background-color: #4885A3;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding: 10px;
    margin-top: -4px;
  }
  
  /* ===== PRINCIPAIS ===== */
  .principais {
    background-color: #56B0C4;
    padding: 30px 0;
    text-align: center;
    width: 100%;
  }
  
  .principais h2 {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
  }
  
  .container-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
    flex-wrap: wrap;
  }
  
  .card {
    width: 180px;
    background-color: transparent;
  }
  
  .card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .card p {
    margin-top: 10px;
    font-size: 14px;
    color: #000;
    text-align: center;
  }
  
  .carregar {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .carregar img {
    width: 80px;
    height: auto;
  }
  
  .btn-carregar {
    background-color: #09809A;
    color: #fff;
    font-weight: bold;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .btn-carregar:hover {
    background-color: #076b7b;
  }
  
  /* ===== NEWSLETTER ===== */
  .newsletter-section {
    background-color: #699EFF;
    padding: 40px 20px;
    width: 100%;
  }
  
  .newsletter-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .newsletter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
  }
  
  .benefits {
    flex: 1;
    background-color: #8CC7FF;
    padding: 20px;
    border-radius: 10px;
  }
  
  .title-benefits {
    background-color: #5E7938;
    padding: 8px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
  }
  
  .benefits ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 15px;
    line-height: 1.6;
  }
  
  .access-newsletter-button {
    background-color: #BD5CEA;
    color: white;
    padding: 12px 20px;
    display: inline-block;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 15px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .access-newsletter-button:hover {
    background-color: #a14cc6;
  }
  
  .disclaimer {
    font-size: 12px;
    margin-top: 10px;
    color: #333;
  }
  
  .form-newsletter {
    flex: 1;
    background-color: #53926F;
    padding: 20px;
    border-radius: 10px;
    position: relative;
  }
  
  .form-newsletter form {
    display: flex;
    flex-direction: column;
  }
  
  .icon-envelope {
    width: 60px;
    margin-bottom: 10px;
  }
  
  .form-newsletter label {
    font-weight: bold;
    margin-top: 10px;
    color: #fff;
  }
  
  .form-newsletter input {
    padding: 8px;
    margin-top: 5px;
    border: none;
    border-radius: 5px;
  }
  
  .form-newsletter button {
    background-color: #BD5CEA;
    color: black;
    padding: 10px;
    margin-top: 15px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .privacy {
    font-size: 12px;
    margin-top: 10px;
    color: white;
  }
  
  .footer {
    text-align: center;
    padding: 15px;
    background-color: #000;
    color: white;
    margin-top: 40px;
    font-size: 14px;
    width: 100%;
  }
  