/* 🔷 Paleta de sorte: verde, dourado, roxo e azul */
body {
    background-color: #f4f6fb;
    font-family: "Poppins", sans-serif;
}

/* Navbar com fundo mais escuro */
.bg-gradient {
    background: linear-gradient(90deg, #002b13, #004d26, #006633); /* tons escuros de verde */
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.navbar-brand {
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: #f0f0f0 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00ff99 !important; /* destaque verde */
}


/* Hero */
.hero {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.9), rgba(144, 16, 144, 0.9)), url('../img/bg-sorte.jpg') center/cover no-repeat;
    min-height: 80vh;
}

/* Botão sorte */
.btn-luck {
    background: #00c851;
    color: #fff;
    border: none;
    border-radius: 25px;
    transition: 0.3s;
}
.btn-luck:hover {
    background: #007e33;
    transform: scale(1.05);
}

/* Cards de loterias */
.loteria-card {
    border: none;
    border-radius: 20px;
    color: #fff;
    padding: 2rem;
    transition: 0.3s;
}
.loteria-card:hover {
    transform: scale(1.05);
}
.megasena { background: linear-gradient(135deg, #00a651, #009933); }
.lotofacil { background: linear-gradient(135deg, #901090, #c72bc7); }
.quina { background: linear-gradient(135deg, #0055ff, #00bfff); }

/* Título degradê */
.text-gradient {
  /* gradiente */
  background: linear-gradient(90deg, #00a651, #901090);

  /* versão WebKit — necessária para Chrome, Safari e iOS */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* padrão (fallback) — Firefox já reconhece background-clip em muitos casos */
  background-clip: text;
  color: transparent;

  /* garantir que o elemento possa receber o recorte */
  display: inline-block;
}


/* Footer */
.footer {
    background: linear-gradient(90deg, #901090, #0080ff);
}
