/* ==========================================================================
   style.css — Global styles
   Reference: dark Solverde-style casino layout
   ========================================================================== */

:root {
  --color-bg: #00091c;
  --color-bg-deep: #000613;
  --color-header: #02091d;
  --color-header-2: #30384f;
  --color-card: #10182d;
  --color-card-2: #171f35;
  --color-border: rgba(255, 255, 255, 0.10);

  --color-text: #ffffff;
  --color-text-soft: #cbd3e3;
  --color-text-muted: #8f99b3;

  --color-accent: #00e58a;
  --color-accent-hover: #00c977;
  --color-accent-dark: #071b17;

  --color-yellow: #ffcf2e;
  --color-danger: #ff4d5e;

  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.28);
  --shadow-button: 0 10px 24px rgba(0, 229, 138, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --content-width: 1510px;
  --section-gap: 48px;

  --font-main: "Inter", "Montserrat", "Arial", sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--color-accent);
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin-top: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
.title {
  margin: 0 0 18px;
  color: var(--color-text);
  font-family: var(--font-main);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(36px, 4.4vw, 68px);
}

h2 {
  font-size: clamp(28px, 3vw, 44px);
}

h3 {
  font-size: clamp(22px, 2vw, 30px);
}

h4,
.title.middle {
  font-size: clamp(18px, 1.4vw, 22px);
}

p {
  margin: 0 0 18px;
  color: var(--color-text-soft);
  font-weight: 500;
}

p:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: 900;
}

small {
  color: var(--color-text-muted);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.content {
  width: min(var(--content-width), calc(100% - 48px));
  margin-inline: auto;
}

.main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 229, 138, 0.07), transparent 28%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-deep) 100%);
}

section {
  position: relative;
}

.article,
.faq__content {
  margin-top: var(--section-gap);
  margin-bottom: var(--section-gap);
}

/* Containers only — external files style the cards themselves */
.list-new,
.sl-grid {
  width: min(var(--content-width), calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 22px;
  border: 2px solid var(--color-accent);
  border-radius: 6px;
  background: var(--color-accent);
  color: #00150d;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-button);
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #00150d;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 229, 138, 0.32);
  outline: none;
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 229, 138, 0.22);
}

.header__button:first-child {
  background: transparent;
  color: var(--color-accent);
  box-shadow: none;
}

.header__button:first-child:hover,
.header__button:first-child:focus-visible {
  background: rgba(0, 229, 138, 0.12);
  color: var(--color-accent);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header__content {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo,
.header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img,
.header__logo img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.header__menu {
  flex: 1 1 auto;
}

.menu ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu li {
  margin: 0;
  padding: 0;
}

.menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--color-accent);
  outline: none;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header__button {
  min-height: 40px;
  padding: 11px 18px;
}

/* Mobile burger */
.header__menu-button {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.10);
  color: var(--color-text);
}

.header__menu-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.header__menu-button svg {
  width: 34px;
  height: 34px;
}

.header__menu-button rect,
.header__menu-button .path {
  fill: currentColor;
}

/* ==========================================================================
   Cover / Hero
   ========================================================================== */

.cover {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 72px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 9, 28, 0.96) 0%, rgba(0, 9, 28, 0.78) 48%, rgba(0, 9, 28, 0.40) 100%),
    radial-gradient(circle at 76% 38%, rgba(0, 229, 138, 0.18), transparent 34%),
    var(--color-bg);
}

.cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 9, 28, 0) 0%, var(--color-bg) 100%);
}

.cover__content {
  position: relative;
  z-index: 2;
}

.cover__wrap {
  max-width: 720px;
}

.cover__wrap h1 {
  margin-bottom: 22px;
  text-transform: uppercase;
}

.cover__wrap p,
.cover__wrap-text {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--color-text-soft);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 600;
}

.cover__button {
  min-height: 46px;
  padding-inline: 26px;
}

/* ==========================================================================
   Generic article content
   ========================================================================== */

.article {
  padding: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(16, 24, 45, 0.72);
  box-shadow: var(--shadow-soft);
}

.article h2,
.article h3,
.article h4 {
  color: var(--color-text);
}

.article a:not(.button) {
  color: var(--color-accent);
  font-weight: 800;
}

.article a:not(.button):hover {
  color: #52ffb6;
}

.article ul,
.article ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--color-text-soft);
  font-weight: 500;
}

.article li::marker {
  color: var(--color-accent);
}

.article img {
  border-radius: var(--radius-md);
}

.testimonial {
  position: relative;
  min-height: 280px;
  margin-top: 28px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 229, 138, 0.16), rgba(255, 207, 46, 0.08)),
    var(--color-card);
  border: 1px solid var(--color-border);
}

.text-overlay {
  max-width: 580px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(0, 6, 19, 0.78);
  backdrop-filter: blur(10px);
  color: var(--color-text);
}

