/* ============================================================
   portugal22betcasino.com — satélite 22Bet Portugal
   Moldura (cabeçalho/rodapé) mantém o teal da marca 22Bet.
   O interior corre em verde e vermelho da bandeira portuguesa
   sobre painéis cor de marfim e um fundo de azulejo.
   ============================================================ */

:root {
  --moldura: #054248;
  --moldura-painel: #054146;
  --pagina: #07484f;
  --pagina-fundo: #063f46;
  --pt-verde: #046a38;
  --pt-verde-claro: #0a8a49;
  --pt-verde-palido: #e6f2ea;
  --pt-verde-linha: #c7e2d2;
  --pt-vermelho: #d7141a;
  --pt-vermelho-escuro: #a80f14;
  --pt-ouro: #ffcf33;
  --pt-ouro-escuro: #e0a800;
  --verde-cta: #2eb256;
  --verde-cta-escuro: #2ca331;
  --tinta: #2b2b2b;
  --tinta-suave: #3a3a3a;
  --tinta-fraca: #6f6a62;
  --marfim: #fdf9f0;
  --marfim-fundo: #f4eddd;
  --marfim-linha: #e6dcc6;
  --entrar-bg: #185b62;
  --raio: 14px;
  --largura: 1200px;
  --tf: "Source Sans 3", "Open Sans", Arial, sans-serif;
  --tf-titulo: "Bitter", "Roboto Condensed", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--tf);
  font-size: 15px;
  line-height: 1.68;
  color: var(--tinta);
  background-color: var(--pagina-fundo);
  /* Azulejo português discreto sobre o teal da marca */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.055' stroke-width='1.4'%3E%3Cpath d='M36 6l8 8-8 8-8-8z'/%3E%3Cpath d='M36 42l8 8-8 8-8-8z'/%3E%3Cpath d='M0 36l8-8 8 8-8 8z'/%3E%3Cpath d='M56 36l8-8 8 8-8 8z'/%3E%3Ccircle cx='36' cy='36' r='7'/%3E%3Cpath d='M0 0h72v72H0z'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(1100px 520px at 50% 0%, #0a636b 0%, var(--pagina-fundo) 62%, #04333a 100%);
  background-attachment: scroll, fixed;
}

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

a { color: var(--pt-verde); text-decoration: none; }
a:hover { text-decoration: underline; }

.centro {
  max-width: var(--largura);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ BARRA DE PROGRESSO ============ */

.progresso {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--pt-verde-claro), var(--pt-ouro) 55%, var(--pt-vermelho));
  z-index: 120;
  transition: width .08s linear;
}

/* ============ BARRA SUPERIOR ============ */

.barra {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--moldura);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.barra__linha {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
  gap: 18px;
}

.marca { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.marca img { height: 44px; width: auto; }

.navi { display: flex; align-items: center; gap: 4px; margin: 0 auto; }

.navi a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 10px 18px;
  border-radius: 38px;
  transition: background .2s;
}
.navi a:hover { background: rgba(255, 255, 255, .1); text-decoration: none; }
.navi a.navi--ativo { background: var(--pt-vermelho); }

