/* V-Indo Beta Landing — Roboto, Apple-inspired layout */

:root {
  --violet-50: #f5f3ff;
  --violet-100: #ede9fe;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --violet-900: #4c1d95;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-2xl: 2rem;
  --shadow-soft: 0 24px 48px -12px rgba(109, 40, 217, 0.12);
  --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.06);
  --max-w: 72rem;
  --header-h: 4.5rem;
  --live-strip-h: 2.25rem;
  --nav-top: calc(var(--header-h) + var(--live-strip-h));
  --font: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--violet-500);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--violet-700);
  color: var(--white);
  border-radius: 0.5rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

/* ── Header ─────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 0.5rem 0.75rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--violet-700);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  gap: 2rem;
  justify-self: center;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current='true'] {
  color: var(--violet-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--violet-700);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.25);
}

.btn--primary:hover {
  background: var(--violet-600);
}

.btn--secondary {
  background: var(--white);
  color: var(--violet-700);
  border: 1px solid var(--slate-200);
}

.btn--secondary:hover {
  border-color: var(--violet-500);
}

.btn--white {
  background: var(--white);
  color: var(--violet-700);
}

.btn--full {
  width: 100%;
}

.btn--lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  color: var(--slate-800);
  cursor: pointer;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-top);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 1.25rem 1.5rem 2rem;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.14);
  flex-direction: column;
  gap: 0.375rem;
  border-top: 1px solid var(--slate-200);
  overflow-y: auto;
}

.nav-mobile.is-open {
  display: flex;
}

body.nav-open {
  overflow: hidden;
}

.nav-mobile a {
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  color: var(--slate-800);
}

.nav-mobile a:hover {
  background: var(--violet-50);
  color: var(--violet-700);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .header-cta--desktop-only {
    display: none;
  }
}

/* ── Sections & abstract backgrounds ────────────────────── */

.section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section--hero {
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.section--light {
  background: var(--white);
}

.section--mist {
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
}

.section--violet {
  background: linear-gradient(165deg, var(--violet-50) 0%, #faf5ff 45%, var(--white) 100%);
}

.section--deep {
  background: linear-gradient(160deg, var(--violet-900) 0%, var(--violet-700) 55%, #5b21b6 100%);
  color: var(--white);
}

.section__blob {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.section__blob--1 {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  right: -6rem;
  background: rgba(139, 92, 246, 0.18);
}

.section__blob--2 {
  width: 22rem;
  height: 22rem;
  bottom: -6rem;
  left: -4rem;
  background: rgba(109, 40, 217, 0.12);
}

.section__blob--3 {
  width: 18rem;
  height: 18rem;
  top: 20%;
  left: 55%;
  background: rgba(255, 255, 255, 0.08);
}

.section__inner {
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: var(--violet-50);
  color: var(--violet-700);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-title span {
  color: var(--violet-700);
}

.section--deep .section-title span {
  color: #c4b5fd;
}

.section-lead {
  margin: 1rem 0 0;
  max-width: 38rem;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--slate-600);
}

.section--deep .section-lead {
  color: rgba(255, 255, 255, 0.88);
}

.text-center {
  text-align: center;
}

.text-center .section-lead {
  margin-inline: auto;
}

/* ── Hero ───────────────────────────────────────────────── */

.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-title {
  margin: 1.25rem 0 0;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-title em {
  font-style: normal;
  color: var(--violet-700);
}

.hero-subtitle {
  margin: 1.25rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--slate-600);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-pills svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--violet-600);
  flex-shrink: 0;
}

/* ── Signup card ────────────────────────────────────────── */

.signup-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.signup-card__badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--violet-700);
}

.signup-card__title {
  margin: 1rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.signup-form {
  margin-top: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
}

.form-field input {
  width: 100%;
  padding: 1rem 1.125rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:hover {
  border-color: var(--slate-400);
}

.form-field input:focus {
  border-color: var(--violet-500);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
  outline: none;
}

.form-field input[aria-invalid='true'] {
  border-color: #dc2626;
}

.form-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.form-error {
  margin: 0.375rem 0 0;
  font-size: 0.8125rem;
  color: #dc2626;
  font-weight: 500;
}

.form-status {
  margin-top: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-status[hidden] {
  display: none;
}

.form-status--success {
  background: #ecfdf5;
  color: #047857;
}

.form-status--error {
  background: #fef2f2;
  color: #b91c1c;
}

.form-status--info {
  background: var(--violet-50);
  color: var(--violet-700);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup-card__count {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}

.signup-card__count strong {
  color: var(--violet-700);
}

/* ── Stats bar ──────────────────────────────────────────── */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-item__value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}

.stat-item__label {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--slate-500);
}

/* ── Feature cards ──────────────────────────────────────── */

.cards-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 960px) {
  .cards-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

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

.card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: var(--violet-50);
  color: var(--violet-700);
}

.card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card__title {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  font-weight: 700;
}

.card__text {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  color: var(--slate-600);
}

/* ── Steps (Como funciona) ──────────────────────────────── */

.steps {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
  counter-reset: step;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--violet-700);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 800;
}

.step__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
}

