﻿/* 155bet — UI claro, hierarquia tipográfica e seções bem delimitadas */
:root {
  --bg: #ffffff;
  --bg-band: #f4f7fb;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --text: #0f172a;
  --text-secondary: #334155;
  --muted: #64748b;
  --accent: #0f766e;
  --accent-bright: #14b8a6;
  --accent-soft: #ecfdf5;
  --accent-border: #99f6e4;
  --warning-bg: #fffbeb;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.09);
  --radius: 14px;
  --radius-sm: 10px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --container: min(1080px, calc(100vw - 2.5rem));
  --section-y: clamp(3rem, 6vw, 5rem);
  --leading-body: 1.65;
  --leading-tight: 1.2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: var(--leading-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Fundo: faixa superior suave no hero apenas */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, #f0fdfa 0%, #fafbfc 28%, #ffffff 55%);
  pointer-events: none;
}

.grain {
  display: none;
}

/* —— Cabeçalho —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.75rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 auto;
  min-width: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.logo-wordmark {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-desktop-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem;
}

.nav-desktop a {
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-desktop a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

/* Submenu: dropdown « Páginas » (desktop) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--accent);
  background: var(--accent-soft);
}

.nav-dropdown-chevron {
  font-size: 0.65rem;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  display: none;
  width: 100%;
  flex: 0 0 100%;
  order: 10;
  align-self: stretch;
  max-height: min(70vh, 28rem);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.5rem 0.45rem;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  gap: 0.25rem 0.35rem;
}

.nav-dropdown-panel a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  min-width: 0;
}

.nav-dropdown-panel a:hover {
  background: var(--bg-band);
  color: var(--accent);
}

.header-inner:has(.nav-dropdown.is-open) .nav-dropdown-panel {
  display: grid;
}

@media (min-width: 769px) {
  .header-inner:has(.nav-dropdown:hover) .nav-dropdown-panel,
  .header-inner:has(.nav-dropdown:focus-within) .nav-dropdown-panel,
  .header-inner:has(.nav-dropdown-panel:hover) .nav-dropdown-panel {
    display: grid;
  }

  .header-inner:has(.nav-dropdown:hover) .nav-dropdown-chevron,
  .header-inner:has(.nav-dropdown:focus-within) .nav-dropdown-chevron,
  .header-inner:has(.nav-dropdown-panel:hover) .nav-dropdown-chevron,
  .nav-dropdown.is-open .nav-dropdown-chevron {
    transform: rotate(180deg);
  }
}

/* Par Login / Register — PC: mesma linha do header; mobile: linha completa abaixo */
.header-split-pair {
  --split-outer: 17px;
  --split-inner: 5px;
  display: flex;
  flex: 1 1 100%;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  gap: 0;
  order: 3;
  filter: drop-shadow(0 2px 6px rgba(15, 118, 110, 0.12));
}

@media (min-width: 769px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 0;
    column-gap: 1rem;
    justify-content: space-between;
    padding: 0.65rem 0;
  }

  .logo-link {
    flex: 0 0 auto;
  }

  .nav-desktop {
    flex: 1 1 auto;
    justify-content: center;
  }

  .header-split-pair {
    flex: 0 0 auto;
    width: auto;
    max-width: 17.5rem;
    order: 0;
    margin-left: 0;
  }

}

/* Par de CTAs: cantos externos amplos + internos fechados — perfil folha / losango */

.header-split-btn {
  position: relative;
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, z-index 0s;
}

.header-split-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  z-index: 2;
}

/* Esquerda: arredondamento forte à esquerda, cantos de junção à direita mais fechados */
.header-split-btn--left {
  border-radius: var(--split-outer) var(--split-inner) var(--split-inner) var(--split-outer);
  background: var(--accent-soft);
  color: var(--accent);
  margin-right: -2px;
}

.header-split-btn--left:hover {
  background: #d1fae5;
  z-index: 1;
}

/* Direita: cantos internos à esquerda fechados, externos à direita amplos — espelho do par */
.header-split-btn--right {
  border-radius: var(--split-inner) var(--split-outer) var(--split-outer) var(--split-inner);
  background: var(--accent);
  color: #fff;
  margin-left: 0;
}

.header-split-btn--right:hover {
  background: #0d9488;
  border-color: #0d9488;
  z-index: 1;
}

@media (max-width: 380px) {
  .header-split-btn {
    font-size: 0.8125rem;
    padding: 0.55rem 0.65rem;
    gap: 0.35rem;
  }

  .header-split-btn .fa-right-to-bracket,
  .header-split-btn .fa-user-plus {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-ghost {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text-secondary);
}

.btn-ghost:hover {
  border-color: var(--border-strong);
  background: var(--bg-band);
  color: var(--text);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.25);
}

