:root {
  --bg-body: #e9e9e9;
  --bg-soft: #f4f4f4;
  --bg-card: #ffffff;
  --bg-dark: #000000;
  --bg-dark-2: #111111;
  --text-main: #1f1f1f;
  --text-soft: #5d5d5d;
  --text-light: #f5f5f5;
  --accent: #ffd200;
  --accent-hover: #ffdf47;
  --border: #d5d5d5;
  --border-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.06);
  --radius: 14px;
  --radius-sm: 10px;
  --content-width: 1720px;
  --section-space: clamp(32px, 5vw, 64px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--bg-body);
  color: var(--text-main);
  font-family: "Roboto Condensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  color: var(--text-soft);
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
  margin: 0 0 0.75rem;
  color: var(--text-main);
  font-family: "Roboto Condensed", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

h4,
.middle {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.content {
  width: min(100% - 54px, var(--content-width));
  margin-inline: auto;
}

.main {
  overflow: clip;
  background: var(--bg-body);
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #030303 0%, #000000 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.header__content {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.header__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.header__logo img {
  max-height: 40px;
  width: auto;
}

.menu {
  flex: 1 1 auto;
  min-width: 0;
}

.menu ul {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1vw, 28px);
  list-style: none;
  flex-wrap: wrap;
}

.menu li {
  list-style: none;
}

.menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible,
.menu .current-menu-item > a,
.menu .active > a {
  color: var(--accent);
}

.menu a:hover::after,
.menu a:focus-visible::after,
.menu .current-menu-item > a::after,
.menu .active > a::after {
  transform: scaleX(1);
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  margin-left: auto;
}

.header__button {
  min-width: 132px;
}

.header__buttons .button + .button {
  background: var(--accent);
  border-color: var(--accent);
  color: #141414;
}

.header__buttons .button:first-child {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.header__buttons .button:first-child:hover,
.header__buttons .button:first-child:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 210, 0, 0.08);
}

.header__menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.header__menu-button:hover,
.header__menu-button:focus-visible {
  border-color: rgba(255, 210, 0, 0.7);
  color: var(--accent);
}

/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  border: 1px solid #caa800;
  background: linear-gradient(180deg, #ffe04b 0%, #ffd200 60%, #e8bb00 100%);
  color: #111111;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 6px 14px rgba(255, 210, 0, 0.14);
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(180deg, #ffea74 0%, #ffd200 60%, #efc100 100%);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

/* COVER */

.cover {
  position: relative;
  padding-block: clamp(48px, 6vw, 88px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 34%),
    linear-gradient(180deg, #ededed 0%, #e5e5e5 100%);
  border-bottom: 1px solid #d9d9d9;
}

.cover__content {
  display: flex;
  align-items: center;
  min-height: 420px;
}

.cover__wrap {
  width: min(100%, 720px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #d8d8d8;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.cover__wrap p {
  max-width: 58ch;
  color: #4d4d4d;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
}

.cover__button {
  margin-top: 18px;
}

/* ARTICLE */

.article {
  padding-block: var(--section-space);
}

.article h2 {
  margin-bottom: 1rem;
}

.article p,
.article li {
  max-width: 78ch;
}

.article a:not(.button) {
  color: #111111;
  text-decoration: underline;
  text-decoration-color: rgba(255, 210, 0, 0.8);
  text-underline-offset: 3px;
}

.article a:not(.button):hover,
.article a:not(.button):focus-visible {
  color: #000000;
  text-decoration-color: #000000;
}

.article ul,
.article ol {
  padding-left: 1.2rem;
}

.article li + li {
  margin-top: 0.5rem;
}

.testimonial {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius);
  border: 1px solid #d7d7d7;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  box-shadow: var(--shadow-soft);
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent) 0%, #f2bf00 100%);
}

.text-overlay {
  position: relative;
  z-index: 1;
}

/* FORMS */

form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid #cccccc;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text-main);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8a8a8a;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #caa800;
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.18);
}

/* FAQ */

.faq__content {
  padding-block: var(--section-space);
}

.faq__list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.faq__item {
  list-style: none;
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.faq__item:hover {
  transform: translateY(-1px);
  border-color: #cdbb63;
}

.faq-item__title {
  position: relative;
  margin: 0;
  padding: 18px 58px 18px 20px;
  color: #1b1b1b;
  cursor: pointer;
}

.faq-item__title::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #d0b100;
  background: rgba(255, 210, 0, 0.14);
  color: #111111;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.faq__item p,
.faq__item .text-overlay,
.faq__item div:not([class]) {
  padding: 0 20px 18px;
  margin: 0;
}

/* LISTING CONTAINERS ONLY */

.list-new,
.sl-grid {
  width: 100%;
  margin-top: clamp(22px, 3vw, 34px);
}

.list-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.list-item {
  width: 100%;
  min-width: 0;
}

.sl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

/* FOOTER */

.footer {
  margin-top: clamp(42px, 5vw, 72px);
  background: linear-gradient(180deg, #0f0f0f 0%, #000000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.footer__content {
  display: grid;
  gap: 22px;
  padding-block: 30px;
}

.footer,
.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--accent);
}

.footer-patrocinador {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* SPACING / HELPERS */

.header + .main .cover:first-child {
  margin-top: 0;
}

.main section + section {
  margin-top: 0;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .content {
    width: min(100% - 36px, var(--content-width));
  }

  .menu ul {
    gap: 16px;
  }

  .header__button {
    min-width: 116px;
  }

  .cover__content {
    min-height: 360px;
  }
}

@media (max-width: 992px) {
  .header__content {
    min-height: 68px;
    gap: 14px;
  }

  .header__menu {
    display: none;
  }

  .header__menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header__buttons {
    margin-left: 0;
  }

  .cover {
    padding-block: 44px;
  }

  .cover__content {
    min-height: auto;
  }

  .cover__wrap {
    width: 100%;
  }

  .sl-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .content {
    width: min(100% - 24px, var(--content-width));
  }

  .header__content {
    min-height: 64px;
  }

  .header__logo img {
    max-height: 34px;
  }

  .header__buttons .button {
    min-width: auto;
    padding-inline: 1rem;
  }

  .article,
  .faq__content,
  .cover {
    padding-block: 32px;
  }

  .cover__wrap,
  .testimonial {
    padding: 20px 18px;
  }

  .faq-item__title {
    padding: 16px 50px 16px 16px;
  }

  .faq__item p,
  .faq__item .text-overlay,
  .faq__item div:not([class]) {
    padding: 0 16px 16px;
  }

  .footer__content {
    padding-block: 24px;
  }

  .footer-patrocinador {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .header__content {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  .header__menu-button {
    order: 3;
  }

  .header__buttons {
    width: 100%;
    justify-content: flex-start;
    order: 4;
  }

  .button,
  .cover__button {
    width: 100%;
  }

  .sl-grid {
    grid-template-columns: 1fr 1fr;
  }

  input,
  select,
  textarea {
    min-height: 46px;
  }
}

@media (max-width: 420px) {
  .sl-grid {
    grid-template-columns: 1fr;
  }
}