/**
 * Componentes reutilizáveis — botões, cards, etc.
 */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  min-height: 3rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease,
    transform 0.15s ease;
}

.btn--primary {
  color: #151016;
  background: linear-gradient(
    168deg,
    #efe2cc 0%,
    var(--color-accent-gold-soft) 42%,
    var(--color-accent-gold) 78%,
    #8d6f42 100%
  );
  box-shadow:
    0 0 0 1px rgb(0 0 0 / 0.2),
    inset 0 1px 0 rgb(255 255 255 / 0.38),
    inset 0 -1px 0 rgb(0 0 0 / 0.12),
    0 16px 48px rgb(196 165 116 / 0.28);
}

.btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn--secondary {
  color: var(--color-text-muted-warm);
  font-weight: 500;
  font-size: var(--text-step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgb(255 255 255 / 0.025);
  border-color: rgb(244 241 234 / 0.09);
  backdrop-filter: blur(12px);
}

.btn--secondary:hover {
  color: var(--color-text-primary);
  background: rgb(255 255 255 / 0.07);
  border-color: rgb(244 241 234 / 0.16);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent-gold-soft);
  outline-offset: 3px;
}

.btn--secondary:focus-visible {
  outline-color: rgb(244 241 234 / 0.85);
}

/* Refino extra na dobra — hierarquia em relação ao primário */
.btn--hero-primary {
  min-height: 3.35rem;
  padding: 1rem 1.85rem;
  font-size: 1.075rem;
  letter-spacing: 0.045em;
}

.btn--hero-secondary {
  min-height: 2.75rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-md);
  letter-spacing: 0.12em;
  border-color: rgb(244 241 234 / 0.07);
  background: transparent;
}

.btn--hero-secondary:hover {
  background: rgb(255 255 255 / 0.05);
}

/* --- Editorial / seções --- */

.eyebrow {
  margin: 0 0 var(--space-md);
  font-family: var(--font-sans);
  font-size: var(--text-step--1);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(212 188 148 / 0.88);
}

.feature-card {
  position: relative;
  margin: 0;
  padding: var(--space-xl);
  padding-top: calc(var(--space-xl) + 2px);
  border-radius: var(--radius-md);
  border: 1px solid rgb(255 255 255 / 0.07);
  border-left: 1px solid rgb(196 165 116 / 0.14);
  background: linear-gradient(168deg, rgb(255 255 255 / 0.05) 0%, rgb(18 18 24 / 0.65) 38%, rgb(10 10 14 / 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.05),
    inset 1px 0 0 rgb(255 255 255 / 0.02),
    0 12px 40px rgb(0 0 0 / 0.22);
  overflow: hidden;
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.22s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--space-lg);
  right: var(--space-lg);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(196 165 116 / 0.5), transparent);
  opacity: 0.9;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgb(196 165 116 / 0.09), transparent 70%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.28s ease;
}

.feature-card:hover {
  border-color: rgb(255 255 255 / 0.1);
  border-left-color: rgb(196 165 116 / 0.28);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.06),
    inset 1px 0 0 rgb(255 255 255 / 0.03),
    0 18px 52px rgb(0 0 0 / 0.3),
    0 0 0 1px rgb(196 165 116 / 0.1);
  transform: translateY(-3px);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.feature-card__index {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgb(163 158 148 / 0.75);
  font-variant-numeric: tabular-nums;
}

.feature-card__glyph {
  flex-shrink: 0;
  width: 2.125rem;
  height: 2.125rem;
  color: rgb(196 165 116 / 0.42);
  opacity: 0.95;
}

.feature-card:hover .feature-card__glyph {
  color: rgb(212 188 148 / 0.55);
}

.feature-card__title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-serif);
  font-size: var(--text-step-2);
  font-weight: 500;
  line-height: var(--line-tight);
  letter-spacing: -0.015em;
  color: var(--color-text-primary);
}

