:root {
  --bg: #070707;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #f3f3f3;
  --muted: #bdbdbd;
  --red: #ef1f3d;
  --radius: 24px;
  --container: 1180px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(239, 31, 61, 0.18), transparent 24%),
    radial-gradient(circle at left bottom, rgba(168, 8, 28, 0.2), transparent 28%),
    var(--bg);
}

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

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

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 7, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  transition: transform 0.4s ease;
}

.brand:hover {
  transform: translateY(-3px) scale(1.02);
}

.brand img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.menu {
  display: flex !important;
  gap: 30px !important;
}

.menu a {
  color: #bdbdbd;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.menu a:hover {
  color: #ffffff;
}

.nav-actions,
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* SECTIONS */
.section {
  padding: 88px 0;
}

.top-space {
  padding-top: 48px;
}

/* HERO */
.hero-section {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.72)),
    url("images/bg-art.png") center / cover no-repeat;
  opacity: 0.8;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 24%, rgba(239, 31, 61, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  align-items: end;
  gap: 0;
  min-height: calc(100vh - 82px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 156px 0;
}

.hero-copy h1,
.section-head h1,
.section-head h2,
.split-grid h1,
.split-grid h2 {
  margin: 14px 0 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--red);
  max-width: 13ch;
}

.panel-card h1,
.panel-card h2 {
  margin: 14px 0 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--red);
  max-width: none;
}

.panel-card h3 {
  margin: 14px 0 0;
}

.test {
  font-size: 3.8rem !important;
  margin-bottom: 40px !important;
  margin-top: 40px !important;
}

.dashboard-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-copy p,
.section-head p,
.panel-card p,
.split-grid p,
.question-item p {
  color: var(--muted);
}

.hero-copy p {
  font-size: 1.08rem;
  max-width: 60ch;
}

.hero-panel {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: visible;
}

.hero-panel img {
  position: relative;
  width: 1000px;
  max-width: none;
  transform: translateX(300px);
}

/* TYPO / UI */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffd8dd;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.glow-btn {
  position: relative;
  overflow: hidden;
}

.glow-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: 0.4s;
}

.glow-btn:hover::after {
  opacity: 1;
  animation: shine 1s linear;
}

@keyframes shine {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

/* CARDS */
.glass-card,
.panel-card,
.option-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cta-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.stats-grid,
.cards-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-card,
.panel-card,
.cta-card {
  border-radius: var(--radius);
  padding: 24px;
}

.glass-card {
  min-height: 128px;
  justify-content: flex-start;
  gap: 8px;
}

.glass-card strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.glass-card span {
  color: #f3f3f3;
  opacity: 0.95;
  line-height: 1.25;
}

/* LAYOUTS */
.soft-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 18px;
}

