:root {
  --ink: #12131a;
  --muted: #5f6472;
  --line: #dde1ea;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --brand: #1f8f4a;
  --brand-dark: #126234;
  --accent: #e6b84d;
  --danger: #b43d3d;
  --radius: 8px;
  --shadow: 0 14px 38px rgba(18, 19, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #f3f6f4;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.topbar {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #101820 0%, #13251b 54%, #0b3f2b 100%);
  border-bottom: 3px solid #00d87a;
  box-shadow: 0 10px 28px rgba(0, 80, 45, 0.24);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  color: #fff;
}

.logo img {
  width: 126px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  font-size: 0.92rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #fff;
  font-weight: 700;
}

.nav-links a:hover {
  color: #ffe49b;
  text-decoration: none;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

.button {
  background: #00d87a;
  color: #071a10;
  border: 1px solid #00d87a;
}

.button:hover {
  background: #66f0ad;
  color: #071a10;
  text-decoration: none;
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button-secondary:hover {
  border-color: var(--brand);
  text-decoration: none;
}

.hero {
  background: linear-gradient(110deg, rgba(16, 24, 32, 0.92), rgba(18, 98, 52, 0.78)), url("../images/7games-login-brasil.png") center/cover;
  color: #fff;
  min-height: 620px;
  display: grid;
  align-items: end;
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 6rem 0 4rem;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  gap: 0.45rem;
  align-items: center;
  color: #173018;
  background: #dff4df;
  border: 1px solid rgba(31, 143, 74, 0.25);
  border-radius: 999px;
  padding: 0.34rem 0.68rem;
  font-weight: 700;
  font-size: 0.86rem;
}

.hero .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  letter-spacing: 0;
  margin-top: 1.1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 780px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  width: min(1160px, calc(100% - 32px));
  margin: -2rem auto 0;
  position: relative;
}

.trust-item,
.card,
.notice,
.toc,
.faq details,
.audit-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-item {
  padding: 1rem;
  box-shadow: var(--shadow);
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: var(--soft);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  overflow: hidden;
}

.card-body {
  padding: 1.25rem;
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.kicker {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  border-top: 1px solid var(--line);
  padding: 0.75rem 0;
}

.checklist {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding-left: 1.6rem;
  position: relative;
}

.checklist li::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  top: 0.55rem;
  left: 0;
}

.notice {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
  background: #fffaf0;
}

.disclaimer-strip {
  display: none;
}

.disclaimer-strip strong {
  color: #171000;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 1rem 0 0;
}

.source-list a {
  display: inline-block;
  margin: 0.2rem 0.65rem 0.2rem 0;
  font-weight: 700;
}

.notice.warning {
  border-left-color: var(--danger);
  background: #fff6f6;
}

.toc {
  padding: 1.1rem;
  margin-top: 1.5rem;
}

.toc a {
  display: inline-block;
  margin: 0.25rem 0.7rem 0.25rem 0;
  font-weight: 700;
}

.page-hero {
  background:
    linear-gradient(115deg, rgba(16, 24, 32, 0.94), rgba(11, 63, 43, 0.88)),
    url("../images/7games-login-brasil.png") center/cover;
  border-bottom: 3px solid #00d87a;
  color: #fff;
}

.page-hero .container {
  padding: 4rem 0;
}

.page-hero p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.page-hero .breadcrumb,
.page-hero .breadcrumb a,
.page-hero .meta-line {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero .eyebrow {
  color: #071a10;
  background: #72f2b5;
  border-color: #72f2b5;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
}

.content > article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 12px 30px rgba(18, 19, 26, 0.07);
}

.content > article > h2:not(:first-child) {
  margin-top: 2.3rem;
}

.content > article p,
.content > article li {
  font-size: 1rem;
}

.sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

.sidebar .card-body {
  padding: 1rem;
}

.sidebar .card,
.sidebar .notice {
  box-shadow: 0 10px 26px rgba(18, 19, 26, 0.08);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fbfcfb;
}

.info-panel strong {
  display: block;
  margin-bottom: 0.35rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #00d87a;
  color: #071a10;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.compare-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
}

.compare-grid .bad {
  border-left: 4px solid var(--danger);
}

.compare-grid .good {
  border-left: 4px solid var(--brand);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}

.related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #edf5ef;
  color: var(--brand-dark);
  font-weight: 700;
}

.related-links a:hover {
  text-decoration: none;
  background: #dff4df;
}

.next-steps {
  margin-top: 2.4rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid #cfe8d7;
  background: linear-gradient(180deg, #f6fff8, #ffffff);
}

.next-steps h2 {
  margin-top: 0;
  font-size: 1.45rem;
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.next-grid a {
  display: block;
  min-height: 100%;
  padding: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.next-grid a:hover {
  border-color: #00d87a;
  box-shadow: 0 8px 18px rgba(0, 120, 68, 0.1);
  text-decoration: none;
}

.next-grid strong {
  display: block;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.next-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin: 1rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #edf5ef;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  padding: 1rem;
  background: #fff;
  border-left: 3px solid #00d87a;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.audit-box {
  padding: 1.25rem;
  background: #f9fbfd;
}

.site-footer {
  background: #101820;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0;
}

.site-footer::after {
  content: "Guia independente: não somos a 7Games, não coletamos login, senha, CPF ou depósitos. Para acessar sua conta, confira sempre o domínio oficial 7games.bet.br.";
  display: block;
  width: min(1160px, calc(100% - 32px));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.5rem;
}

.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer .small {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 0.85rem 0;
    align-items: flex-start;
  }

  .nav,
  .nav-links {
    flex-direction: column;
  }

  .nav-links {
    align-items: flex-start;
    gap: 0.65rem;
  }

  .hero {
    min-height: 560px;
  }

  .trust-row,
  .grid,
  .grid.two,
  .content,
  .footer-grid,
  .info-grid,
  .step-grid,
  .compare-grid,
  .next-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    padding: 4rem 0 3rem;
  }

  .hero-actions .button,
  .hero-actions .button-secondary {
    width: 100%;
  }
}
