/* =========================================================
   style.css
   Global UI based on visual reference (bwin-like dark theme)
   Scope:
   - Header / Footer
   - Typography
   - Buttons
   - Generic sections
   - FAQ
   - Responsive layout
   - ONLY container-level rules for .list-new / .list-item / .sl-grid
   ========================================================= */

:root {
  --bg: #000000;
  --bg-soft: #0b0b0b;
  --bg-elevated: #121212;
  --bg-card: #171717;
  --bg-card-2: #1d1d1d;

  --text: #ffffff;
  --text-soft: #d8d8d8;
  --text-muted: #a9a9a9;

  --accent: #ffcc00;
  --accent-strong: #f4bf00;
  --accent-dark: #d39f00;

  --border: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(255, 204, 0, 0.22);

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.34);
  --shadow-button: 0 12px 28px rgba(255, 204, 0, 0.22);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --content-width: 1240px;
  --content-gutter: 32px;

  --header-height: 76px;

  --font-main: "Arial", "Helvetica Neue", Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top center, rgba(255, 204, 0, 0.06), transparent 22%),
    linear-gradient(180deg, #000000 0%, #050505 32%, #0a0a0a 100%);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--text);
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

a:hover {
  color: var(--accent);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
li {
  color: var(--text-soft);
}

p {
  margin: 0 0 1.1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
  margin: 0 0 0.7em;
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(34px, 4.6vw, 70px);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
}

h3 {
  font-size: clamp(22px, 2.1vw, 30px);
}

h4,
.title.middle {
  font-size: clamp(18px, 1.6vw, 24px);
}

small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

strong {
  color: var(--text);
  font-weight: 800;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #101010;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--border-accent);
  box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.1);
  background: #141414;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.content {
  width: min(var(--content-width), calc(100% - var(--content-gutter) * 2));
  margin-inline: auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: relative;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(3, 3, 3, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.24), transparent);
}

.header__content {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
}

.header__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-width: 110px;
}

.header__logo img,
.logo img {
  max-height: 38px;
  width: auto;
  object-fit: contain;
}

.menu {
  min-width: 0;
}

.header__menu {
  flex: 1 1 auto;
}

.menu ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.menu li {
  list-style: none;
}

.menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f3f3f3;
  white-space: nowrap;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, #ffe88e 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--accent);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  transform: scaleX(1);
}

.header__buttons {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.header__menu-button {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.header__menu-button:hover {
  border-color: var(--border-accent);
  background:
    linear-gradient(180deg, rgba(30, 30, 30, 1) 0%, rgba(15, 15, 15, 1) 100%);
}

.header__menu-button svg,
.header__menu-button .svg-menu {
  width: 22px;
  height: 22px;
}

.header__menu-button .path {
  fill: var(--text);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 7px;
  border: 1px solid rgba(255, 204, 0, 0.65);
  background:
    linear-gradient(180deg, #ffd83b 0%, #ffcc00 55%, #e8b100 100%);
  color: #111111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: var(--shadow-button);
  cursor: pointer;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 40%);
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(255, 204, 0, 0.28);
  filter: brightness(1.02);
}

.button:active {
  transform: translateY(0);
}

.header__button {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}

.cover__button {
  min-height: 52px;
  padding-inline: 28px;
  font-size: 16px;
}

/* =========================================================
   MAIN + GENERIC SECTIONS
   ========================================================= */

.main {
  position: relative;
  overflow: clip;
}

.main > section,
.main > .content,
.main .article,
.main .faq__content {
  position: relative;
}

.cover {
  position: relative;
  min-height: 600px;
  padding: 26px 0 56px;
  background:
    radial-gradient(circle at center, rgba(255, 204, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #050505 0%, #000000 100%);
  overflow: hidden;
}

.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.48) 34%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0.62) 68%, rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
}

.cover::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  width: min(940px, 72vw);
  aspect-ratio: 1.85 / 1;
  transform: translate(-50%, -50%);
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(255, 204, 0, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(30, 30, 30, 0.32) 0%, rgba(0, 0, 0, 0) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 18px 60px rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.cover__content {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.cover__wrap {
  width: min(540px, 100%);
  padding: 36px 0;
}

.cover h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.38);
}

.cover p {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.45;
  color: #f1f1f1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

.article,
.faq__content {
  padding-top: 56px;
  padding-bottom: 56px;
}

.article h2,
.faq__content h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 14px;
}

.article h2::after,
.faq__content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, #ffe788 100%);
  box-shadow: 0 6px 16px rgba(255, 204, 0, 0.16);
}