.stack.compact {
  gap: 12px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.section-head.narrow {
  max-width: 700px;
}

.section-head h2 {
  max-width: none;
}

/* BUTTONS */
.btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #ff1f3d, #ff4d64);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 999px;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform 0.8s ease;
  box-shadow:
    0 10px 25px rgba(239, 31, 61, 0.35),
    0 0 28px rgba(239, 31, 61, 0.18),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 20px rgba(239, 31, 62, 0.267),
    0 0 20px rgba(239, 31, 61, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #ff1f3d, #ff4d64);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform 0.8s ease;
  box-shadow:
    0 10px 25px rgba(239, 31, 61, 0.35),
    0 0 28px rgba(239, 31, 61, 0.18),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 20px rgba(239, 31, 62, 0.267),
    0 0 20px rgba(239, 31, 61, 0.4);
}

.btn-primario {
  background: linear-gradient(135deg, #ff1f1f3c, #ff4d4d6e);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform 0.8s ease;
  box-shadow:
    0 2px 10px rgba(239, 31, 61, 0.35),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.btn-primario:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #ff1f1f7a, #ff4d4db3);
  box-shadow:
    0 2px 15px rgba(239, 31, 61, 0.35),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  padding: 14px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
}

.btn-outline:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-small {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.9rem;
}

/* CONTENT */
.index {
  color: #ff6b7d;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.notice {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  margin-top: 16px;
}

.notice.success {
  border: 1px solid rgba(15, 157, 88, 0.35);
  background: rgba(15, 157, 88, 0.12);
}

.notice.danger {
  border: 1px solid rgba(217, 48, 37, 0.35);
  background: rgba(217, 48, 37, 0.12);
}

.spaced-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.history-card {
  margin-top: 24px;
}

.table-like {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr;
  gap: 12px;
  align-items: center;
}

.table-head {
  color: var(--muted);
  font-weight: 700;
}

.table-row {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.quiz-form {
  display: grid;
  gap: 18px;
}

.quiz-card h3 {
  margin: 14px 0 18px;
}

.option-card {
  justify-content: space-between;
}

.option-card input {
  accent-color: var(--red);
}

.container-fixed-actions {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.form-field input,
.form-field select,
.inline-form input {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  padding: 0 14px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-field input {
  width: auto;
  min-height: auto;
}

.top-gap {
  margin-top: 24px;
}

.big-number {
  font-size: 3rem;
  margin: 8px 0 0;
  font-weight: 800;
}

.question-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.simple-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 16px;
}

.score-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(239, 31, 61, 0.15);
  border: 1px solid rgba(239, 31, 61, 0.3);
  font-weight: 700;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.status-failed {
  background: rgba(217, 48, 37, 0.15);
  border: 1px solid rgba(217, 48, 37, 0.35);
}

.status-passed_waiting_release {
  background: rgba(255, 170, 0, 0.15);
  border: 1px solid rgba(255, 170, 0, 0.35);
}

.status-approved {
  background: rgba(15, 157, 88, 0.15);
  border: 1px solid rgba(15, 157, 88, 0.35);
}

.status-rejected {
  background: rgba(120, 120, 120, 0.15);
  border: 1px solid rgba(120, 120, 120, 0.35);
}

/* WHITELIST ACTIVE */
.whitelist-active-card {
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 48px;
  text-align: left;
}

.whitelist-active-card .pill {
  margin-bottom: 18px;
}

.whitelist-active-card .dashboard-title {
  line-height: 1.8;
  margin: 0 0 24px;
  color: var(--red);
}

.whitelist-active-card .notice {
  max-width: 760px;
  margin-top: 0;
}

.whitelist-active-actions {
  justify-content: flex-start;
  margin-top: 34px;
  gap: 16px;
}

/* RESPONSIVO */
@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 8px;
  }

  .hero-panel img {
    width: min(590px, 43vw);
    min-width: 360px;
    transform: translate(16px, 12px);
  }

  .cards-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-section {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .cards-grid-3,
  .cards-grid-4,
  .cta-card,
  .table-head,
  .table-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    text-align: center;
    align-items: center;
    gap: 28px;
    padding: 48px 0 24px;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .hero-copy h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-panel {
    justify-content: center;
    min-height: auto;
  }

  .hero-panel img {
    width: min(520px, 84vw);
    min-width: 0;
    transform: none;
  }

  .cta-card {
    display: grid;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  .whitelist-active-card {
    padding: 40px 28px;
  }

  .whitelist-active-card .dashboard-title {
    max-width: none;
  }

  .whitelist-active-actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 58px;
  }

  .hero-copy h1,
  .section-head h1,
  .section-head h2,
  .split-grid h1,
  .split-grid h2,
  .panel-card h1,
  .panel-card h2 {
    font-size: 2.2rem;
  }

  .glass-card,
  .panel-card,
  .cta-card {
    padding: 20px;
  }

  .whitelist-active-card {
    text-align: center;
  }
}

#inicio,
#jogar,
#pacotes {
  scroll-margin-top: 120px;
}

.white {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 3.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-up {
  transform: translateY(70px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.vip-showcase-section {
  position: relative;
  overflow: hidden;
}

.vip-showcase-head {
  text-align: center;
  margin-bottom: 38px;
}

.vip-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.vip-card {
  position: relative;
  min-height: 520px;
  margin-top: 20px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.12), transparent 38%),
    linear-gradient(180deg, rgba(12,16,29,0.96), rgba(6,8,16,0.98));
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.vip-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.42),
    0 0 30px rgba(255,255,255,0.06);
}

.vip-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.vip-card-glow {
  position: absolute;
  inset: auto -10% -20% auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.22;
  pointer-events: none;
}

.vip-silver .vip-card-glow {
  background: rgba(210, 218, 230, 0.95);
}

.vip-gold .vip-card-glow {
  background: rgba(255, 186, 46, 0.95);
}

.vip-diamond .vip-card-glow {
  background: rgba(134, 196, 255, 0.95);
}

.vip-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 18px;
}

.vip-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.vip-subtitle {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 30ch;
}

.vip-features {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 14px;
}

.vip-features li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}