.feature-card__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-step--1);
  line-height: 1.62;
  color: var(--color-text-muted-warm);
}

/* --- Cards de oferta / tipos de leitura --- */

.reading-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  padding-top: calc(var(--space-lg) + 3px);
  border-radius: var(--radius-md);
  border: 1px solid rgb(255 255 255 / 0.075);
  border-left: 1px solid rgb(196 165 116 / 0.18);
  background: linear-gradient(
    168deg,
    rgb(26 24 34 / 0.55) 0%,
    rgb(14 13 20 / 0.92) 42%,
    rgb(8 8 12 / 0.98) 100%
  );
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.05),
    inset 1px 0 0 rgb(255 255 255 / 0.025),
    0 8px 32px rgb(0 0 0 / 0.32);
  overflow: hidden;
  transition:
    border-color 0.26s ease,
    box-shadow 0.26s ease,
    transform 0.22s ease;
}

.reading-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--space-md);
  right: var(--space-md);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(196 165 116 / 0.42), transparent);
  opacity: 0.95;
  pointer-events: none;
}

.reading-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -40% auto;
  width: 65%;
  height: 50%;
  background: radial-gradient(ellipse at 75% 100%, rgb(90 62 120 / 0.14), transparent 68%);
  pointer-events: none;
  opacity: 0.75;
  transition: opacity 0.26s ease;
}

.reading-card:hover {
  border-color: rgb(255 255 255 / 0.1);
  border-left-color: rgb(196 165 116 / 0.32);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.06),
    inset 1px 0 0 rgb(255 255 255 / 0.035),
    0 14px 44px rgb(0 0 0 / 0.38),
    0 0 0 1px rgb(196 165 116 / 0.09);
  transform: translateY(-2px);
}

.reading-card:hover::after {
  opacity: 1;
}

.reading-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.reading-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  min-width: 0;
}

.reading-card__index {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgb(148 142 132 / 0.82);
  font-variant-numeric: tabular-nums;
}

.reading-card__stamp {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.2rem;
  border: 1px solid rgb(196 165 116 / 0.2);
  background: linear-gradient(145deg, rgb(0 0 0 / 0.45), rgb(22 20 30 / 0.65));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
}

.reading-card__glyph {
  width: 0.95rem;
  height: 0.95rem;
  color: rgb(196 165 116 / 0.48);
}

.reading-card:hover .reading-card__glyph {
  color: rgb(212 188 148 / 0.58);
}

.reading-card__tag {
  margin: 0;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 0.22rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(174 168 156 / 0.95);
  border: 1px solid rgb(196 165 116 / 0.18);
  border-radius: var(--radius-sm);
  background: rgb(0 0 0 / 0.32);
}

.reading-card__title {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 0.95rem + 0.35vw, 1.28rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.reading-card__desc {
  margin: 0;
  flex-grow: 1;
  font-family: var(--font-sans);
  font-size: var(--text-step--1);
  line-height: 1.58;
  color: var(--color-text-muted-warm);
}

.reading-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin-top: auto;
  padding-top: var(--space-md);
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(212 188 148 / 0.82);
  border-bottom: 1px solid rgb(196 165 116 / 0.22);
  padding-bottom: 0.12rem;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    gap 0.2s ease;
}

.reading-card__cta-label {
  line-height: 1;
}

.reading-card__cta-arrow {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.05em;
  opacity: 0.75;
  transition:
    transform 0.22s ease,
    opacity 0.2s ease;
}

.reading-card__cta:hover {
  color: var(--color-accent-gold-soft);
  border-color: rgb(212 188 148 / 0.42);
}

.reading-card__cta:hover .reading-card__cta-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.reading-card__cta:focus-visible {
  outline: 2px solid var(--color-accent-gold-soft);
  outline-offset: 3px;
}