.btn-primary:hover {
  background: #0d9488;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
}

/* —— Páginas internas ({slug}.html) —— */
.page-sub {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
}

.page-sub h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-sub .page-lead {
  margin: 0 0 1.5rem;
  color: var(--text-secondary);
  max-width: 50ch;
  line-height: 1.65;
}

.page-sub .page-back {
  margin-top: 2rem;
}

/* —— Faixas de página —— */
main > section {
  padding: var(--section-y) 0;
}

main > section:nth-child(even):not(.recommended-games-wrap) {
  background: var(--bg-band);
}

main > section:nth-child(odd):not(.hero) {
  background: var(--bg);
}

.hero {
  padding: 0;
  background: transparent;
}

/* —— Hero —— */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.eyebrow::before {
  display: none;
}

.eyebrow i {
  font-size: 0.7rem;
  opacity: 0.9;
}

.brand-mark {
  color: var(--accent);
}

.ratings-heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 0.55rem;
  border-bottom: 3px solid var(--accent-bright);
  width: 100%;
  max-width: max-content;
  line-height: var(--leading-tight);
}

.ratings-lead {
  margin: 0.85rem 0 0;
  color: var(--text-secondary);
  max-width: 50ch;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  font-weight: 700;
  color: var(--text);
  max-width: 18ch;
}

.hero-lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 42ch;
  margin: 0 0 1.75rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-lg);
}

.hero-visual-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1.35rem;
  background: var(--bg-band);
}

.hero-visual-img img {
  width: 100%;
  height: auto;
}

.hero-copy-col {
  min-width: 0;
}

.pulse-block--left {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.pulse-block h3,
.engage-block h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.pulse-grid {
  display: grid;
  gap: 0.6rem;
}

.pulse-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  background: var(--bg-band);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.pulse-item i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.pulse-num {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.pulse-label {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.3;
}

.engage-block {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.engage-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.engage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.engage-list i {
  color: var(--accent);
  width: 1.25rem;
  text-align: center;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.cert-pill i {
  color: var(--accent);
  font-size: 0.65rem;
}

/* —— Títulos de seção —— */
.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--text);
  line-height: var(--leading-tight);
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--accent-bright);
  display: inline-block;
  width: 100%;
  max-width: max-content;
  box-sizing: border-box;
}

.section-head p {
  margin: 0.75rem 0 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 48ch;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.section-badge i {
  opacity: 0.85;
}

/* —— Grid 4 features —— */
.features-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1000px) {
  .features-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features-grid-4 {
    grid-template-columns: 1fr;
  }
}

.feature-card-v2 {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card-v2:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
}

.feature-card-v2 .fi {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.feature-card-v2 h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
}

.feature-card-v2 p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}

.feature-card-v2 .feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.feature-card-v2 .feature-cta:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Promo cards —— */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .promotions-grid {
    grid-template-columns: 1fr;
  }
}