.vip-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f5c14b;
  font-weight: 800;
}

.vip-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 26px;
}

.vip-card-footer strong {
  color: #fff;
  font-size: 0.95rem;
}

.vip-silver {
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.16), transparent 38%),
    linear-gradient(180deg, rgba(44, 47, 58, 0.98), rgba(11, 14, 22, 0.98));
}

.vip-gold {
  background:
    radial-gradient(circle at top, rgba(255,209,102,0.18), transparent 38%),
    linear-gradient(180deg, rgba(61, 42, 10, 0.98), rgba(17, 12, 5, 0.98));
}

.vip-diamond {
  background:
    radial-gradient(circle at top, rgba(170,220,255,0.18), transparent 38%),
    linear-gradient(180deg, rgba(63, 74, 98, 0.98), rgba(10, 13, 22, 0.98));
}

.vip-gold.featured {
  border-color: rgba(245, 193, 75, 0.35);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.42),
    0 0 40px rgba(245, 193, 75, 0.12);
}

.vip-gold.featured:hover {
  transform: translateY(-15px);
}

@media (max-width: 1100px) {
  .vip-showcase-grid {
    grid-template-columns: 1fr;
  }

  .vip-card,
  .vip-gold.featured {
    min-height: auto;
    transform: none;
  }

  .vip-card:hover,
  .vip-gold.featured:hover {
    transform: translateY(-8px);
  }
}

.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quiz-question-card {
  padding: 24px;
}

.quiz-question-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.quiz-question-title {
  margin: 0 0 18px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.quiz-options-list {
  display: grid;
  gap: 12px;
}

.quiz-option-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: var(--card);
  cursor: pointer;
  transition: 0.2s ease;
}

.quiz-option-item:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
}

.quiz-option-input {
  margin: 0;
  flex: 0 0 auto;
}

.quiz-option-text {
  display: block;
  line-height: 1.45;
}

.container-fixed-actions {
  position: sticky;
  bottom: 16px;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

/* STATIC CONVERSION HELPERS */
.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal[data-direction="left"] {
  transform: translate3d(-48px, 0, 0);
}

.reveal[data-direction="right"] {
  transform: translate3d(48px, 0, 0);
}

.reveal[data-direction="up"] {
  transform: translate3d(0, 32px, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 24px;
    padding: 40px 0 0;
  }

  .hero-copy {
    max-width: none;
    padding: 96px 0 0;
  }

  .hero-panel {
    justify-content: center;
  }

  .hero-panel img {
    width: min(100%, 780px);
    transform: none;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px !important;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
  }

  .cards-grid-4,
  .cards-grid-3,
  .vip-showcase-grid,
  .split-grid {
    grid-template-columns: 1fr !important;
  }

  .section {
    padding: 72px 0;
  }

  .test {
    font-size: clamp(2.4rem, 10vw, 3.8rem) !important;
  }
}