.barra__acoes { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.pilula {
  background: var(--verde-cta);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 11px 26px;
  border-radius: 38px;
  flex-shrink: 0;
  transition: background .2s;
}
.pilula:hover { background: var(--verde-cta-escuro); text-decoration: none; }
.pilula--escura { background: var(--entrar-bg); }
.pilula--escura:hover { background: #0c4a50; }

.bandeira {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}
.bandeira svg {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}

.hamb {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.hamb span {
  display: block;
  width: 26px; height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .25s, opacity .25s;
}
.hamb.hamb--x span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamb.hamb--x span:nth-child(2) { opacity: 0; }
.hamb.hamb--x span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.gaveta {
  display: none;
  background: var(--moldura-painel);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.gaveta.gaveta--aberta { display: block; }
.gaveta a {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .2s;
}
.gaveta a:hover { background: rgba(255, 255, 255, .07); text-decoration: none; }

.gaveta__acoes {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px 22px;
}
.gaveta__acoes a {
  flex: 1 1 0;
  max-width: 190px;
  padding: 13px 18px;
  border: 0;
  border-radius: 38px;
  background: var(--verde-cta);
  transition: background .2s;
}
.gaveta__acoes a:hover { background: var(--verde-cta-escuro); }
.gaveta__acoes a.gaveta__escura { background: var(--entrar-bg); }
.gaveta__acoes a.gaveta__escura:hover { background: #0c4a50; }

/* ============ CAPA (hero) ============ */

.capa {
  margin-top: 72px;
  background: linear-gradient(128deg, #022226 0%, var(--moldura) 55%, #0a636b 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--pt-vermelho);
}

.capa__linha {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 52px 0;
  min-height: 420px;
  position: relative;
  z-index: 1;
}

/* A arte fica limitada à largura do contentor, com as bordas a dissolver */
.capa__fundo {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--largura));
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.capa__fundo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2, 28, 31, .95) 0%, rgba(4, 55, 60, .74) 40%, rgba(10, 99, 107, .1) 74%);
}

.capa__texto { flex: 1 1 auto; max-width: 640px; position: relative; z-index: 1; }

.capa h1 {
  font-family: var(--tf-titulo);
  font-size: 43px;
  font-weight: 700;
  line-height: 1.14;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.capa h1 .brilho { color: var(--pt-ouro); text-shadow: 0 0 16px rgba(255, 207, 51, .35); }

.capa__lead {
  color: rgba(255, 255, 255, .93);
  font-size: 17px;
  margin-bottom: 26px;
  max-width: 560px;
}

.capa__botoes { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.selo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  border-radius: 38px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 700;
}
.selo .estrela { color: var(--pt-ouro); }
.capa__nota { margin-bottom: 16px; }

/* ============ BOTÕES ============ */

.botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--tf);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #fff;
  border: 0;
  border-radius: 38px;
  padding: 14px 32px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-align: center;
}
.botao:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 0, 0, .26); }
.botao--jogar { background: var(--pt-verde); }
.botao--jogar:hover { background: var(--pt-verde-claro); }
.botao--bonus { background: var(--pt-vermelho); }
.botao--bonus:hover { background: var(--pt-vermelho-escuro); }
.botao--verde { background: var(--verde-cta); }
.botao--verde:hover { background: var(--verde-cta-escuro); }
.botao--vazio {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .6);
}
.botao--vazio:hover { background: rgba(255, 255, 255, .14); }
.botao svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============ CORPO / BLOCOS ============ */

.corpo { padding: 30px 0 50px; }

.bloco {
  background: var(--marfim);
  border: 1px solid var(--marfim-linha);
  border-radius: var(--raio);
  padding: 34px 40px;
  margin-bottom: 24px;
  box-shadow: 0 3px 16px rgba(0, 20, 18, .22);
  position: relative;
  overflow: hidden;
}
.bloco::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pt-verde) 0%, var(--pt-verde) 40%, var(--pt-ouro) 40%, var(--pt-ouro) 60%, var(--pt-vermelho) 60%);
  opacity: .9;
}

.bloco > *:last-child { margin-bottom: 0; }

.bloco h2 {
  font-family: var(--tf-titulo);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--pt-verde);
  margin: 0 0 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bloco h2::before {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 3px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Esfera armilar portuguesa */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cg fill='none' stroke='%23e0a800' stroke-width='1.7'%3E%3Ccircle cx='14' cy='14' r='11'/%3E%3Cellipse cx='14' cy='14' rx='4.4' ry='11'/%3E%3Cellipse cx='14' cy='14' rx='11' ry='4.4'/%3E%3Cpath d='M3 14h22'/%3E%3C/g%3E%3Ccircle cx='14' cy='14' r='3' fill='%23d7141a'/%3E%3C/svg%3E");
}

.bloco h3 {
  font-family: var(--tf-titulo);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--tinta-suave);
  margin: 26px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--pt-verde);
}

