@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   KEVIN ENRIQUE — bio vertical
   Fundo bege + liquid glass nos produtos + esteira estilo Netflix.
   ========================================================================== */

:root {
  --paper: #f3ede2;
  --paper-2: #ece4d6;
  --panel: #1b1a1f;
  --panel-2: #26242b;

  --ink: #1c1a17;
  --ink-2: #5f594e;
  --ink-3: #8c8576;

  --nord-red: #c8102e;
  --ember: #ff4b24;

  /* liquid glass sobre fundo claro */
  --glass-bg: linear-gradient(152deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.28) 58%, rgba(255, 255, 255, 0.46) 100%);
  --glass-bg-soft: linear-gradient(152deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.22) 100%);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-blur: blur(22px) saturate(180%);
  --glass-shine: inset 0 1px 0 rgba(255, 255, 255, 0.75), inset 0 -1px 0 rgba(28, 26, 23, 0.04);
  --glass-shadow: 0 14px 34px rgba(28, 26, 23, 0.12);

  --col: 460px;
  --gutter: 20px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100dvh;
}

a, button { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--nord-red);
  outline-offset: 3px;
  border-radius: 10px;
}

.shell {
  width: min(100%, var(--col));
  margin: 0 auto;
  padding: 0 0 calc(30px + env(safe-area-inset-bottom));
}

/* ======================= REDES — só a logo ======================= */

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shine), var(--glass-shadow);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.social-btn::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -30%;
  width: 70%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(14deg);
  pointer-events: none;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--glass-shine), 0 18px 38px rgba(28, 26, 23, 0.2);
}

.social-btn svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

.whatsapp {
  background: linear-gradient(150deg, #2fe07a 0%, #1fae5a 100%);
  box-shadow: var(--glass-shine), 0 10px 22px rgba(37, 211, 102, 0.4);
}

.youtube {
  background: linear-gradient(150deg, #ff2d2d 0%, #c40000 100%);
  box-shadow: var(--glass-shine), 0 10px 22px rgba(255, 0, 0, 0.35);
}

/* ============================ PERFIL ============================ */

.profile {
  padding: calc(30px + env(safe-area-inset-top)) var(--gutter) 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--panel-2) 0%, var(--panel) 70%);
  box-shadow: 0 14px 34px rgba(28, 26, 23, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.profile-avatar::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--nord-red);
  opacity: 0.7;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-avatar span {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.profile-name {
  font-size: clamp(1.9rem, 8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--nord-red);
  text-shadow: 0 0 30px rgba(200, 16, 46, 0.16);
}

.profile-role {
  margin-top: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.profile-lead {
  margin-top: 15px;
  max-width: 34ch;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ====================== SEGMENTED CONTROL ====================== */

.segmented {
  display: flex;
  gap: 3px;
  margin: 28px var(--gutter) 24px;
  padding: 4px;
  border-radius: 15px;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--glass-bg-soft);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--glass-shine), 0 4px 16px rgba(28, 26, 23, 0.08);
}

.segmented::-webkit-scrollbar { display: none; }

.segment {
  flex: 1 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 11px;
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.segment.is-active {
  color: #fff;
  background: linear-gradient(150deg, var(--nord-red), #97101f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 6px 16px rgba(200, 16, 46, 0.32);
}

/* =========================== ESTEIRAS =========================== */

.main-content { padding-bottom: 8px; }

.row { margin-bottom: 32px; }

.row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0 var(--gutter);
  margin-bottom: 14px;
}

.row-title {
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 9px;
}

.row-title::before {
  content: '';
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--nord-red), #8f0b20);
  flex-shrink: 0;
}

.row-count {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

.row-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px var(--gutter) 12px;
  scrollbar-width: none;
}

.row-track::-webkit-scrollbar { display: none; }

/* ====================== CARD (liquid glass) ====================== */

.card {
  flex: 0 0 206px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--glass-bg-soft);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--glass-shine), var(--glass-shadow);
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 16, 46, 0.4);
  box-shadow: var(--glass-shine), 0 22px 44px rgba(28, 26, 23, 0.18);
}

