:root {
  --red: #aa151b;
  --red-dark: #7f0f14;
  --yellow: #f1bf00;
  --yellow-soft: #fff4bf;
  --cream: #fffaf2;
  --white: #ffffff;
  --ink: #1f2937;
  --muted: #667085;
  --line: rgba(170, 21, 27, 0.12);
  --shadow: 0 22px 60px rgba(127, 15, 20, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(241,191,0,0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(170,21,27,0.07), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%);
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.flag-top {
  height: 15px;
  background: linear-gradient(
    to bottom,
    var(--red) 0%,
    var(--red) 25%,
    var(--yellow) 25%,
    var(--yellow) 75%,
    var(--red) 75%,
    var(--red) 100%
  );
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,250,242,0.91));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(170,21,27,0.10);
  box-shadow: 0 12px 28px rgba(127, 15, 20, 0.06);
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand img {
  width: 220px;
  border-radius: 12px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--red-dark);
  border: 1px solid rgba(241, 191, 0, 0.50);
  font-weight: 900;
  font-size: 0.92rem;
}

.hero {
  padding: 34px 0 24px;
}

.hero-card {
  min-height: 430px;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(127, 15, 20, 0.16);
  border: 1px solid rgba(241,191,0,0.34);
  background:
    linear-gradient(90deg, rgba(20,28,40,0.66), rgba(20,28,40,0.28), rgba(20,28,40,0.08)),
    url("assets/banner-espanha.webp");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 720px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(241,191,0,0.20);
  border: 1px solid rgba(241,191,0,0.42);
  color: #fff7c7;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.22);
}

.hero p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 1.06rem;
  max-width: 650px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.24);
  color: #ffffff;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.intro {
  padding: 20px 0 30px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.intro-card,
.form-card,
.form-block,
.modal-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 20px;
}

.intro-card strong {
  display: block;
  color: var(--red-dark);
  margin-bottom: 7px;
  font-size: 1rem;
}

.intro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-section {
  padding: 34px 0 80px;
}

.form-card {
  padding: 26px;
  border-radius: var(--radius-xl);
}

.progress-wrap {
  padding: 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(170,21,27,0.08), rgba(241,191,0,0.20));
  border: 1px solid rgba(170,21,27,0.08);
  margin-bottom: 20px;
}

.progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--red-dark);
  font-weight: 900;
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(127,15,20,0.10);
  overflow: hidden;
}

#progressFill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transition: width 0.25s ease;
}

.form-block {
  padding: 24px;
  margin-top: 20px;
}

.section-title {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.section-title > span {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--yellow);
  font-weight: 900;
}

.section-title h2 {
  margin: 0 0 4px;
  color: var(--red-dark);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  letter-spacing: -0.02em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  color: var(--red-dark);
  font-weight: 900;
  margin-bottom: 7px;
  font-size: 0.93rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(170,21,27,0.18);
  border-radius: 16px;
  background: #fffdf8;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(170,21,27,0.55);
  box-shadow: 0 0 0 4px rgba(170,21,27,0.09);
  background: #ffffff;
}

.visa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.visa-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 128px;
  padding: 18px;
  margin: 0;
  border-radius: 20px;
  background: #fffdf8;
  border: 1px solid rgba(170,21,27,0.12);
  box-shadow: 0 12px 26px rgba(127,15,20,0.06);
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.visa-option:hover {
  transform: translateY(-2px);
  border-color: rgba(170,21,27,0.28);
  box-shadow: 0 18px 34px rgba(127,15,20,0.11);
}

.visa-option input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--red);
}

.visa-option strong {
  display: block;
  color: var(--red-dark);
  margin-bottom: 6px;
  font-size: 1rem;
}

.visa-option small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

.visa-option:has(input:checked) {
  border-color: rgba(170,21,27,0.55);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,244,191,0.55));
  box-shadow: 0 18px 34px rgba(127,15,20,0.14);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: var(--muted);
  margin: 0;
  padding: 16px;
  border-radius: 16px;
  background: #fffdf8;
  border: 1px solid rgba(170,21,27,0.10);
}