.bloco p { margin-bottom: 14px; }
.bloco ol { margin: 0 0 16px 22px; }
.bloco li { margin-bottom: 8px; }

.bloco ul {
  list-style: none;
  margin: 0 0 16px;
}
.bloco ul li {
  position: relative;
  padding-left: 30px;
}
.bloco ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../imagens/ponto-principal.webp");
}

.nota-fina {
  font-size: 13.5px;
  color: var(--tinta-fraca);
  font-style: italic;
}

/* ============ FIGURA ============ */

.figura {
  margin: 20px 0 18px;
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 20, 18, .2);
  border: 1px solid var(--marfim-linha);
}
.figura img { width: 100%; }
.figura figcaption {
  background: var(--pt-verde);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-top: 3px solid var(--pt-ouro);
}

/* ============ MIGALHAS ============ */

.migalhas {
  margin-bottom: 14px;
  font-size: 13px;
}
.migalhas ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.migalhas li { color: rgba(255, 255, 255, .78); }
.migalhas li + li::before { content: "»"; margin-right: 6px; color: rgba(255, 255, 255, .45); }
.migalhas a { color: #fff; }
.migalhas a:hover { color: var(--pt-ouro); }

/* ============ TABELAS ============ */

.grelha {
  margin: 18px 0;
  border: 1px solid var(--pt-verde-linha);
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0, 20, 18, .12);
  background: #fffdf7;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  table-layout: auto;
}

thead th {
  background: linear-gradient(180deg, var(--pt-verde-claro) 0%, var(--pt-verde) 100%);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .03em;
  padding: 11px 12px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 3px solid var(--pt-ouro);
}

tbody td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--marfim-linha);
  vertical-align: top;
}
tbody tr:nth-child(even) { background: #f6f1e4; }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
tbody td, tbody th { transition: background-color .15s ease; }
tbody tr:hover td { background: var(--pt-verde-palido); }
tbody tr:hover th { background: var(--pt-verde-linha); }
tbody th {
  padding: 11px 12px;
  border-bottom: 1px solid var(--marfim-linha);
  text-align: left;
  background: var(--pt-verde-palido);
  color: var(--tinta-suave);
  font-weight: 600;
  vertical-align: top;
}

/* Wide tables: let the headings wrap so the data columns keep their width */
table.tabela--fina { font-size: 12.5px; }
table.tabela--fina thead th {
  font-size: 11px;
  padding: 10px 9px;
  white-space: normal;
  hyphens: none;
}
table.tabela--fina tbody td { padding: 10px 9px; }
table.tabela--fina tbody td:nth-child(2) { min-width: 122px; }

/* ============ BALANÇO (prós / contras) ============ */

.balanco { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 18px 0; }
.balanco--pro, .balanco--contra {
  border-radius: var(--raio);
  padding: 20px 22px;
}
.balanco--pro { background: #eaf5ee; border: 1px solid #c6e3d1; }
.balanco--contra { background: #fdeeee; border: 1px solid #f4cfd0; }
.balanco--pro h3, .balanco--contra h3 { margin-top: 0; font-size: 18px; border-left: 0; padding-left: 0; text-align: center; }
.balanco--pro h3 { color: var(--pt-verde); }
.balanco--contra h3 { color: var(--pt-vermelho); }
.balanco--pro ul, .balanco--contra ul { margin: 0; }
.balanco--pro ul li::before { background-image: url("../imagens/ponto-bom.webp"); }
.balanco--contra ul li::before { background-image: url("../imagens/ponto-mau.webp"); }

/* ============ PASSOS ============ */

.passos { counter-reset: passo; list-style: none; margin: 16px 0 !important; }
.passos li {
  counter-increment: passo;
  position: relative;
  padding: 0 0 14px 52px;
  margin: 0;
}
.passos li::before {
  content: counter(passo);
  position: absolute;
  left: 0; top: -2px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--pt-verde);
  border: 2px solid var(--pt-ouro);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ OFERTAS (banners) ============ */

.oferta {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(120deg, #022226 0%, var(--moldura) 68%, #0a636b 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--raio);
  padding: 34px 36px;
  margin-bottom: 24px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 20, 18, .28);
}
.oferta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2, 28, 31, .94) 0%, rgba(4, 55, 60, .76) 46%, rgba(10, 99, 107, .1) 78%);
  pointer-events: none;
}
.oferta--quente::before {
  background: linear-gradient(100deg, rgba(72, 6, 8, .94) 0%, rgba(140, 12, 16, .76) 46%, rgba(215, 20, 26, .1) 78%);
}

