﻿/* jebetka.com — site shell */
:root {
  --layout-max: 100%;
  --nav-pad-x: clamp(10px, 3vw, 16px);
  --header-full: 0px;
  --text-size: 16px;
  --line-height: 1.65;

  /* Paleta — verde profundo Brasil (#009B3A · #006B3F · ouro #FFDF00) */
  --canvas: #030f08;
  --canvas-wide: #020a06;
  --surface: #0a1a10;
  --surface-card: #0f2418;
  --surface-elevated: #163824;
  --surface-muted: #081912;
  --border: rgba(0, 155, 58, 0.28);
  --border-light: rgba(255, 255, 255, 0.07);

  --ink: #ffffff;
  --ink-muted: rgba(255, 255, 255, 0.88);
  --ink-soft: rgba(255, 255, 255, 0.72);

  --brand-gold: #ffdf00;
  --brand-gold-dark: #e6c800;
  --brand-green: #009b3a;
  --brand-green-dark: #007a2e;
  --brand-red: #ff5c7a;
  --brand-blue: #4ade80;
  --brand-violet: #006b3f;
  --brand-violet-dark: #004d2e;

  --header-app-bg: #061410;
  --header-nav-bg: #0a1f14;
  --header-nav-border: rgba(0, 155, 58, 0.35);

  --hero-bg: linear-gradient(165deg, #030f08 0%, #0a1f14 45%, #0f2a1c 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 4px 16px rgba(0, 155, 58, 0.35);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --z-header: 9000;
  --z-modal: 9500;
}

@media (min-width: 451px) {
  :root {
    --layout-max: min(100%, calc(100vh * 750 / 1334));
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: var(--text-size);
  line-height: var(--line-height);
  color: var(--ink);
  background: var(--canvas-wide);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

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

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

a:hover {
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.25rem;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.app-shell {
  width: min(100%, var(--layout-max));
  max-width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  overflow-x: hidden;
}

#site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--layout-max));
  z-index: var(--z-header);
  background: var(--header-nav-bg);
  border-bottom: 1px solid var(--header-nav-border);
}

#app-bar-on { display: none; }

.app-bar {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px var(--nav-pad-x);
  background: var(--header-app-bg);
  border-bottom: 1px solid var(--border-light);
}

#app-bar-on:checked ~ .app-bar { display: flex; }

.app-bar__close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  cursor: pointer;
  font-size: 14px;
}

.app-bar__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.app-bar__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.app-bar__copy { min-width: 0; }

.app-bar__text {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.3;
}

.app-bar__amount {
  color: var(--brand-gold);
  font-weight: 700;
}

.app-bar__cta {
  flex-shrink: 0;
  min-width: 120px;
  padding: 12px 22px;
  background: var(--brand-green);
  color: #111;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 200, 150, 0.35);
}

.app-bar__cta:hover {
  background: var(--brand-green-dark);
  text-decoration: none;
  color: #111;
}

#nav-toggle { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px var(--nav-pad-x);
  background: var(--header-nav-bg);
}

.site-nav__burger {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
}

.site-nav__burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s;
}

#nav-toggle:checked ~ .site-nav .site-nav__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#nav-toggle:checked ~ .site-nav .site-nav__burger span:nth-child(2) {
  opacity: 0;
}

#nav-toggle:checked ~ .site-nav .site-nav__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav__logo {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  margin-right: 8px;
}

.site-nav__logo img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
}

.site-nav__ctas {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.site-nav__btn {
  min-width: 72px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  background: var(--brand-gold);
  border: 1px solid var(--brand-gold-dark);
  border-radius: var(--radius-sm);
  text-decoration: none;
  position: relative;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-gold);
}

.site-nav__btn:hover {
  background: var(--brand-gold-dark);
  border-color: var(--brand-gold-dark);
  color: #111;
  text-decoration: none;
}