/* ==========================================================================
   Forms
   ========================================================================== */

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: var(--color-header-2);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 138, 0.18);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq__content {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(16, 24, 45, 0.72);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.faq__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq__item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-card-2);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.faq-item__title {
  position: relative;
  margin: 0;
  padding: 20px 58px 20px 22px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.faq-item__title::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(0, 229, 138, 0.12);
  color: var(--color-accent);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.faq-item__title:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.03);
}

.faq__item.is-open .faq-item__title,
.faq__item.active .faq-item__title {
  color: var(--color-accent);
}

.faq__item.is-open .faq-item__title::after,
.faq__item.active .faq-item__title::after {
  content: "−";
  background: var(--color-accent);
  color: #00150d;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  margin-top: 64px;
  background:
    radial-gradient(circle at 85% 0%, rgba(0, 229, 138, 0.08), transparent 26%),
    #050814;
  color: var(--color-text);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__content {
  padding: 46px 0;
}

.footer-patrocinador {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-patrocinador p {
  margin-bottom: 16px;
  color: var(--color-text-soft);
  font-weight: 800;
}

.footer-patrocinador ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-patrocinador li {
  margin: 0;
  padding: 0;
}

.footer-patrocinador a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 800;
}

.footer-patrocinador a:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
  :root {
    --content-width: 1120px;
  }

  .header__content {
    gap: 18px;
  }

  .menu ul {
    gap: 16px;
  }

  .menu a {
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .content,
  .list-new,
  .sl-grid {
    width: calc(100% - 32px);
  }

  .header__content {
    min-height: 68px;
  }

  .header__menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .header__menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    padding: 18px 16px 24px;
    background: var(--color-header);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .header__menu.is-open,
  .header__menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .menu a {
    justify-content: center;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
  }

  .header__buttons {
    display: none;
  }

  .cover {
    min-height: 440px;
    padding: 56px 0;
  }

  .article,
  .faq__content {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-gap: 32px;
  }

  body {
    font-size: 15px;
  }

  .content,
  .list-new,
  .sl-grid {
    width: calc(100% - 24px);
  }

  .header__content {
    min-height: 64px;
  }

  .logo img,
  .header__logo img {
    max-height: 34px;
  }

  .header__menu {
    top: 64px;
    max-height: calc(100vh - 64px);
  }

  .menu ul {
    grid-template-columns: 1fr;
  }

  .cover {
    min-height: 380px;
    padding: 44px 0;
  }

  .cover__wrap p,
  .cover__wrap-text {
    font-size: 16px;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .article,
  .faq__content {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }

  .testimonial {
    min-height: auto;
    padding: 18px;
  }

  .text-overlay {
    padding: 18px;
  }

  .faq-item__title {
    padding: 18px 52px 18px 18px;
    font-size: 16px;
  }

  .footer {
    margin-top: 42px;
  }

  .footer__content {
    padding: 34px 0;
  }

  .footer-patrocinador {
    padding: 20px;
    border-radius: var(--radius-md);
  }

  .footer-patrocinador ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }

  .footer-patrocinador a {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .footer-patrocinador ul {
    grid-template-columns: 1fr;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
  --page-bg: #030b1f;
  --header-bg: #020817;
  --panel-bg: #111a31;
  --panel-bg-soft: #343b54;
  --text-main: #ffffff;
  --text-muted: #aeb6c8;
  --text-dark: #001327;
  --accent: #00e596;
  --accent-hover: #22f5aa;
  --accent-active: #00bf7c;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --content-width: 1696px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --header-height: 46px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--accent);
  color: var(--text-dark);
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
  margin: 0 0 18px;
  color: var(--text-main);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 76px);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(26px, 3vw, 44px);
}

h3 {
  font-size: clamp(22px, 2.4vw, 34px);
}

h4,
.title.middle {
  font-size: clamp(18px, 1.6vw, 24px);
}

ul,
ol {
  margin-top: 0;
}

.content {
  width: min(100% - 48px, var(--content-width));
  margin-inline: auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
}

.header__content {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo,
.header__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--text-main);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.logo:hover,
.header__logo:hover {
  color: var(--text-main);
  opacity: 0.9;
}

.menu,
.header__menu {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.menu a,
.header__menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu a::after,
.header__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.menu a:hover,
.header__menu a:hover {
  color: var(--accent);
}

.menu a:hover::after,
.header__menu a:hover::after {
  transform: scaleX(1);
}

.header__buttons {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__button {
  min-height: 32px;
  padding-inline: 18px;
  font-size: 12px;
}

.header__menu-button {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--panel-bg-soft);
  color: var(--text-main);
}

.header__menu-button::before,
.header__menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.header__menu-button::after {
  margin-top: 12px;
  box-shadow: none;
}

/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--accent-hover) 0%, var(--accent) 55%, var(--accent-active) 100%);
  color: #001c24;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 229, 150, 0.18);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    background-color 0.18s ease;
}