.promo-card-v2 {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.promo-card-v2:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.promo-card-v2.featured {
  border-color: var(--accent-border);
  background: linear-gradient(165deg, #fff 0%, var(--accent-soft) 100%);
  box-shadow: var(--shadow-md);
}

.promo-tag-top {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.promo-card-v2 h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.promo-card-v2 p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}

.promo-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.promo-value {
  font-weight: 700;
  color: var(--text);
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  transition: background 0.15s, box-shadow 0.15s;
}

.promo-btn:hover {
  background: #0d9488;
  box-shadow: 0 2px 10px rgba(15, 118, 110, 0.3);
}

.promo-card-v2 .promo-footer.stack {
  flex-direction: column;
  align-items: stretch;
}

.promo-card-v2 .promo-footer.stack .promo-btn {
  width: 100%;
  text-align: center;
}

/* —— FAQ：手风琴，点击展开 —— */
.faq-section .faq-container {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .faq-section .faq-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 2.5rem 3rem;
    align-items: start;
  }

  .faq-section .faq-intro {
    position: sticky;
    top: 6.5rem;
    margin-bottom: 0;
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.is-open {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  line-height: 1.45;
  transition: background 0.15s, color 0.15s;
}

.faq-q:hover {
  background: var(--bg-band);
}

.faq-q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.faq-q-text {
  flex: 1;
  min-width: 0;
}

.faq-chevron {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  transition: transform 0.3s ease, background 0.2s;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-a {
  padding: 0 1.15rem 1.15rem 1.15rem;
  margin-top: -0.15rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  border-top: 1px solid transparent;
}

.faq-item.is-open .faq-a {
  border-top-color: var(--border);
  padding-top: 0.85rem;
}

.faq-a p {
  margin: 0;
}

/* —— Escritório：左右分栏 —— */
.office-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: 2rem 2.75rem;
  align-items: start;
}

@media (max-width: 880px) {
  .office-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.office-split__left {
  min-width: 0;
}

.office-intro.section-head {
  margin-bottom: 1.5rem;
}

.office-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.office-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.office-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.office-card p {
  margin: 0 0 0.4rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.office-card p.office-gap {
  margin-top: 0.65rem;
}

.office-card strong {
  color: var(--text);
  font-weight: 600;
}

.office-card a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.office-card a:hover {
  color: #0d9488;
}

.office-icon-lg {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.office-split__right {
  min-width: 0;
}

@media (min-width: 881px) {
  .office-map-card {
    position: sticky;
    top: 5.5rem;
  }
}

.office-map-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.35rem 1.35rem;
}

.office-map-card .map-heading {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.map-frame {
  margin-top: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  min-height: 260px;
  max-height: 420px;
  box-shadow: var(--shadow-sm);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0.9rem 0 0;
  line-height: 1.65;
}

/* —— Avaliações —— */
.ratings-top {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 280px);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

@media (max-width: 800px) {
  .ratings-top {
    grid-template-columns: 1fr;
  }
}

.summary-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.summary-box .score {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.summary-stars {
  display: flex;
  justify-content: center;
  gap: 0.15rem;
  margin: 0.5rem 0;
  color: #f59e0b;
  font-size: 0.95rem;
}

.summary-box .sub {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

.ratings-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-align: left;
}

.ratings-meta-row span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ratings-meta-row i {
  color: var(--accent);
  width: 1rem;
  flex-shrink: 0;
}

.quote-grid {
  display: grid;
  gap: 1rem;
}

.quote-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.quote-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.quote-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.quote-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
  line-height: var(--leading-tight);
}

.quote-card .mini {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0.2rem 0 0;
  line-height: 1.4;
}

.quote-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.badge-score {
  font-weight: 800;
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* —— Jogos —— */
.recommended-games-wrap {
  padding: var(--section-y) 0;
  background: var(--bg-band);
  border-top: 1px solid var(--border);
}

.recommended-games-wrap h2 {
  text-align: left;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent-bright);
  max-width: max-content;
}

.recommended-games-wrap .sub {
  text-align: left;
  color: var(--text-secondary);
  margin: 0.85rem 0 2rem;
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.65;
}

.games-grid-remote {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.1rem;
}

.game-card-remote {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.game-card-remote:hover {
  transform: translateY(-3px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
}

.game-card-remote a {
  display: block;
  color: inherit;
}

.game-card-remote img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  background: var(--bg-band);
}

.game-card-remote .game-card-info {
  padding: 0.85rem 0.75rem;
}

.game-card-remote .game-card-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}

/* —— Rodapé —— */
.footer {
  border-top: none;
  padding: 3rem 0 1.75rem;
  background: #0f172a;
  color: #e2e8f0;
}

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9375rem;
  max-width: 36ch;
  line-height: 1.65;
  margin: 0;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 0.85rem;
  border-radius: 8px;
}

.footer h4 {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 700;
}

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

.footer a {
  color: #cbd5e1;
  font-size: 0.875rem;
  display: block;
  padding: 0.3rem 0;
  line-height: 1.5;
}

.footer a:hover {
  color: var(--accent-bright);
}

.social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: grid;
  place-items: center;
  padding: 0;
  color: #e2e8f0;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-bright);
  border-color: rgba(20, 184, 166, 0.5);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.8125rem;
  color: #64748b;
}

/* —— Mobile —— */
@media (max-width: 768px) {
  .header-inner > .nav-dropdown-panel {
    display: none !important;
  }

  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    padding: 0 0 1rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
    background: #fff;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav-links-wrap,
  .mobile-subnav-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(7.25rem, 1fr));
    gap: 0.4rem;
    padding: 0.15rem 0 0.85rem;
  }

  .mobile-nav-links-wrap {
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.15rem;
  }

  .mobile-nav-links-wrap a,
  .mobile-subnav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.55rem 0.45rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    min-width: 0;
  }

  .mobile-nav-links-wrap a:hover,
  .mobile-nav-links-wrap a:focus-visible,
  .mobile-subnav-links a:hover,
  .mobile-subnav-links a:focus-visible {
    color: var(--accent);
    background: var(--accent-soft);
    border-color: var(--accent-border);
  }

  .mobile-nav-heading {
    margin: 0.65rem 0 0.25rem;
    padding: 0.35rem 0 0.5rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
  }

  .mobile-nav-heading:first-child {
    margin-top: 0;
  }

  .mobile-nav-tag {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.62rem;
    opacity: 0.85;
  }
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}