/* --- Passos de processo (Como funciona) --- */

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: var(--space-md);
  align-items: flex-start;
  margin: 0;
  padding: 0 0 var(--space-xl);
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step__marker {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgb(232 214 180 / 0.95);
  border: 1px solid rgb(196 165 116 / 0.38);
  background: radial-gradient(circle at 35% 28%, rgb(70 58 48 / 0.35), rgb(14 12 18));
  box-shadow:
    0 0 0 4px rgb(10 9 14),
    0 0 18px rgb(196 165 116 / 0.08),
    inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.process-step__body {
  min-width: 0;
}

.process-step__title {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 0.95rem + 0.5vw, 1.38rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.022em;
  color: var(--color-text-primary);
}

.process-step__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-step--1);
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--color-text-muted-warm);
}

/* --- Relatorio de amostra (Exemplo de leitura) --- */

.sample-report {
  position: relative;
  margin: 0;
  padding: clamp(var(--space-lg), 3vw, var(--space-xl));
  border-radius: var(--radius-md);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-top: 1px solid rgb(196 165 116 / 0.26);
  background: linear-gradient(176deg, rgb(42 34 54 / 0.27) 0%, rgb(17 15 24 / 0.92) 38%, rgb(9 8 14 / 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.07),
    inset 0 -1px 0 rgb(0 0 0 / 0.2),
    0 15px 48px rgb(0 0 0 / 0.33);
  overflow: hidden;
}

.sample-report::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--space-md);
  right: var(--space-md);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(212 188 148 / 0.45), transparent);
}

.sample-report::after {
  content: "";
  position: absolute;
  inset: auto -22% -38% auto;
  width: 58%;
  height: 55%;
  background:
    radial-gradient(ellipse at 68% 95%, rgb(90 62 120 / 0.16), transparent 70%),
    radial-gradient(ellipse at 80% 80%, rgb(196 165 116 / 0.07), transparent 68%);
  pointer-events: none;
  opacity: 0.9;
}

.sample-report__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.sample-report__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.24rem, 1.06rem + 0.55vw, 1.52rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.022em;
  color: var(--color-text-primary);
}

.sample-report__subtitle {
  margin: var(--space-xs) 0 0;
  font-family: var(--font-sans);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgb(181 174 163 / 0.9);
}

.sample-report__session {
  margin: 0;
  display: inline-block;
  padding: 0.24rem 0.62rem;
  border: 1px solid rgb(196 165 116 / 0.28);
  border-radius: var(--radius-sm);
  background: linear-gradient(165deg, rgb(0 0 0 / 0.36), rgb(26 22 32 / 0.5));
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgb(187 181 170 / 0.96);
}

.sample-report__highlight {
  margin: 0 0 var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid rgb(196 165 116 / 0.22);
  border-left-width: 2px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(90deg, rgb(196 165 116 / 0.08), transparent 65%),
    linear-gradient(175deg, rgb(255 255 255 / 0.02), rgb(12 11 18 / 0.75));
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 0.92rem + 0.45vw, 1.28rem);
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgb(236 229 217 / 0.96);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.05);
}

.sample-report__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.sample-report__item {
  margin: 0;
  padding: var(--space-md);
  border: 1px solid rgb(255 255 255 / 0.075);
  border-top: 1px solid rgb(196 165 116 / 0.2);
  border-radius: var(--radius-sm);
  background: linear-gradient(174deg, rgb(255 255 255 / 0.035), rgb(15 14 20 / 0.78));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.04),
    0 6px 22px rgb(0 0 0 / 0.22);
}

.sample-report__item-tag {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgb(201 171 124 / 0.9);
}

.sample-report__item-title {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 0.93rem + 0.3vw, 1.16rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--color-text-primary);
}

.sample-report__item-text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-step--1);
  line-height: 1.62;
  color: var(--color-text-muted-warm);
}

.sample-report__note {
  margin: var(--space-lg) 0 0;
  padding-top: var(--space-md);
  border-top: 1px solid rgb(255 255 255 / 0.1);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.54;
  letter-spacing: 0.012em;
  color: rgb(163 158 148 / 0.9);
}