.consent input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--red);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 30px rgba(170,21,27,0.22);
}

.btn-secondary {
  color: var(--red-dark);
  background: var(--yellow-soft);
  border: 1px solid rgba(241,191,0,0.55);
}

.btn-email {
  color: var(--red-dark);
  background: #ffffff;
  border: 1px solid rgba(170,21,27,0.16);
}

.form-note {
  text-align: right;
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(17,24,39,0.55);
  z-index: 999;
}

.modal.show {
  display: grid;
}

.modal-box {
  width: min(520px, 100%);
  padding: 26px;
  position: relative;
}

.modal-box h2 {
  margin: 0 0 10px;
  color: var(--red-dark);
}

.modal-box p {
  margin: 0 0 18px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  color: var(--red-dark);
  cursor: pointer;
}

@media (max-width: 900px) {
  .intro-grid,
  .grid,
  .visa-grid {
    grid-template-columns: 1fr;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    width: 190px;
  }

  .hero-card {
    min-height: 380px;
    padding: 26px;
    border-radius: 28px;
  }

  .form-card,
  .form-block {
    padding: 18px;
  }

  .section-title {
    gap: 12px;
  }

  .section-title > span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .form-note {
    text-align: left;
  }
}



/* ===== Alto relevo e brilho premium no briefing ===== */
.header-badge,
.hero-points span,
.progress-wrap,
.section-title > span,
.visa-option,
.btn,
.btn-email,
.intro-card,
.form-block,
.consent {
  position: relative;
  overflow: hidden;
}

.header-badge::after,
.hero-points span::after,
.progress-wrap::after,
.section-title > span::after,
.visa-option::after,
.btn::after,
.btn-email::after,
.intro-card::after,
.form-block::after,
.consent::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.26) 0%,
    rgba(255,255,255,0.10) 22%,
    rgba(255,255,255,0.02) 46%,
    rgba(0,0,0,0.03) 100%
  );
  pointer-events: none;
}

.header-badge::before,
.hero-points span::before,
.section-title > span::before,
.visa-option::before,
.btn::before,
.btn-email::before,
.intro-card::before,
.form-block::before,
.consent::before {
  content: "";
  position: absolute;
  top: 0;
  left: -36%;
  width: 40%;
  height: 100%;
  transform: skewX(-24deg);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.10) 38%,
    rgba(255,255,255,0.42) 52%,
    rgba(255,255,255,0.10) 66%,
    rgba(255,255,255,0.00) 100%
  );
  pointer-events: none;
  opacity: 0.9;
}

.header-badge {
  box-shadow:
    0 12px 26px rgba(127, 15, 20, 0.12),
    inset 0 2px 0 rgba(255,255,255,0.34),
    inset 0 -3px 0 rgba(0,0,0,0.08);
}

.hero-points span {
  box-shadow:
    0 10px 22px rgba(0,0,0,0.14),
    inset 0 2px 0 rgba(255,255,255,0.24),
    inset 0 -3px 0 rgba(0,0,0,0.08);
}

.progress-wrap,
.intro-card,
.form-block {
  box-shadow:
    0 18px 42px rgba(127, 15, 20, 0.10),
    inset 0 2px 0 rgba(255,255,255,0.34),
    inset 0 -3px 0 rgba(0,0,0,0.04);
}

.section-title > span {
  box-shadow:
    0 12px 24px rgba(127, 15, 20, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.36),
    inset 0 -3px 0 rgba(0,0,0,0.12);
}

.visa-option {
  box-shadow:
    0 14px 28px rgba(127, 15, 20, 0.08),
    inset 0 2px 0 rgba(255,255,255,0.36),
    inset 0 -3px 0 rgba(0,0,0,0.04);
}

.visa-option:hover {
  box-shadow:
    0 18px 34px rgba(127, 15, 20, 0.12),
    inset 0 2px 0 rgba(255,255,255,0.40),
    inset 0 -3px 0 rgba(0,0,0,0.05);
}

.visa-option:has(input:checked) {
  box-shadow:
    0 20px 38px rgba(127, 15, 20, 0.16),
    inset 0 2px 0 rgba(255,255,255,0.42),
    inset 0 -3px 0 rgba(0,0,0,0.06);
}