.site-nav__badge {
  position: absolute;
  top: -6px;
  right: 0;
  padding: 1px 5px;
  font-size: 9px;
  font-weight: 700;
  background: var(--brand-red);
  color: #fff;
  border-radius: 999px;
}

.site-search {
  padding: 0 var(--nav-pad-x) 10px;
  background: var(--header-nav-bg);
}

.site-search__form {
  display: flex;
  gap: 8px;
}

.site-search__input {
  flex: 1;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink);
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
}

.site-search__input:focus {
  border-color: var(--brand-gold);
}

.site-search__input::placeholder {
  color: var(--ink-soft);
}

.site-search__btn {
  flex-shrink: 0;
  width: 44px;
  min-width: 44px;
  height: 47px;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0f4f8' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cline x1='15.5' y1='15.5' x2='20' y2='20'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  box-shadow: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.site-search__btn:hover {
  background-color: transparent;
  opacity: 0.75;
}

.site-search__btn:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.search-results {
  display: none;
  margin-top: 8px;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  max-height: 240px;
  overflow-y: auto;
}

.search-results.is-open { display: block; }

.search-results a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  font-size: 14px;
}

.search-results a:hover {
  background: var(--surface-elevated);
  color: var(--brand-gold);
  text-decoration: none;
}

.search-results a:last-child { border-bottom: none; }

.search-results__empty {
  padding: 12px 14px;
  color: var(--ink-muted);
  font-size: 14px;
}

.site-dropdown {
  display: none;
  background: var(--surface-card);
  border-top: 1px solid var(--border-light);
  padding: 12px var(--nav-pad-x) 16px;
}

#nav-toggle:checked ~ .site-dropdown { display: block; }

.nav-tree {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-tree__group {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-elevated);
  border: 1px solid var(--border-light);
}

.nav-tree__group:has(.is-active),
.nav-tree__group:has(.is-parent-active) {
  border-color: var(--border);
}

.nav-tree__parent {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border: none;
  background: none;
  border-left: 3px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  list-style: none;
}

summary.nav-tree__parent::-webkit-details-marker {
  display: none;
}

.nav-tree__parent::before {
  content: "";
  display: none;
}

details.nav-tree__group .nav-tree__parent::before {
  content: "▸";
  display: inline;
  font-size: 10px;
  color: var(--brand-gold);
  transition: transform 0.2s;
  flex-shrink: 0;
}

details.nav-tree__group[open] .nav-tree__parent::before {
  transform: rotate(90deg);
}

.nav-tree__parent:hover {
  background: rgba(0, 155, 58, 0.06);
  text-decoration: none;
  color: var(--brand-gold);
}

.nav-tree__parent.is-active,
.nav-tree__parent.is-parent-active {
  color: var(--brand-gold);
  background: rgba(0, 155, 58, 0.1);
  border-left-color: var(--brand-gold);
}

.nav-tree__subs {
  list-style: none;
  margin: 0;
  padding: 0 0 6px;
  border-top: 1px solid var(--border-light);
  background: rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

details:not([open]) .nav-tree__subs {
  display: none;
}

details[open] .nav-tree__subs,
.nav-tree__group.is-open .nav-tree__subs {
  display: block;
}

.nav-tree__subs li {
  margin: 0;
  padding: 0;
}

.nav-tree__subs a {
  display: block;
  padding: 8px 14px 8px 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.15s, background 0.15s;
}

.nav-tree__subs a::before {
  content: "—";
  position: absolute;
  left: 14px;
  color: var(--ink-soft);
  font-size: 11px;
}

.nav-tree__subs a:hover {
  color: var(--brand-gold);
  background: rgba(0, 155, 58, 0.05);
  text-decoration: none;
}

.nav-tree__subs a.is-active {
  color: var(--brand-gold);
  font-weight: 600;
  background: rgba(0, 155, 58, 0.08);
}

.nav-tree__subs a.is-active::before {
  content: "•";
  color: var(--brand-gold);
}

.nav-tree__subs li:first-child a {
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--border-light);
  margin-bottom: 2px;
  padding-bottom: 10px;
}