@media (min-width: 56rem) {
  .sample-report__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
  }
}

/* --- Formulário visual (componentes) --- */

.oracle-form {
  position: relative;
  margin: 0;
  padding: clamp(var(--space-lg), 3vw, var(--space-xl));
  border-radius: var(--radius-md);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-top: 1px solid rgb(196 165 116 / 0.24);
  background: linear-gradient(176deg, rgb(36 30 47 / 0.24) 0%, rgb(16 14 22 / 0.92) 38%, rgb(9 8 14 / 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.06),
    inset 0 -1px 0 rgb(0 0 0 / 0.18),
    0 15px 48px rgb(0 0 0 / 0.33);
  display: grid;
  gap: var(--space-md);
}

.oracle-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--space-md);
  right: var(--space-md);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(212 188 148 / 0.42), transparent);
}

.oracle-form__field {
  margin: 0;
  border: 0;
  padding: 0;
  min-width: 0;
}

.oracle-form__label {
  display: block;
  margin: 0 0 var(--space-xs);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(181 174 163 / 0.92);
}

.oracle-form__input,
.oracle-form__textarea {
  width: 100%;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-sm);
  background: linear-gradient(170deg, rgb(255 255 255 / 0.04), rgb(10 10 14 / 0.8));
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.45;
  padding: 0.74rem 0.78rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.oracle-form__textarea {
  resize: vertical;
  min-height: 6.2rem;
}

.oracle-form__input::placeholder,
.oracle-form__textarea::placeholder {
  color: rgb(163 158 148 / 0.74);
}

.oracle-form__input:focus-visible,
.oracle-form__textarea:focus-visible {
  outline: none;
  border-color: rgb(196 165 116 / 0.45);
  box-shadow:
    0 0 0 1px rgb(196 165 116 / 0.2),
    0 0 0 4px rgb(196 165 116 / 0.08);
}

.oracle-form__options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.oracle-option {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgb(255 255 255 / 0.09);
  border-radius: var(--radius-sm);
  background: linear-gradient(172deg, rgb(255 255 255 / 0.03), rgb(12 11 17 / 0.8));
  color: var(--color-text-muted-warm);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.oracle-option__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

.oracle-option__text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.35;
  color: inherit;
}

.oracle-option:hover {
  border-color: rgb(255 255 255 / 0.14);
  color: var(--color-text-primary);
}

.oracle-option:has(.oracle-option__input:checked) {
  border-color: rgb(196 165 116 / 0.35);
  box-shadow:
    0 0 0 1px rgb(196 165 116 / 0.18),
    inset 0 1px 0 rgb(255 255 255 / 0.05);
  color: var(--color-text-primary);
}

.oracle-option:has(.oracle-option__input:focus-visible) {
  outline: 2px solid rgb(196 165 116 / 0.45);
  outline-offset: 2px;
}

.oracle-upload {
  display: grid;
  gap: var(--space-xs);
  margin: 0;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-sm);
  border: 1px dashed rgb(196 165 116 / 0.3);
  background: linear-gradient(172deg, rgb(196 165 116 / 0.04), rgb(10 10 15 / 0.65));
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.oracle-upload__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.oracle-upload__title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--color-text-primary);
}

.oracle-upload__note {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgb(163 158 148 / 0.86);
}

.oracle-upload:hover {
  border-color: rgb(196 165 116 / 0.45);
}

.oracle-upload:has(.oracle-upload__input:focus-visible) {
  outline: 2px solid rgb(196 165 116 / 0.45);
  outline-offset: 2px;
}

.oracle-form__submit {
  width: 100%;
  margin-top: var(--space-sm);
}

.oracle-form__note {
  margin: 0;
  padding-top: var(--space-sm);
  border-top: 1px solid rgb(255 255 255 / 0.08);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgb(163 158 148 / 0.9);
}