.consent {
  box-shadow:
    0 12px 24px rgba(127, 15, 20, 0.08),
    inset 0 2px 0 rgba(255,255,255,0.36),
    inset 0 -3px 0 rgba(0,0,0,0.04);
}

.btn,
.btn-email {
  box-shadow:
    0 14px 30px rgba(127, 15, 20, 0.16),
    inset 0 2px 0 rgba(255,255,255,0.34),
    inset 0 -3px 0 rgba(0,0,0,0.12);
}

.btn:hover,
.btn-email:hover {
  box-shadow:
    0 18px 36px rgba(127, 15, 20, 0.22),
    inset 0 2px 0 rgba(255,255,255,0.40),
    inset 0 -3px 0 rgba(0,0,0,0.14);
}

.btn-primary {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02)),
    linear-gradient(135deg, var(--red), var(--red-dark));
}

.btn-primary:hover {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.03)),
    linear-gradient(135deg, #c71d25, #7f0f14);
}

.btn-secondary {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.05)),
    linear-gradient(180deg, #fff8da, #ffeeb0);
}

.btn-email {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.10)),
    linear-gradient(180deg, #ffffff, #fff8ea);
}

.header-badge,
.hero-points span {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(255,244,191,0.96), rgba(255,233,160,0.92));
}

.section-title > span {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02)),
    linear-gradient(135deg, var(--red), var(--red-dark));
}

@keyframes glossySweepBriefing {
  0% { left: -40%; }
  100% { left: 130%; }
}

.header-badge:hover::before,
.hero-points span:hover::before,
.section-title > span:hover::before,
.visa-option:hover::before,
.btn:hover::before,
.btn-email:hover::before,
.intro-card:hover::before,
.form-block:hover::before,
.consent:hover::before {
  animation: glossySweepBriefing 0.9s ease forwards;
}



/* ===== Botões amarelos premium no topo do briefing ===== */
.hero-points span {
  position: relative;
  overflow: hidden;
  color: var(--red-dark) !important;
  border: 1px solid rgba(241, 191, 0, 0.92) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.08) 26%, rgba(255,255,255,0.00) 54%),
    linear-gradient(180deg, #ffe889 0%, #f1bf00 48%, #d89e00 100%) !important;
  box-shadow:
    0 16px 30px rgba(120, 80, 0, 0.22),
    inset 0 2px 0 rgba(255,255,255,0.52),
    inset 0 -4px 0 rgba(153, 108, 0, 0.24) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,0.28);
  font-weight: 900;
}

.hero-points span::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.32) 0%,
    rgba(255,255,255,0.10) 24%,
    rgba(255,255,255,0.00) 52%,
    rgba(0,0,0,0.04) 100%
  );
  pointer-events: none;
}

.hero-points span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -38%;
  width: 42%;
  height: 100%;
  transform: skewX(-24deg);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0.46) 52%,
    rgba(255,255,255,0.10) 66%,
    rgba(255,255,255,0.00) 100%
  );
  opacity: 0.95;
  pointer-events: none;
}

.hero-points span:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 36px rgba(120, 80, 0, 0.28),
    inset 0 2px 0 rgba(255,255,255,0.60),
    inset 0 -4px 0 rgba(153, 108, 0, 0.28) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.40) 0%, rgba(255,255,255,0.12) 26%, rgba(255,255,255,0.00) 54%),
    linear-gradient(180deg, #ffec99 0%, #f5c400 48%, #dda100 100%) !important;
}

@keyframes glossySweepYellow {
  0% { left: -40%; }
  100% { left: 130%; }
}

.hero-points span:hover::before {
  animation: glossySweepYellow 0.9s ease forwards;
}