.nav-tree__subs li:first-child a:hover {
  color: var(--brand-gold);
}

.site-main {
  flex: 1;
  padding-top: var(--header-full);
  max-width: 100%;
  overflow-x: hidden;
}

.landing__container {
  padding: 0 var(--nav-pad-x) 24px;
  max-width: 100%;
  overflow-x: hidden;
}

.home-hero {
  margin: 0;
  padding: 0 0 20px;
  background: var(--hero-bg);
}

.home-hero__stage {
  position: relative;
  width: 100%;
  max-width: 512px;
  margin: 0 auto;
}

.home-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.home-hero__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

.home-hero__overlay {
  background: var(--surface-card);
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px var(--nav-pad-x);
}

.home-hero__title {
  font-size: clamp(1.25rem, 4.5vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 6px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.home-hero__sub {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 12px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.home-hero__badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 10px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  background: var(--brand-gold);
  border-radius: 999px;
}

.home-hero__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 4px;
}

.home-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-soft);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.home-hero__dot.is-active {
  background: var(--brand-gold);
  transform: scale(1.2);
}

.home-screen {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.home-screen--1 {
  background: var(--hero-bg);
  padding-bottom: 8px;
}

.home-screen--1 .home-hero {
  margin: 0;
  background: transparent;
}

.home-screen--2 {
  background: var(--surface);
}

.home-screen--3 {
  background: var(--surface-muted);
}

.home-screen--4 {
  background: var(--surface);
}

.home-faq {
  margin: 0;
  padding: 0 0 8px;
  background: var(--surface-muted);
  max-width: 100%;
  overflow-x: hidden;
}

.home-faq .home-screen__block {
  padding-bottom: 32px;
}

.home-faq .faq-list {
  margin: 0;
}

.home-screen__block {
  padding: 24px 0 28px;
}

.home-screen + .home-screen {
  border-top: 1px solid var(--border-light);
}

.home-section__head {
  margin-bottom: 18px;
}

.home-section__title {
  font-size: clamp(1.15rem, 4vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.home-section__sub {
  font-size: 14px;
  color: var(--ink-muted);
}

.home-section__more {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-gold);
}

.breadcrumb a {
  color: var(--ink-muted);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--brand-gold); }

.page-intro h1,
.prose h1 {
  font-size: clamp(1.25rem, 4.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.casino-rank {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.casino-rank__item {
  display: grid;
  grid-template-columns: 36px 48px 1fr auto;
  grid-template-rows: auto auto;
  gap: 8px 12px;
  padding: 14px;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  align-items: start;
  transition: border-color 0.2s;
}

.casino-rank__logo {
  grid-row: 1 / 2;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.casino-rank__pos {
  grid-row: 1 / 2;
  align-self: center;
}

.casino-rank__item:hover {
  border-color: var(--border);
}

.casino-rank__item--featured {
  border-color: var(--brand-violet);
  background: linear-gradient(135deg, rgba(0, 155, 58, 0.1) 0%, var(--surface-card) 60%);
}

.casino-rank__pos {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #111;
  background: var(--brand-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.casino-rank__item:nth-child(1) .casino-rank__pos { background: linear-gradient(135deg, var(--brand-violet), var(--brand-violet-dark)); }

.casino-rank__item:nth-child(2) .casino-rank__pos { background: linear-gradient(135deg, #c0c0c0, #a0a0a0); color: #111; }

.casino-rank__item:nth-child(3) .casino-rank__pos { background: linear-gradient(135deg, #cd7f32, #b87333); color: #fff; }

.casino-rank__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  min-width: 0;
}

.casino-rank__info h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  flex: 0 0 auto;
}

.casino-rank__info h3 a {
  color: var(--ink);
  text-decoration: none;
}

.casino-rank__info h3 a:hover { color: var(--brand-gold); }

.casino-rank__info p {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
}

.casino-rank__tags {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.casino-rank__desc {
  flex: 1 1 100%;
  width: 100%;
  font-size: 12px !important;
  line-height: 1.45;
  color: var(--ink-soft) !important;
}

.casino-rank__tags span {
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(0, 200, 150, 0.12);
  border-radius: 999px;
  white-space: nowrap;
}

.casino-rank__score {
  grid-column: 4;
  grid-row: 1;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  align-self: start;
  padding-top: 4px;
}

.casino-rank__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.casino-rank__item:not(:has(.casino-rank__logo)) {
  grid-template-columns: 36px 1fr auto;
  align-items: center;
}

.casino-rank__item:not(:has(.casino-rank__logo)) .casino-rank__pos {
  grid-row: 1 / 3;
  align-self: center;
}

.casino-rank__item:not(:has(.casino-rank__logo)) .casino-rank__score {
  grid-column: 3;
  grid-row: 1;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 400px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); }
}

.game-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.game-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-gold);
}

.game-card__thumb {
  position: relative;
  display: block;
  text-decoration: none;
}

.game-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #111;
  background: var(--brand-gold);
  border-radius: 999px;
}

.game-card__img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.game-card__body {
  padding: 10px;
}

.game-card__body h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.game-card__body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.game-card__body h3 a:hover {
  color: var(--brand-gold);
}

.game-card__meta {
  font-size: 11px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}

.game-card__desc {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.game-card__body p {
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
}

a.game-card:hover .game-card__play {
  background: var(--brand-gold-dark);
}

.game-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 10px 10px;
}

.game-grid--home .game-card__body {
  padding: 10px;
  flex: 1;
}

a.game-card {
  text-decoration: none;
}

a.game-card:hover {
  text-decoration: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-card {
  padding: 16px;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.trust-card__icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.trust-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.trust-card--detail {
  text-align: left;
  padding: 18px;
}

.trust-card--detail .trust-card__icon {
  text-align: center;
  margin-bottom: 12px;
}

.trust-card__list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.trust-card__list li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.trust-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand-gold);
}

.trust-card__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-gold);
  text-decoration: none;
}

.trust-card__link:hover {
  text-decoration: underline;
}

.trust-grid--home {
  gap: 14px;
}

.prose {
  padding: 16px 0;
}

.prose h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--ink);
}

.prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 18px 0 10px;
}