.oferta__texto { flex: 1; max-width: 420px; position: relative; z-index: 1; }
.oferta__texto .oferta__cta { margin-top: 18px; }

.oferta__etiqueta {
  color: var(--pt-ouro);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 4px;
}
.oferta__titulo {
  font-family: var(--tf-titulo);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}
.oferta__sub { color: rgba(255, 255, 255, .88); font-size: 14px; margin-bottom: 0; }

/* ============ FAIXA DA APLICAÇÃO ============ */

.movel {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(115deg, #021c1f 0%, var(--moldura) 60%, #0a636b 100%);
  border-radius: var(--raio);
  padding: 28px 36px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 20, 18, .28);
}
.movel__foto { flex: 0 0 190px; position: relative; z-index: 1; }
.movel__foto img { border-radius: var(--raio); }
.movel__texto { flex: 1; position: relative; z-index: 1; }
.movel__titulo {
  font-family: var(--tf-titulo);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}
.movel__sub { color: rgba(255, 255, 255, .88); font-size: 14px; }
.movel__lojas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.loja {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #02200f;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  border-radius: var(--raio);
  padding: 10px 22px 10px 16px;
  transition: background .2s;
  min-width: 218px;
}
.loja:hover { background: #04381c; text-decoration: none; }
.loja svg { width: 30px; height: 30px; flex-shrink: 0; }
.loja__txt { line-height: 1.2; text-align: center; }
.loja__mini { font-size: 11px; opacity: .82; display: block; }
.loja__grande { font-size: 17px; font-weight: 700; display: block; }

/* ============ CARTÕES DE MESA ============ */

.mesas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 18px 0 0;
}
.mesa {
  flex: 1 1 300px;
  max-width: calc((100% - 36px) / 3);
  background: var(--marfim-fundo);
  border: 1px solid var(--marfim-linha);
  border-radius: var(--raio);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mesa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 20, 18, .16);
  border-color: var(--pt-verde-linha);
}
.mesa__icone {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
}
.mesa__nome {
  font-family: var(--tf-titulo);
  font-size: 19px;
  font-weight: 700;
  color: var(--pt-verde);
  text-align: center;
  margin-bottom: 10px;
}
.mesa p { margin-bottom: 0; font-size: 14.5px; }

/* ============ GALERIA DE SLOTS ============ */

.slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 20px 0 6px;
}
.slot {
  position: relative;
  display: block;
  border-radius: var(--raio);
  overflow: hidden;
  background: #032a2f;
  border: 1px solid var(--marfim-linha);
  box-shadow: 0 3px 12px rgba(0, 20, 18, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.slot:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0, 20, 18, .3); text-decoration: none; }
.slot__arte { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .35s ease; }
.slot:hover .slot__arte { transform: scale(1.06); }
.slot__brilho {
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .32) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left .55s ease;
}
.slot:hover .slot__brilho { left: 115%; }
.slot__barra {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(180deg, rgba(1, 26, 15, 0) 0%, rgba(1, 26, 15, .86) 55%, rgba(1, 26, 15, .95) 100%);
}
.slot__nome {
  display: block;
  color: #fff;
  font-family: var(--tf-titulo);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}
.slot__marca {
  display: block;
  color: var(--pt-ouro);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 2px;
}
.slots-cta { display: flex; justify-content: center; margin-top: 18px; }

/* ============ VOZES (comentários) ============ */