@media (min-width: 48rem) {
  .oracle-form__options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- Variações de botões no CTA final --- */

.final-cta__primary {
  min-height: 3.25rem;
  padding-inline: 1.9rem;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.final-cta__secondary {
  min-height: 3.25rem;
  padding-inline: 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  border-color: rgb(244 241 234 / 0.14);
  background: rgb(255 255 255 / 0.03);
}

.final-cta__secondary:hover {
  border-color: rgb(244 241 234 / 0.2);
  background: rgb(255 255 255 / 0.08);
}

@media (min-width: 56rem) {
  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md) var(--space-md) var(--space-lg);
    padding-top: calc(var(--space-md) + 2px);
    border-radius: var(--radius-md);
    border: 1px solid rgb(255 255 255 / 0.055);
    border-top: 1px solid rgb(196 165 116 / 0.14);
    background: linear-gradient(
      188deg,
      rgb(32 28 42 / 0.35) 0%,
      rgb(16 14 22 / 0.94) 42%,
      rgb(8 8 12 / 0.98) 100%
    );
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 0.055),
      inset 0 -1px 0 rgb(0 0 0 / 0.2),
      0 6px 24px rgb(0 0 0 / 0.28);
    z-index: 1;
    transition:
      border-color 0.24s ease,
      box-shadow 0.24s ease,
      transform 0.22s ease;
  }

  .process-step:hover {
    border-color: rgb(255 255 255 / 0.08);
    border-top-color: rgb(196 165 116 / 0.22);
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 0.06),
      inset 0 -1px 0 rgb(0 0 0 / 0.18),
      0 12px 36px rgb(0 0 0 / 0.32),
      0 0 0 1px rgb(196 165 116 / 0.06);
    transform: translateY(-2px);
  }

  .process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(212 188 148 / 0.45), transparent);
    opacity: 0.85;
  }

  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 3.05rem;
    left: calc(100% - 0.35rem);
    width: min(3.25rem, calc(100% + 1.5rem));
    height: 1px;
    background: repeating-linear-gradient(
      90deg,
      rgb(196 165 116 / 0.28) 0 5px,
      transparent 5px 10px
    );
    box-shadow: 0 0 10px rgb(196 165 116 / 0.06);
    mask-image: linear-gradient(90deg, rgb(0 0 0 / 0.4), rgb(0 0 0 / 1) 35%, rgb(0 0 0 / 1) 75%, rgb(0 0 0 / 0.35));
    -webkit-mask-image: linear-gradient(90deg, rgb(0 0 0 / 0.4), rgb(0 0 0 / 1) 35%, rgb(0 0 0 / 1) 75%, rgb(0 0 0 / 0.35));
    pointer-events: none;
    z-index: 2;
  }

  .process-step__marker {
    position: relative;
    z-index: 3;
    margin-top: 0;
    margin-bottom: var(--space-md);
    width: 2rem;
    height: 2rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    border-color: rgb(196 165 116 / 0.42);
    box-shadow:
      0 0 0 4px rgb(10 9 14),
      0 0 0 1px rgb(196 165 116 / 0.12),
      0 0 22px rgb(196 165 116 / 0.1),
      inset 0 1px 0 rgb(255 255 255 / 0.08);
  }

  .process-step__body {
    width: 100%;
    max-width: 15.5rem;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }

  .btn--primary:hover,
  .btn--primary:active {
    transform: none;
  }

  .feature-card {
    transition: none;
  }

  .feature-card:hover {
    transform: none;
  }

  .feature-card::after {
    transition: none;
  }

  .reading-card {
    transition: none;
  }

  .reading-card:hover {
    transform: none;
  }

  .reading-card::after {
    transition: none;
  }

  .reading-card__cta:hover .reading-card__cta-arrow {
    transform: none;
  }

  .process-step {
    transition: none;
  }

  .process-step:hover {
    transform: none;
  }
}