.article p + p {
  margin-top: 0.1em;
}

.article ul,
.article ol {
  margin: 1.2em 0 0;
  padding-left: 1.25rem;
}

.article li + li {
  margin-top: 0.65em;
}

.testimonial {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(25, 25, 25, 0.96) 0%, rgba(14, 14, 14, 0.96) 100%);
  box-shadow: var(--shadow-card);
}

.text-overlay {
  color: var(--text-soft);
}

/* =========================================================
   LISTING BLOCKS (container-only, no inner card styling)
   ========================================================= */

.list-new,
.sl-grid {
  width: min(var(--content-width), calc(100% - var(--content-gutter) * 2));
  margin: 36px auto 0;
  padding: 0;
}

.list-item {
  list-style: none;
  background: transparent;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq__content {
  position: relative;
}

.faq__list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.faq__item {
  position: relative;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.98) 0%, rgba(12, 12, 12, 0.98) 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq__item:hover {
  border-color: var(--border-accent);
}

.faq-item__title {
  position: relative;
  margin: 0;
  padding: 22px 64px 22px 22px;
  color: var(--text);
  cursor: pointer;
}

.faq-item__title::before,
.faq-item__title::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.faq-item__title::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq__item p,
.faq__item li {
  color: var(--text-muted);
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  position: relative;
  margin-top: 24px;
  background:
    linear-gradient(180deg, #0b0b0b 0%, #060606 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.24), transparent);
}

.footer__content {
  padding-top: 42px;
  padding-bottom: 46px;
  color: var(--text-muted);
}

.footer__content a {
  color: var(--text-soft);
}

.footer__content a:hover {
  color: var(--accent);
}

.footer-patrocinador {
  margin-top: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   UTILITIES / STATES
   ========================================================= */

.logo,
.header__logo,
.button,
.menu a,
.faq-item__title {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(255, 204, 0, 0.24);
  color: #ffffff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {
  :root {
    --content-width: 1120px;
    --content-gutter: 24px;
  }

  .menu ul {
    gap: 20px;
  }

  .cover {
    min-height: 540px;
  }

  .cover__content {
    min-height: 480px;
  }
}

@media (max-width: 992px) {
  :root {
    --content-gutter: 20px;
    --header-height: 70px;
  }

  .header__content {
    gap: 14px;
  }

  .header__menu {
    display: none;
  }

  .header__buttons {
    display: none;
  }

  .header__menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .cover {
    min-height: 500px;
    padding-top: 18px;
    padding-bottom: 44px;
  }

  .cover::after {
    width: min(760px, 88vw);
    top: 54%;
  }

  .cover__content {
    min-height: 450px;
    align-items: flex-end;
  }

  .cover__wrap {
    width: min(680px, 100%);
    padding-bottom: 12px;
  }

  .article,
  .faq__content {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --content-gutter: 16px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(28px, 8vw, 44px);
  }

  h2 {
    font-size: clamp(24px, 6vw, 34px);
  }

  .header__content {
    min-height: 64px;
  }

  .header__logo img,
  .logo img {
    max-height: 30px;
  }

  .cover {
    min-height: auto;
    padding: 22px 0 36px;
  }

  .cover::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.68) 36%, rgba(0, 0, 0, 0.86) 100%);
  }

  .cover::after {
    left: 50%;
    top: 34%;
    width: 100%;
    max-width: 94vw;
    aspect-ratio: 1.2 / 1;
    border-radius: 20px;
  }

  .cover__content {
    min-height: 430px;
    align-items: flex-end;
  }

  .cover__wrap {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .cover p {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .button,
  .cover__button,
  .header__button {
    width: 100%;
    max-width: 100%;
  }

  .article,
  .faq__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonial {
    padding: 20px;
    border-radius: 18px;
  }

  .faq__list {
    gap: 12px;
  }

  .faq-item__title {
    padding: 18px 54px 18px 18px;
    font-size: 17px;
  }

  .faq-item__title::before,
  .faq-item__title::after {
    right: 18px;
    width: 14px;
  }

  .list-new,
  .sl-grid {
    margin-top: 28px;
  }

  .footer__content {
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .footer-patrocinador {
    margin-top: 12px;
    padding-top: 18px;
  }
}

@media (max-width: 480px) {
  .header__menu-button {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .cover__content {
    min-height: 390px;
  }

  .cover p {
    font-size: 15px;
  }

  .article h2,
  .faq__content h2 {
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .article h2::after,
  .faq__content h2::after {
    width: 56px;
    height: 3px;
  }
}