.vozes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.voz {
  flex: 1 1 300px;
  max-width: calc((100% - 36px) / 3);
  background: var(--marfim-fundo);
  border: 1px solid var(--marfim-linha);
  border-top: 4px solid var(--pt-vermelho);
  border-radius: var(--raio);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}
.voz__topo { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-bottom: 8px; gap: 8px 10px; }
.voz__nome { font-weight: 700; color: var(--tinta-suave); }
.voz__nota {
  background: var(--pt-verde);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 38px;
  padding: 3px 12px;
  flex-shrink: 0;
}
.voz__estrelas { color: var(--pt-ouro-escuro); font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }
.voz__texto { font-style: italic; color: var(--tinta); font-size: 14px; margin: 0; }

/* ============ NOTA FINAL ============ */

.nota-final {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 4px 12px;
  background: linear-gradient(120deg, var(--pt-verde) 0%, #035c30 100%);
  color: #fff;
  border-radius: var(--raio);
  border-left: 6px solid var(--pt-vermelho);
  padding: 18px 26px;
  margin-top: 18px;
}
.nota-final__valor {
  font-family: var(--tf-titulo);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--pt-ouro);
}
.nota-final__rotulo { font-size: 15px; font-weight: 700; text-transform: uppercase; }

/* ============ SANFONA (FAQ) ============ */

.sanfona-lista { margin-top: 6px; }
.sanfona { border-bottom: 1px solid var(--marfim-linha); }
.sanfona summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
  color: var(--tinta-suave);
  padding: 15px 34px 15px 0;
  position: relative;
  list-style: none;
  font-size: 15.5px;
  transition: color .18s ease, padding-left .18s ease;
}
.sanfona summary::-webkit-details-marker { display: none; }
.sanfona summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pt-verde);
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
}
.sanfona summary:hover { color: var(--pt-verde); padding-left: 6px; }
.sanfona summary:hover::after { transform: translateY(-50%) scale(1.12); background: var(--pt-verde-claro); }
.sanfona[open] summary::after { content: "\2212"; background: var(--pt-vermelho); }
.sanfona[open] summary:hover::after { background: var(--pt-vermelho-escuro); }
.sanfona .sanfona__corpo { padding: 0 0 16px; }
.sanfona .sanfona__corpo p { margin-bottom: 8px; }

/* ============ NOTA DO EDITOR ============ */

.editor {
  background: var(--pt-verde-palido);
  border-left: 4px solid var(--pt-verde);
  border-radius: var(--raio);
  padding: 22px 26px;
  font-style: italic;
}
.editor__nome { font-weight: 700; font-style: normal; color: var(--pt-verde); }

/* ============ RODAPÉ ============ */

.rodape {
  background: var(--moldura);
  color: rgba(255, 255, 255, .8);
  padding: 44px 0 0;
  margin-top: 20px;
}
.rodape__grelha {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}
.rodape__sobre img { height: 40px; width: auto; margin-bottom: 14px; }
.rodape__sobre p { font-size: 13px; line-height: 1.6; }

