    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #0f172a;
      color: white;
    }
    header {
      background-color: #1e293b;
      padding: 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 999;
      height: 70px;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      height: 70px;
      padding: 0 20px;
    }
    .header-logo img {
      max-height: 130px; /* Aumente para o tamanho desejado */
      height: auto;
      width: auto;
      display: block;
    }
    .menu-central {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .menu-central a {
      color: white;
      text-decoration: none;
      font-size: 15px;
      font-weight: bold;
    }
    .header-actions {
      display: flex;
      gap: 20px;
    }
    .header-actions a {
      color: white;
      text-decoration: none;
      font-weight: bold;
        display: flex;
        align-items: center;
    }
    .registrar {
      background-color: #2e8a12; /* Mudar a cor do botão registrar */
      color: white;
      padding: 6px 12px;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.2s ease;
    }
    .registrar:hover {
      background-color:  #256c0e;
    }
    .hero, .banner, .ganhadores, .cta {
      max-width: 1200px;
      margin: 0 auto 200px auto; /* Aplica o espaçamento abaixo */
      padding: 120px 20px 20px; /* padding-top já incluso aqui */
      text-align: center;
    }

    .hero img, .banner img {
      max-width: 100%;
      border-radius: 10px;
      display: block;
        margin: 0 auto;
    }
 
.footer {
  background-color: #1e293b;
  color: #e2e8f0;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-logo {
  height: 120px;
  margin-bottom: 10px;
}

.logo-frase p {
  margin-top: 5px;
}

.footer-col h4 {
  font-weight: bold;
  margin-bottom: 8px;
  color: white;
}

.footer-col a {
  color: #38bdf8;
  text-decoration: none;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  color: #cbd5e1;
}



  .nota-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
  }

  .cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 80px;
  
}
.card-raspadinha {
  background-color: #1e293b;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-raspadinha:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.card-raspadinha img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.card-raspadinha .conteudo {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-raspadinha p {
  margin: 0;
}

.card-raspadinha .valor-premio {
  color: #facc15;
  font-weight: bold;
}

.card-raspadinha button {
  margin-top: 10px;
  background: #dc2626;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.imagem-wrapper {
  position: relative;
}

.imagem-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px 10px 0 0;
}

.preco-marcador {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #dc2626;
  color: white;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  font-family: 'Arial', sans-serif;
  white-space: nowrap;
}


@media (max-width: 768px) {
  header {
    position: static;
    height: auto;
    padding: 0;
    width: 100%;
    top: 0;
    background-color: #1e293b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid #334155;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    height: auto;
    min-height: 60px;
    max-width: none;
  }

  .header-logo img {
    max-height: 70px;
    height: auto;
    width: auto;
  }

  .menu-central {
    display: none; /* Esconder menu principal no mobile para layout mais limpo */
  }

  .header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .header-actions a {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .header-actions a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .registrar {
    background-color: #2e8a12;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(46, 138, 18, 0.3);
  }

  .registrar:hover {
    background-color: #256c0e;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(46, 138, 18, 0.4);
  }

  /* Ajustar o conteúdo principal para compensar o header fixo */
  .hero, .banner, .ganhadores, .cta {
    padding-top: 80px;
  }

  /* Menu mobile hamburger (opcional para futuras melhorias) */
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
  }

  .mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

/* Melhorias adicionais para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
  .header-inner {
    padding: 0 24px;
  }
  
  .menu-central {
    gap: 24px;
  }
  
  .menu-central a {
    font-size: 14px;
  }

}