.step__text {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  color: var(--slate-600);
}

/* ── Audience cards ─────────────────────────────────────── */

.audience-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience-card {
  padding: 2rem;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.audience-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.15);
}

.audience-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.audience-card h3 {
  margin: 1.25rem 0 0;
  font-size: 1.375rem;
  font-weight: 800;
}

.audience-card p {
  margin: 0.625rem 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.audience-card ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.audience-card li + li {
  margin-top: 0.375rem;
}

/* ── FAQ ────────────────────────────────────────────────── */

.faq-list {
  max-width: 42rem;
  margin: 2.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--slate-200);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-weight: 700;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--violet-50);
  color: var(--violet-700);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 0 1.25rem;
  color: var(--slate-600);
  font-size: 0.96875rem;
}

/* ── CTA band ───────────────────────────────────────────── */

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--violet-700), #5b21b6);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .cta-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

/* ── Footer ─────────────────────────────────────────────── */

.site-footer {
  padding: 2rem 0 2.5rem;
  background: var(--slate-900);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer .logo {
  color: var(--white);
}

.site-footer a {
  color: #c4b5fd;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ── Live strip (contadores discretos) ──────────────────── */

.live-strip {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.live-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  text-align: center;
  min-height: var(--live-strip-h);
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}

@media (min-width: 640px) {
  .live-strip__inner {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
  }

  .live-strip__inner > span:last-of-type {
    text-align: right;
  }
}

.live-strip strong {
  font-weight: 700;
  color: var(--slate-700);
}

.live-strip__sep {
  opacity: 0.45;
  user-select: none;
}

/* ── Floating 3D assets ─────────────────────────────────── */

.float-scene {
  position: relative;
  z-index: 3;
  height: 0;
  pointer-events: none;
}

.float-scene__stage {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, calc(var(--max-w) + 8rem));
  height: clamp(80px, 14vw, 160px);
  top: calc(clamp(80px, 14vw, 160px) / -2);
}

.float-scene--hero {
  position: absolute;
  inset: 0;
  height: auto;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}

.float-scene--hero .float-scene__stage--hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: none;
}

.section--hero {
  position: relative;
  overflow: hidden;
}

.section--hero .section__inner {
  position: relative;
  z-index: 2;
}

.float-asset {
  position: absolute;
  width: clamp(72px, 11vw, 132px);
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(109, 40, 217, 0.22));
  transform-style: preserve-3d;
  will-change: transform;
}

.float-asset--pos-left {
  left: clamp(0.5rem, 3vw, 2rem);
  top: clamp(0.5rem, 4vw, 2.5rem);
}

.float-asset--pos-right {
  right: clamp(0.5rem, 3vw, 2rem);
  top: clamp(1rem, 6vw, 3.5rem);
}