.rodape__coluna h4 {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-bottom: 8px;
  position: relative;
}
.rodape__coluna h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: #2da6b1;
  border-radius: 2px;
}
.rodape__coluna ul { list-style: none; margin-top: 12px; }
.rodape__coluna li { margin-bottom: 9px; }
.rodape__coluna a { color: rgba(255, 255, 255, .7); font-size: 14px; }
.rodape__coluna a:hover { color: #fff; }

.rodape__aviso {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.idade {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border: 2px solid #f04c44;
  color: #f04c44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.rodape__aviso p { font-size: 12.5px; line-height: 1.55; margin: 0; }

.rodape__base {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
}

/* ============ BOTÃO SUBIR ============ */

.subir {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pt-verde);
  color: #fff;
  border: 2px solid var(--pt-ouro);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
  z-index: 90;
}
.subir.subir--visivel { opacity: 1; visibility: visible; transform: translateY(0); }
.subir:hover { background: var(--pt-verde-claro); }
.subir svg { width: 22px; height: 22px; }

/* ============ REVELAÇÃO AO ROLAR ============ */

.revela { opacity: 0; transform: translateY(18px); }
.revela.revela--visivel {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .revela { opacity: 1; transform: none; }
}

/* ============ 404 ============ */

.perdido {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
}
.perdido__codigo {
  font-family: var(--tf-titulo);
  font-size: 130px;
  font-weight: 700;
  color: var(--pt-ouro);
  line-height: 1;
  text-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}
.perdido h1 { color: #fff; font-family: var(--tf-titulo); text-transform: uppercase; font-size: 32px; margin: 12px 0; }
.perdido p { color: rgba(255, 255, 255, .88); margin-bottom: 26px; }

/* ============ PÁGINAS LEGAIS ============ */

.doc-data { font-size: 13.5px; color: var(--tinta-fraca); margin-bottom: 18px; }

/* ============ RESPONSIVO ============ */

@media (max-width: 1080px) {
  .barra__linha { gap: 10px; }
  .marca img { height: 38px; }
  .navi { gap: 2px; }
  .navi a { padding: 9px 11px; font-size: 12px; }
  .pilula { padding: 10px 16px; font-size: 12px; }
  .barra__acoes { gap: 8px; }
  .bandeira { font-size: 12px; gap: 6px; }
  .bandeira svg { width: 26px; height: 17px; }
}

@media (max-width: 1024px) {
  .capa h1 { font-size: 36px; }
  .rodape__grelha { grid-template-columns: 1fr 1fr; }
  .bloco { padding: 28px 26px; }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .mesa, .voz { max-width: calc((100% - 18px) / 2); }

  .grelha {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .grelha table { min-width: 500px; }
  .grelha thead th,
  .grelha tbody td,
  .grelha tbody th { min-width: 140px; }
  .grelha table.tabela--fina thead th,
  .grelha table.tabela--fina tbody td,
  .grelha table.tabela--fina tbody th { min-width: 120px; }
  .grelha tbody tr > *:first-child,
  .grelha thead th:first-child { min-width: 160px; }
}

@media (max-width: 860px) {
  .navi, .barra__acoes { display: none; }
  .bandeira { margin-left: auto; }
  .hamb { display: block; }
  .capa__linha { flex-direction: column; align-items: flex-start; padding: 34px 0; min-height: 0; }
  .capa__texto { width: 100%; max-width: 100%; }
  .capa__fundo::after {
    background: linear-gradient(180deg, rgba(2, 28, 31, .7) 0%, rgba(2, 28, 31, .7) 60%, rgba(2, 28, 31, .68) 100%);
  }
  .capa h1 { font-size: 30px; }
  .capa h1, .capa__lead, .migalhas {
    text-shadow:
      0 0 2px rgba(0, 18, 20, .98),
      0 1px 4px rgba(0, 18, 20, .95),
      0 2px 12px rgba(0, 18, 20, .92);
  }
  .balanco { grid-template-columns: 1fr; }
  .oferta, .movel { flex-direction: column; align-items: flex-start; }
  .oferta::before, .oferta--quente::before { background: none; }
  .oferta__texto {
    max-width: 100%;
    background: rgba(2, 28, 31, .74);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--raio);
    padding: 22px 20px;
  }
  .oferta--quente .oferta__texto { background: rgba(72, 6, 8, .74); }
  .movel__foto { flex-basis: auto; max-width: 280px; }
  .movel__lojas { flex-direction: row; flex-wrap: wrap; justify-content: center; width: 100%; }
  .loja { flex: 1 1 218px; max-width: 300px; }
  .rodape__base { flex-direction: column; text-align: center; }
}

@media (max-width: 700px) {
  .capa__fundo { background-position: 70% center; }
  .slots { grid-template-columns: repeat(2, 1fr); }
  .mesa, .voz { max-width: 100%; }
}

@media (max-width: 560px) {
  .rodape__grelha { grid-template-columns: 1fr; text-align: center; }
  .rodape__sobre img { margin-left: auto; margin-right: auto; }
  .rodape__aviso { flex-direction: column; text-align: center; }
  .bloco { padding: 22px 16px; }
  .bloco h2 { font-size: 22px; }
  .capa h1 { font-size: 26px; }
  .perdido__codigo { font-size: 90px; }

  .capa__texto,
  .oferta__texto,
  .movel__texto { text-align: center; width: 100%; }
  .capa__botoes,
  .oferta__cta,
  .movel__lojas,
  .migalhas ol { justify-content: center; }
  .oferta__cta, .movel__lojas { display: flex; width: 100%; }
  .capa__linha, .oferta, .movel { align-items: center; }
  .capa__nota { align-self: center; }
}

@media (max-width: 450px) {
  .centro { padding: 0 10px; }
  .barra__linha { height: 60px; gap: 10px; }
  .marca img { height: 34px; }
  .bandeira svg { width: 26px; height: 17px; }
  .bandeira { font-size: 12px; gap: 6px; }
  .capa { margin-top: 60px; }
  .bloco { padding: 18px 12px; }
  .oferta, .movel { padding: 20px 14px; }
  .capa__linha { padding: 28px 0; }
  thead th, tbody td, tbody th { padding: 8px 6px; }
}

@media (max-width: 400px) {
  .gaveta__acoes { flex-direction: column; align-items: center; }
  .gaveta__acoes a { flex: 0 0 auto; width: 100%; max-width: 260px; }
}

@media (max-width: 360px) {
  .barra__linha { height: 54px; gap: 8px; }
  .marca img { height: 28px; }
  .bandeira svg { width: 22px; height: 15px; }
  .bandeira { font-size: 11px; gap: 5px; }
  .hamb { padding: 6px; }
  .hamb span { width: 22px; height: 2.5px; margin: 4px 0; }
  .hamb.hamb--x span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamb.hamb--x span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .capa { margin-top: 54px; }
  .perdido { min-height: calc(100vh - 54px); }
}

/* ============ 22BET COUNTRY LINKS ============ */
.rodape__paises {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0 24px;
}
.rodape__paises-titulo {
  display: inline-block;
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 8px;
  color: #fff;
  font-family: "Source Sans 3", "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.rodape__paises-titulo::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: rgb(45, 166, 177);
  border-radius: 2px;
}
.rodape__paises-lista {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rodape__pais {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.rodape__pais:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  text-decoration: none;
}
.rodape__pais.rodape__pais--atual {
  background: rgba(233, 185, 73, .1);
  border-color: #e9b949;
  color: #fff;
}
.rodape__bandeira {
  flex-shrink: 0;
  width: 24px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}
.rodape__bandeira svg { display: block; width: 100%; height: 100%; }
@media (max-width: 560px) {
  .rodape__paises { text-align: center; }
  /* two even columns; every name stays on one line */
  .rodape__paises-lista { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .rodape__paises-lista li { min-width: 0; }
  .rodape__pais { display: flex; width: 100%; min-width: 0; padding: 7px 10px 7px 7px; font-size: 12.5px; text-align: left; white-space: nowrap; }
  .rodape__pais-nome { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 380px) {
  .rodape__paises-lista { gap: 6px; }
  .rodape__pais { gap: 6px; padding: 6px 8px 6px 6px; font-size: 11.5px; }
  .rodape__bandeira { width: 18px; height: 12px; }
}
@media (max-width: 339px) {
  .rodape__pais { gap: 5px; padding: 6px 6px 6px 5px; font-size: 11px; letter-spacing: -.01em; }
  .rodape__bandeira { width: 16px; height: 11px; }
}
/* up to 330px: one pill per row, back to the regular size */
@media (max-width: 330px) {
  .rodape__paises-lista { grid-template-columns: minmax(0, 1fr); }
  .rodape__pais { gap: 9px; padding: 7px 12px 7px 8px; font-size: 12.5px; letter-spacing: normal; }
  .rodape__bandeira { width: 22px; height: 15px; }
}