/* ===== Todos os botões do briefing com amarelo premium ===== */
.btn,
.btn-primary,
.btn-secondary,
.btn-email,
.actions .btn,
.modal-box .btn,
button.btn,
a.btn {
  position: relative;
  overflow: hidden;
  color: var(--red-dark) !important;
  border: 1px solid rgba(241, 191, 0, 0.92) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.08) 26%, rgba(255,255,255,0.00) 54%),
    linear-gradient(180deg, #ffe889 0%, #f1bf00 48%, #d89e00 100%) !important;
  box-shadow:
    0 16px 30px rgba(120, 80, 0, 0.22),
    inset 0 2px 0 rgba(255,255,255,0.52),
    inset 0 -4px 0 rgba(153, 108, 0, 0.24) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,0.28);
  font-weight: 900;
}

.btn::after,
.btn-primary::after,
.btn-secondary::after,
.btn-email::after,
.actions .btn::after,
.modal-box .btn::after,
button.btn::after,
a.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.32) 0%,
    rgba(255,255,255,0.10) 24%,
    rgba(255,255,255,0.00) 52%,
    rgba(0,0,0,0.04) 100%
  );
  pointer-events: none;
}

.btn::before,
.btn-primary::before,
.btn-secondary::before,
.btn-email::before,
.actions .btn::before,
.modal-box .btn::before,
button.btn::before,
a.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -38%;
  width: 42%;
  height: 100%;
  transform: skewX(-24deg);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0.46) 52%,
    rgba(255,255,255,0.10) 66%,
    rgba(255,255,255,0.00) 100%
  );
  opacity: 0.95;
  pointer-events: none;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-email:hover,
.actions .btn:hover,
.modal-box .btn:hover,
button.btn:hover,
a.btn:hover {
  transform: translateY(-2px);
  color: var(--red-dark) !important;
  box-shadow:
    0 20px 36px rgba(120, 80, 0, 0.28),
    inset 0 2px 0 rgba(255,255,255,0.60),
    inset 0 -4px 0 rgba(153, 108, 0, 0.28) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.40) 0%, rgba(255,255,255,0.12) 26%, rgba(255,255,255,0.00) 54%),
    linear-gradient(180deg, #ffec99 0%, #f5c400 48%, #dda100 100%) !important;
}

@keyframes glossySweepAllButtons {
  0% { left: -40%; }
  100% { left: 130%; }
}

.btn:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-email:hover::before,
.actions .btn:hover::before,
.modal-box .btn:hover::before,
button.btn:hover::before,
a.btn:hover::before {
  animation: glossySweepAllButtons 0.9s ease forwards;
}



/* ===== Marcadores 01 a 08 em vermelho premium ===== */
.section-title > span {
  position: relative;
  overflow: hidden;
  color: #ffe9a6 !important;
  border: 1px solid rgba(241, 191, 0, 0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.03) 26%, rgba(255,255,255,0.00) 54%),
    linear-gradient(180deg, #c81c23 0%, #aa151b 48%, #7f0f14 100%) !important;
  box-shadow:
    0 14px 28px rgba(127, 15, 20, 0.22),
    inset 0 2px 0 rgba(255,255,255,0.32),
    inset 0 -4px 0 rgba(74, 8, 12, 0.28) !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.18);
  font-weight: 900;
  isolation: isolate;
}

.section-title > span::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.28) 0%,
    rgba(255,255,255,0.10) 24%,
    rgba(255,255,255,0.00) 52%,
    rgba(0,0,0,0.05) 100%
  );
  pointer-events: none;
  z-index: -1;
}

.section-title > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -38%;
  width: 42%;
  height: 100%;
  transform: skewX(-24deg);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0.40) 52%,
    rgba(255,255,255,0.10) 66%,
    rgba(255,255,255,0.00) 100%
  );
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
}

.section-title > span:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(127, 15, 20, 0.28),
    inset 0 2px 0 rgba(255,255,255,0.38),
    inset 0 -4px 0 rgba(74, 8, 12, 0.32) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.05) 26%, rgba(255,255,255,0.00) 54%),
    linear-gradient(180deg, #d42028 0%, #b1161d 48%, #861015 100%) !important;
}

@keyframes glossySweepNumbers {
  0% { left: -40%; }
  100% { left: 130%; }
}

.section-title > span:hover::before {
  animation: glossySweepNumbers 0.9s ease forwards;
}