@media (min-width: 960px) {
  .float-scene--hero .float-asset--pos-left {
    left: 1%;
    top: 8%;
  }

  .float-scene--hero .float-asset--pos-right {
    right: 34%;
    top: 6%;
  }
}

.float-asset--pos-center {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.float-asset--delay-1 {
  animation-delay: -1.2s;
}

.float-asset--delay-2 {
  animation-delay: -2.4s;
}

.float-asset--size-sm {
  width: clamp(56px, 8vw, 96px);
}

.float-asset--size-lg {
  width: clamp(88px, 13vw, 156px);
}

@keyframes float-drift {
  0%,
  100% {
    transform: translateY(0) rotateY(-14deg) rotateX(10deg) rotateZ(-2deg);
  }
  50% {
    transform: translateY(-20px) rotateY(12deg) rotateX(-6deg) rotateZ(2deg);
  }
}

@keyframes float-drift-center {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotateY(-10deg) rotateX(8deg);
  }
  50% {
    transform: translateX(-50%) translateY(-16px) rotateY(10deg) rotateX(-4deg);
  }
}

.float-asset:not(.float-asset--pos-center) {
  animation: float-drift 7s ease-in-out infinite;
}

.float-asset.float-asset--pos-center {
  animation: float-drift-center 6.5s ease-in-out infinite;
}

@media (max-width: 959px) {
  .float-scene--hero .float-asset {
    width: clamp(52px, 16vw, 80px);
    opacity: 0.92;
  }

  .float-scene--hero .float-asset--pos-left {
    left: 0.25rem;
    top: 0.25rem;
  }

  .float-scene--hero .float-asset--pos-right {
    right: 0.25rem;
    top: 0.5rem;
  }

  .float-scene:not(.float-scene--hero) .float-asset {
    width: clamp(48px, 14vw, 72px);
    opacity: 0.85;
  }

  .float-scene:not(.float-scene--hero) .float-scene__stage {
    width: 100%;
    height: clamp(60px, 18vw, 100px);
    top: calc(clamp(60px, 18vw, 100px) / -2);
  }
}

/* ── Marquee / slider retangular ────────────────────────── */

.marquee-band {
  padding-block: 1.25rem 1.75rem;
  background: var(--white);
  border-block: 1px solid var(--slate-200);
}

.marquee-band__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.marquee-band__title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.marquee-band__subtitle {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--slate-400);
}

.marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marquee-scroll 42s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-card {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 11rem;
  height: 4.25rem;
  padding: 0 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.875rem;
  background: var(--slate-50);
  box-shadow: var(--shadow-card);
}

.marquee-card__media {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.marquee-card__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--violet-600);
}

.marquee-card__body {
  min-width: 0;
}

.marquee-card__label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 10rem;
}

.marquee-card__detail {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: var(--slate-500);
  white-space: nowrap;
}

.marquee-card--request {
  background: linear-gradient(135deg, var(--violet-50), var(--white));
  border-color: #ddd6fe;
}

.marquee-card--request .marquee-card__media {
  background: var(--violet-100);
  border-color: #ddd6fe;
}

.signup-card__count {
  font-size: 0.8125rem;
  color: var(--slate-400);
}

.signup-card__count strong {
  color: var(--slate-500);
  font-weight: 600;
}


[class*="divider-"] {
  width: 100%;
  display: block;
  /* background: var(--slate-200); */
  border-radius: 10px;
  margin: 0 auto;

  /* Aplica apenas à variação exata divider-12 */
  &.divider-2 {
    height: 2px;
  }

  &.divider-4 {
    height: 4px;
  }


  &.divider-6 {
    height: 6px;
  }

  &.divider-8 {
    height: 8px;
  }

  &.divider-10 {
    height: 10px;
  }

  &.divider-12 {
    height: 12px;
  }

  &.divider-14 {
    height: 14px;
  }

  &.divider-16 {
    height: 16px;
  }

  &.divider-18 {
    height: 18px;
  }

  /* Aplica apenas à variação exata divider-34 */
  &.divider-20 {
    height: 20px;
  }
}