.prose h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 14px 0 8px;
}

.prose p {
  margin-bottom: 12px;
  color: var(--ink-muted);
}

.prose ul, .prose ol {
  margin-bottom: 12px;
  color: var(--ink-muted);
}

.prose li { margin-bottom: 6px; }

.prose strong { color: var(--ink); }

.prose img,
.content-block img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.info-table a { color: var(--brand-gold); }

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.cta-btn--primary {
  color: #111;
  background: var(--brand-gold);
  box-shadow: var(--shadow-gold);
}

.cta-btn--primary:hover {
  background: var(--brand-gold-dark);
  color: #111;
}

.cta-btn--outline {
  color: var(--brand-gold);
  background: transparent;
  border: 2px solid var(--brand-gold);
}

.cta-btn--outline:hover {
  background: rgba(0, 155, 58, 0.1);
  color: var(--brand-gold);
}

.cta-btn--gold {
  color: #111;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
  box-shadow: var(--shadow-gold);
}

.cta-btn--sm {
  padding: 8px 12px;
  font-size: 12px;
  flex: 1;
  min-width: 0;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 12px 14px;
  padding: 16px;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.bonus-detail--gold {
  border-color: var(--brand-gold);
  background: linear-gradient(135deg, rgba(0, 155, 58, 0.1) 0%, var(--surface-card) 55%);
}

.bonus-detail__icon {
  grid-row: 1 / 3;
  font-size: 36px;
  line-height: 1;
  align-self: center;
}

.bonus-detail__content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.bonus-detail__amount {
  font-size: 14px;
  color: var(--brand-gold);
  margin-bottom: 8px;
}

.bonus-detail__amount strong {
  font-size: 18px;
  color: var(--brand-gold);
}

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

.bonus-detail__features li {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.bonus-detail__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.bonus-detail__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-list {
  margin: 16px 0;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--surface-card);
}

.faq-item__q {
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.faq-item__q::after {
  content: "+";
  font-size: 18px;
  color: var(--brand-gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.is-open .faq-item__q::after {
  content: "−";
}

.faq-item__a {
  display: none;
  padding: 0 16px 14px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.faq-item.is-open .faq-item__a { display: block; }

.faq-item__a p { margin-bottom: 8px; }

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card {
  display: block;
  padding: 16px;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.2s;
}

.blog-card:hover {
  border-color: var(--brand-gold);
  text-decoration: none;
}

.blog-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.blog-card p {
  font-size: 13px;
  color: var(--ink-muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  margin-top: 16px;
}

.legal-links a {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
}

.legal-links a:hover { color: var(--brand-gold); }

.site-contato {
  margin-top: 8px;
  padding: 28px 0 32px;
  border-top: 1px solid var(--border-light);
}

.site-contato__inner {
  max-width: 100%;
}

.site-contato__title {
  font-size: clamp(1.15rem, 4vw, 1.35rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.site-contato__intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.site-contato__intro strong {
  color: var(--ink);
}

.site-contato__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.site-contato__item {
  padding: 14px 16px;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.site-contato__item dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 6px;
}

.site-contato__item dd {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

.site-contato__item dd a {
  color: var(--brand-gold);
  text-decoration: none;
}

.site-contato__item dd a:hover {
  text-decoration: underline;
}

.site-footer {
  padding: 24px var(--nav-pad-x);
  background: var(--header-app-bg);
  border-top: 1px solid var(--border-light);
}

.site-footer__inner {
  text-align: center;
}

.site-footer__logo img {
  height: 40px;
  width: auto;
  margin: 0 auto 16px;
  opacity: 0.9;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 14px;
}

.site-footer__nav a {
  font-size: 14px;
  color: var(--ink-muted);
  text-decoration: none;
}

.site-footer__nav a:hover { color: var(--brand-gold); }

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin-bottom: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.site-footer__legal a {
  font-size: 12px;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__legal a:hover {
  color: var(--brand-gold);
}

.site-footer__copy {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  width: min(100%, 480px);
  max-height: 80vh;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-light);
}

.modal-header h2 {
  font-size: 16px;
  font-weight: 700;
}

.modal-close {
  width: 32px;
  height: 32px;
  font-size: 22px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.modal-close:hover {
  background: var(--surface-elevated);
  color: var(--ink);
}

.modal-body {
  padding: 16px 18px;
  overflow-y: auto;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.modal-body p { margin-bottom: 10px; }


/* ── Layout overrides: no horizontal scroll ── */
html,
body {
  overflow-x: hidden;
}

.app-shell,
.site-main,
.landing__container,
.home-hero,
.home-hero__stage,
.home-hero__overlay,
.site-contato,
.site-contato__inner,
.site-footer {
  max-width: 100%;
  overflow-x: hidden;
}

.home-screen,
.home-faq,
.home-hero,
.home-screen--1 .home-hero,
.ip-hero-wrap .home-hero {
  margin-left: 0;
  margin-right: 0;
}

.home-screen,
.home-faq {
  padding-left: 0;
  padding-right: 0;
}

.ip-crumb {
  width: min(100%, var(--layout-max));
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--nav-pad-x);
  padding-right: var(--nav-pad-x);
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

.ip-wrap,
.ip-doc,
.ip-hero-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Hide scrollbars site-wide; scroll still works via wheel / touch */
.search-results,
.modal-body,
.site-dropdown {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.search-results::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.site-dropdown::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

