/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #301929;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  /* ===== Hero Container ===== */
  .hero {
    display: flex;
    width: 100%;
    max-width: 1200px;
    background-color: #3F2838;
    border-radius: 16px;
  }
  
  /* ===== Imagem ===== */
  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* ===== Conteúdo ===== */
  .hero-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .logo {
    width: 150px;
    margin-bottom: 32px;
  }
  
  /* Lista de itens */
  .features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .features li {
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
  }
  .features .icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    flex-shrink: 0;
  }
  
  /* Botão CTA */
  .btn {
    display: inline-block;
    text-align: center;
    padding: 16px 32px;
    background-color: #B3F4E1;
    color: #1C0A24;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  .btn:hover {
    opacity: 0.8;
  }
  
  /* ===== Responsividade ===== */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
    }
    .hero-content {
      padding: 20px;
    }
    .logo {
      width: 150px;
      margin-bottom: 24px;
    }
    .features {
      gap: 16px;
      margin-bottom: 32px;
    }
  }
  