/* Fontes */
@font-face {
  font-family: 'Inter';
  src: url('public/fontes/inter/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('public/fontes/inter/Inter_18pt-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* Background completo */
body {
  background: #0e2a20 url('./bg.jpeg') center/cover no-repeat;
  line-height: 1.5;
}

/* Títulos e descrições */
.jadebet-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #e0ffe5;
}

/* Grid de features */
.features {
  display: grid;
  gap: 2rem;
  margin: 3rem 0 2rem;
}
.feature {
  background: rgba(0, 94, 61, 0.7);
  padding: 2.2rem 1.2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 224, 113, 0.07);
  min-width: 0;
}
.feature .icon {
  margin-bottom: 1rem;
}
.feature h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: .7rem;
}
.feature p {
  font-size: 1rem;
  color: #e0ffe5;
}

/* CTA extra */
.cta-section {
  background: rgba(1, 75, 49, 0.5);
  border-radius: 16px;
  padding: 2rem 1rem 2.5rem;
  margin-top: 2.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 224, 113, 0.07);
}
.cta-section p {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  color: #fff;
}

/* Footer */
.footer-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: #ff3c3c;
  font-weight: bold;
  margin-bottom: .7rem;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: .95rem;
  color: #aaa;
  line-height: 1.4;
  max-width: 420px;
  margin: 0 auto;
}

/* Responsividade */
@media (min-width: 768px) {
  .jadebet-main-title { font-size: 2.8rem; }
  .features { grid-template-columns: repeat(3,1fr); }
  .cta-section { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .container { width: 100vw; max-width: 420px; padding: .5rem; }
  header { padding: 2rem 0 1rem; }
  .jadebet-title { font-size: 2.5rem; margin-bottom: .2rem; }
  .jadebet-badge { font-size: 1.2rem; padding: .18rem .7rem; margin-bottom: 1rem; }
  .jadebet-main-title { font-size: 2.3rem; margin: 1rem 0 .3rem; }
  .jadebet-desc { font-size: .95rem; margin-bottom: 1.2rem; }
  .btn-primary { font-size: 1.35rem; font-weight: 900; padding: .7rem 1.1rem; }
  .features { grid-template-columns: 1fr; gap: 1.1rem; margin: 2rem 0 1.2rem; }
  .feature {
    padding: 1.2rem .5rem 1rem;
    border-radius: 12px;
  }
  .feature h3 { font-size: 1.55rem; margin-bottom: .4rem; }
  .feature p { font-size: .92rem; }
  .cta-section { padding: 1.2rem .5rem 1.5rem; margin-top: 1.2rem; }
  .cta-section p { font-size: 1rem; margin-bottom: .7rem; }
  footer { font-size: .8rem; padding: 1.2rem 0 .7rem; }
  .footer-warning { font-size: .85rem; gap: .3rem; }
  .footer-legal { font-size: .7rem; margin-top: .4rem; }
}