.button:hover {
  color: #001c24;
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 229, 150, 0.28);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(0, 229, 150, 0.18);
}

/* FORMS */

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #1d263d;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input,
select {
  min-height: 44px;
  padding: 0 16px;
}

textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  background: #202a44;
  box-shadow: 0 0 0 3px rgba(0, 229, 150, 0.14);
}

/* MAIN */

.main {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -12%, rgba(36, 57, 100, 0.35) 0, rgba(3, 11, 31, 0) 32%),
    var(--page-bg);
}

/* COVER */

.cover {
  position: relative;
  padding: 82px 0 72px;
  background:
    linear-gradient(90deg, rgba(3, 11, 31, 0.98) 0%, rgba(3, 11, 31, 0.78) 48%, rgba(3, 11, 31, 0.45) 100%),
    radial-gradient(circle at 76% 46%, rgba(0, 229, 150, 0.18) 0, rgba(0, 229, 150, 0) 34%);
}

.cover__content {
  position: relative;
  z-index: 1;
}

.cover__wrap {
  max-width: 760px;
}

.cover p {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.65;
}

.cover__button {
  min-height: 42px;
  padding-inline: 22px;
}

/* ARTICLE / CONTENT BLOCKS */

.article {
  padding-top: 58px;
  padding-bottom: 58px;
}

.article > *:last-child {
  margin-bottom: 0;
}

.article h2,
.article h3 {
  margin-top: 34px;
}

.article h2:first-child,
.article h3:first-child {
  margin-top: 0;
}

.article a:not(.button) {
  color: var(--accent);
  font-weight: 800;
}

.article a:not(.button):hover {
  color: var(--accent-hover);
}

.article ul,
.article ol {
  margin-bottom: 24px;
  padding-left: 22px;
  color: var(--text-muted);
}

.article li {
  margin-bottom: 10px;
}

.testimonial {
  position: relative;
  overflow: hidden;
  margin: 34px 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(52, 59, 84, 0.96), rgba(17, 26, 49, 0.96)),
    var(--panel-bg);
  box-shadow: var(--shadow);
}

.text-overlay {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: var(--text-main);
}

.text-overlay p:last-child {
  margin-bottom: 0;
}

/* LISTING CONTAINERS ONLY */

.list-new,
.sl-grid {
  width: 100%;
  margin-top: 26px;
  margin-bottom: 42px;
}

/* FAQ */

.faq__content {
  padding-top: 56px;
  padding-bottom: 64px;
}

.faq__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #111a31;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.faq__item:hover {
  border-color: rgba(0, 229, 150, 0.7);
  background: #17213a;
  transform: translateY(-1px);
}

.faq-item__title {
  position: relative;
  margin: 0;
  padding: 20px 58px 20px 22px;
  color: var(--text-main);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
}

.faq-item__title::before,
.faq-item__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.faq-item__title::after {
  transform: translateY(-50%) rotate(90deg);
}

/* FOOTER */

.footer {
  background: #020817;
  border-top: 1px solid var(--border);
}

.footer__content {
  padding-top: 42px;
  padding-bottom: 42px;
}

.footer a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.footer a:hover {
  color: var(--accent);
}

.footer-patrocinador {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 18px 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ACCESSIBILITY */

:focus-visible {
  outline: 3px solid rgba(0, 229, 150, 0.45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .header__content {
    gap: 20px;
  }

  .menu,
  .header__menu {
    gap: 18px;
  }

  .menu a,
  .header__menu a {
    font-size: 11px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 56px;
  }

  .content {
    width: min(100% - 36px, var(--content-width));
  }

  .header__menu,
  .menu.header__menu {
    display: none;
  }

  .header__menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header__buttons {
    margin-left: 0;
  }

  .cover {
    padding: 64px 0 58px;
  }

  .article,
  .faq__content {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .content {
    width: min(100% - 28px, var(--content-width));
  }

  .logo,
  .header__logo {
    font-size: 18px;
  }

  .header__buttons {
    display: none;
  }

  .cover {
    padding: 48px 0;
  }

  .cover p {
    font-size: 16px;
  }

  .button {
    min-height: 40px;
    padding-inline: 18px;
  }

  .testimonial {
    padding: 22px;
    border-radius: 12px;
  }

  .faq-item__title {
    padding: 18px 52px 18px 18px;
    font-size: 16px;
  }

  .faq-item__title::before,
  .faq-item__title::after {
    right: 18px;
  }

  .footer__content {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .footer-patrocinador {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .content {
    width: min(100% - 24px, var(--content-width));
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .cover {
    padding: 38px 0;
  }

  .article,
  .faq__content {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .cover__button,
  .button {
    width: 100%;
  }

  .list-new,
  .sl-grid {
    margin-top: 20px;
    margin-bottom: 32px;
  }
}