.card:active { transform: scale(0.985); }

/* Painel Nord (equipamento) no topo do card — segue escuro de propósito,
   contraste é o que dá o clima "estúdio" dentro do card claro. */
.card-art {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(165deg, var(--panel-2) 0%, var(--panel) 72%);
  overflow: hidden;
}

.card-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 82% 8%, rgba(255, 75, 36, 0.4), transparent 62%);
}

.card-art.has-photo::before { display: none; }

.card-art.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-label {
  position: absolute;
  top: 11px;
  left: 12px;
  z-index: 2;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.art-leds {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  gap: 4px;
}

.art-leds i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.art-leds i:first-child {
  background: var(--ember);
  box-shadow: 0 0 8px rgba(255, 75, 36, 0.9);
}

.art-display {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  transform: translateY(-58%);
  z-index: 2;
  background: rgba(6, 6, 8, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 75, 36, 0.45);
  border-radius: 9px;
  padding: 8px 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.art-display strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.art-wave {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 15px;
  margin-top: 6px;
}

.art-wave i {
  flex: 1;
  border-radius: 1.5px;
  background: linear-gradient(180deg, var(--ember), var(--nord-red));
  animation: wave 1.5s ease-in-out infinite alternate;
}

.art-wave i:nth-child(1) { height: 38%; animation-delay: 0s; }
.art-wave i:nth-child(2) { height: 72%; animation-delay: .1s; }
.art-wave i:nth-child(3) { height: 52%; animation-delay: .2s; }
.art-wave i:nth-child(4) { height: 88%; animation-delay: .3s; }
.art-wave i:nth-child(5) { height: 34%; animation-delay: .4s; }
.art-wave i:nth-child(6) { height: 66%; animation-delay: .5s; }
.art-wave i:nth-child(7) { height: 46%; animation-delay: .6s; }

@keyframes wave {
  from { transform: scaleY(0.5); }
  to   { transform: scaleY(1); }
}

.art-knobs {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.knob {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(160deg, #3d3a43 0%, #17161a 75%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 4px 10px rgba(0, 0, 0, 0.6);
  position: relative;
  transform: rotate(var(--turn, 0deg));
}

.knob i {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 2px;
  height: 11px;
  margin-left: -1px;
  border-radius: 1px;
  background: var(--ember);
  box-shadow: 0 0 6px rgba(255, 75, 36, 0.85);
}

.art-meters {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
}

.art-meters i {
  flex: 1;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--ember) 0%, var(--nord-red) 62%, rgba(255, 255, 255, 0.12) 62%);
}

.art-meters i:nth-child(1) { height: 55%; }
.art-meters i:nth-child(2) { height: 88%; }
.art-meters i:nth-child(3) { height: 42%; }
.art-meters i:nth-child(4) { height: 74%; }
.art-meters i:nth-child(5) { height: 96%; }
.art-meters i:nth-child(6) { height: 60%; }

.art-keys {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 30px;
  display: flex;
  gap: 2px;
  padding: 0 6px;
}

.art-keys i {
  flex: 1;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(180deg, #f2f0ec 0%, #b0adb5 100%);
}

.art-keys i.b {
  flex: 0.5;
  height: 62%;
  background: linear-gradient(180deg, #2d2b32 0%, #0d0c0f 100%);
}

/* Corpo do card */
.card-body {
  padding: 14px 14px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-title {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

/* TAGS — liquid glass sobre fundo claro */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: var(--ink-2);
  position: relative;
  overflow: hidden;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.24) 55%, rgba(255, 255, 255, 0.42) 100%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(28, 26, 23, 0.03),
    0 3px 10px rgba(28, 26, 23, 0.08);
}

.tag::after {
  content: '';
  position: absolute;
  top: -70%;
  left: -20%;
  width: 55%;
  height: 240%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(16deg);
  pointer-events: none;
}

.tag.is-accent {
  color: #fff;
  background: linear-gradient(148deg, rgba(200, 16, 46, 0.82) 0%, rgba(143, 11, 32, 0.72) 60%, rgba(255, 75, 36, 0.7) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 6px 16px rgba(200, 16, 46, 0.28);
}

.card-foot {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(28, 26, 23, 0.08);
}

.card-price {
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.card-price.is-quote {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-3);
}

.card-go {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(150deg, var(--nord-red), #8f0b20);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 14px rgba(200, 16, 46, 0.3);
}

/* ============================ RODAPÉ ============================ */

.site-footer {
  margin-top: 12px;
  padding: 22px var(--gutter);
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-3);
  border-top: 1px solid rgba(28, 26, 23, 0.08);
}

.site-footer a {
  color: var(--nord-red);
  font-weight: 700;
  text-decoration: none;
}

/* ============================ BOTÕES ============================ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 15px;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  text-decoration: none;
  color: #fff;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), filter 0.22s var(--ease);
}

.button-primary {
  background: linear-gradient(150deg, var(--nord-red) 0%, #8f0b20 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 12px 28px rgba(200, 16, 46, 0.3);
}

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

.button-full { width: 100%; }

/* ============================ SHEET ============================ */

.sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(28, 26, 23, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.sheet-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sheet {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90dvh;
  overflow-y: auto;
  border-radius: 26px 26px 0 0;
  transform: translateY(18px);
  transition: transform 0.36s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 241, 232, 0.98) 100%);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 -18px 44px rgba(28, 26, 23, 0.2);
}

.sheet-overlay.is-open .sheet { transform: translateY(0); }

@media (min-width: 560px) {
  .sheet-overlay { align-items: center; }
  .sheet {
    border-radius: 26px;
    max-height: 86dvh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }
}

.sheet-grabber {
  width: 38px;
  height: 4px;
  border-radius: 2px;
  background: rgba(28, 26, 23, 0.18);
  margin: 10px auto 0;
}

.sheet-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  z-index: 3;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.sheet-close:hover { background: rgba(255, 255, 255, 0.85); }

.sheet-art {
  position: relative;
  height: 155px;
  margin: 14px 16px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(165deg, var(--panel-2) 0%, var(--panel) 72%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.sheet-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 82% 8%, rgba(255, 75, 36, 0.4), transparent 62%);
}

.sheet-art.has-photo::before { display: none; }

.sheet-art.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sheet-art .art-label { position: absolute; top: 12px; left: 13px; z-index: 2; }
.sheet-art .art-leds { position: absolute; top: 13px; right: 13px; z-index: 2; }

.sheet-body { padding: 20px 22px 26px; }

.sheet-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nord-red);
}

.sheet-title {
  margin-top: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.15;
  color: var(--ink);
}

.sheet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.sheet-desc {
  margin-top: 16px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-2);
}

.sheet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sheet-specs div {
  flex: 1 1 92px;
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  background: var(--glass-bg-soft);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.sheet-specs dt {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.sheet-specs dd {
  margin-top: 3px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.sheet-features {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.sheet-features li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-2);
}

.sheet-features svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--nord-red);
}

.sheet-requirements {
  margin-top: 20px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg-soft);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.sheet-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.sheet-req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sheet-req-list li {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ink-2);
}

.sheet-req-list li strong {
  color: var(--ink);
  font-weight: 700;
}

.sheet-actions { margin-top: 24px; }

/* ====================== MOVIMENTO REDUZIDO ====================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ================= FALLBACK SEM BACKDROP-FILTER ================= */

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .social-btn, .card, .segmented, .tag, .sheet-specs div {
    background: rgba(255, 255, 255, 0.92);
  }
  .sheet { background: #f8f4ec; }
}

/* ========================= TELAS PEQUENAS ========================= */

@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .card { flex: 0 0 178px; }
  .social-label { font-size: 0.86rem; }
}
