@charset "UTF-8";
:root {
  --bg: #020202;
  --bg-soft: #070707;
  --panel: #090909;
  --panel-strong: #0d0d0d;
  --panel-red: #120306;
  --red: #ff2039;
  --red-deep: #75000e;
  --red-dark: #3f0008;
  --green: #62ff89;
  --text: #f6f6f6;
  --muted: #aaaaaa;
  --muted-strong: #c8c8c8;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --line-red: rgba(255, 34, 57, 0.58);
  --line-red-soft: rgba(255, 34, 57, 0.24);
  --content: 1240px;
  --radius-small: 6px;
  --radius-control: 7px;
  --radius-card: 10px;
  --radius-panel: 14px;
  --radius-large: 15px;
  --shadow-red: 0 0 8px rgba(255, 32, 57, 0.58), 0 0 24px rgba(255, 32, 57, 0.18);
  --shadow-panel: 0 20px 60px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --scroll-progress: 0;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --surface-1: rgba(8, 8, 8, 0.92);
  --surface-2: rgba(12, 12, 12, 0.94);
  --surface-red: rgba(55, 2, 10, 0.72);
  --surface-glass: rgba(8, 8, 8, 0.76);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --control-height: 48px;
  --duration-fast: 160ms;
  --duration-base: 280ms;
  --duration-slow: 620ms;
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --ease-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
  --content-reading: 760px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background: var(--bg);
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 9%, rgba(116, 0, 18, 0.15), transparent 29rem),
    radial-gradient(circle at 8% 68%, rgba(90, 0, 12, 0.09), transparent 27rem),
    linear-gradient(180deg, #020202 0%, #030303 46%, #020202 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.009) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), transparent 86%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  opacity: 0.11;
  background:
    radial-gradient(circle at center, transparent 52%, rgba(0, 0, 0, 0.52) 100%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: soft-light;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
body.page-enter main {
  animation: pageFade 0.45s both var(--ease);
}

::selection {
  background: rgba(255, 32, 57, 0.82);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-weight: 500;
}
p {
  text-wrap: pretty;
}
[hidden] {
  display: none !important;
}

/* Render work below the fold only when it approaches the viewport. */
.featured-section,
main > .content-section,
main > .page-content {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 280px;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(255, 32, 57, 0.13);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border: 1px solid var(--red);
  border-radius: var(--radius-control);
  background: #080808;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
}
.shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 2, 2, 0.89);
  border-bottom: 1px solid rgba(255, 32, 57, 0.14);
  backdrop-filter: blur(18px) saturate(1.08);
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #7d0010, var(--red), #ff7182);
  box-shadow: 0 0 12px rgba(255, 32, 57, 0.48);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  will-change: transform;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(720px, 64vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 32, 57, 0.42), transparent);
  transform: translateX(-50%);
}
.header-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 27px;
}
.logo {
  width: 214px;
  flex: 0 0 auto;
}
.logo img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 8px rgba(255, 32, 57, 0.08));
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.45vw, 24px);
  margin-left: auto;
}
.main-nav a {
  position: relative;
  padding: 15px 0 12px;
  color: #d8d8d8;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.main-nav a::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  opacity: 0;
  transform: translate(-50%, -3px) scale(0.5);
  transition: 0.24s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: var(--red);
  box-shadow: var(--shadow-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #fff;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.main-nav a[aria-current="page"]::before {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}
.header-whatsapp {
  min-height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 50, 73, 0.78);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(126, 9, 22, 0.94), rgba(65, 0, 8, 0.96));
  box-shadow:
    0 0 10px rgba(255, 32, 57, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.25s var(--ease);
}
.header-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-red),
    inset 0 1px rgba(255, 255, 255, 0.08);
}
.header-whatsapp img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.16));
}
.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-red);
  border-radius: var(--radius-control);
  background: #100205;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: 0.25s var(--ease);
}
.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Secondary navigation */
.region-bar {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  background: rgba(4, 4, 4, 0.93);
}
.region-row {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: auto;
  scrollbar-width: none;
}
.region-row::-webkit-scrollbar {
  display: none;
}
.region-title {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: #d0d0d0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.region-title img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.region-pills {
  display: flex;
  gap: 9px;
  flex: 0 0 auto;
  padding-right: 6px;
}
.region-pill {
  min-width: 92px;
  height: 32px;
  padding-inline: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-small);
  background: #080808;
  color: #cfcfcf;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: 0.22s var(--ease);
}
.region-pill:hover,
.region-pill.active,
.region-pill[aria-current="true"] {
  border-color: var(--line-red);
  background: linear-gradient(180deg, rgba(112, 11, 24, 0.92), rgba(48, 1, 7, 0.95));
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 32, 57, 0.2);
  transform: translateY(-1px);
}

/* Home */
.home-layout {
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  grid-template-areas: "rail hero" "rail featured";
  gap: 20px;
  padding-top: 20px;
}
.live-rail {
  grid-area: rail;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid var(--line-red);
  border-radius: var(--radius-large);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.99), rgba(4, 4, 4, 0.99));
  box-shadow:
    inset 0 0 28px rgba(255, 20, 40, 0.045),
    0 20px 50px rgba(0, 0, 0, 0.24);
}
.live-title {
  padding: 17px 15px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.live-title img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.live-dot {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: livePulse 1.4s ease-in-out infinite;
}
.live-item {
  min-height: 104px;
  padding: 16px 14px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.075);
}
.live-item img {
  width: 50px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(255, 32, 57, 0.18));
}
.live-item img[src$="models-online.webp"] {
  transform: scale(0.9);
}
.live-item img[src$="brazil-regions.webp"] {
  transform: scale(1.08);
}
.live-number {
  display: block;
  font-size: 29px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.live-number.is-word {
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.live-label {
  display: block;
  margin-top: 6px;
  color: #cfcfcf;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.live-note {
  margin: 0;
  padding: 12px 14px;
  color: #858585;
  font-size: 9px;
  line-height: 1.45;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}
.premium-box {
  padding: 19px 14px 16px;
  text-align: center;
}
.premium-box img {
  width: 72px;
  height: 52px;
  margin: 0 auto 10px;
  object-fit: contain;
}
.premium-box p {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stars {
  margin-top: 10px;
  color: var(--red);
  letter-spacing: 4px;
  text-shadow: 0 0 9px rgba(255, 32, 57, 0.45);
}

.hero-panel {
  --pointer-x: 0px;
  --pointer-y: 0px;
  grid-area: hero;
  min-height: 508px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 35, 56, 0.28);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(
      circle at calc(76% + var(--pointer-x)) calc(44% + var(--pointer-y)),
      rgba(155, 0, 28, 0.22),
      transparent 30%
    ),
    radial-gradient(circle at 18% 42%, rgba(82, 0, 11, 0.18), transparent 34%),
    linear-gradient(94deg, #050505 0%, #070707 52%, #080304 100%);
  box-shadow:
    var(--shadow-panel),
    inset 0 0 60px rgba(255, 32, 57, 0.03);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      112deg,
      transparent 33%,
      rgba(255, 255, 255, 0.035) 46%,
      rgba(255, 32, 57, 0.075) 50%,
      transparent 64%
    ),
    linear-gradient(100deg, rgba(0, 0, 0, 0.04), transparent 46%, rgba(0, 0, 0, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 105px, rgba(255, 255, 255, 0.012) 106px);
  background-position:
    180% 0,
    0 0,
    0 0;
  background-size:
    220% 100%,
    auto,
    auto;
  animation: heroLightPass 10s ease-in-out infinite;
  pointer-events: none;
}
.hero-panel::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 32, 57, 0.52), transparent 56%);
  opacity: 0.58;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: 55%;
  padding: 66px 20px 54px 38px;
}
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #dedede;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-brand::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 7px rgba(255, 32, 57, 0.65);
}
.hero-horns {
  width: 100px;
  height: 28px;
  margin: 0 0 10px;
  position: relative;
  opacity: 0.8;
}
.hero-horns::before {
  content: "";
  position: absolute;
  inset: 5px 0 auto;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 9px rgba(255, 255, 255, 0.28);
  transform: rotate(-4deg);
}
.hero-horns::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 8px rgba(255, 32, 57, 0.5);
}
.hero-title {
  margin: 0;
  max-width: 640px;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.4vw, 82px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.38);
  animation: titleReveal 0.95s both var(--ease);
  animation-delay: 0.08s;
}
.hero-title span {
  display: block;
  color: var(--red);
  font-style: italic;
  font-weight: 600;
  text-shadow:
    0 0 8px rgba(255, 32, 57, 0.82),
    0 0 22px rgba(255, 32, 57, 0.26);
}
.hero-copy > p {
  max-width: 470px;
  margin: 20px 0 26px;
  color: #d7d7d7;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
  margin-top: 25px;
  color: #959595;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-meta span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 7px rgba(255, 32, 57, 0.55);
}
.hero-presence {
  position: absolute;
  top: -14px;
  right: -12px;
  bottom: -2px;
  width: 54%;
  z-index: 2;
  animation: portraitFloat 5.2s ease-in-out infinite;
}
.hero-presence::before {
  content: "";
  position: absolute;
  inset: 18% 7% 7% 17%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(126, 0, 18, 0.2);
  filter: blur(38px);
  animation: haloDrift 5.8s ease-in-out infinite;
}
.hero-presence img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: saturate(0.96) contrast(1.04) drop-shadow(0 0 16px rgba(255, 32, 57, 0.13));
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-small,
.filter-favorite {
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.045em;
  transition:
    transform 0.22s var(--ease),
    filter 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease),
    background 0.22s var(--ease);
}
.btn-primary {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid rgba(255, 59, 79, 0.9);
  border-radius: var(--radius-control);
  background: linear-gradient(180deg, #8b0d1d, #4f0008);
  box-shadow:
    0 0 9px rgba(255, 32, 57, 0.45),
    0 0 22px rgba(255, 32, 57, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 12px;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-160%) skewX(-18deg);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.015);
  filter: brightness(1.1);
  box-shadow:
    0 0 14px rgba(255, 32, 57, 0.75),
    0 10px 34px rgba(255, 32, 57, 0.28);
}
.btn-primary:hover::after {
  animation: shine 0.9s var(--ease);
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}
.btn-primary img {
  position: relative;
  width: 11px;
  height: 15px;
  object-fit: contain;
  transition: transform 0.22s var(--ease);
}
.btn-primary:hover img {
  transform: translateX(3px);
}
.btn-outline,
.btn-small {
  min-height: 40px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-red);
  border-radius: var(--radius-small);
  background: rgba(53, 0, 7, 0.3);
  color: #eee;
  font-size: 10px;
}
.btn-outline:hover,
.btn-small:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  background: rgba(112, 5, 18, 0.5);
  box-shadow: 0 0 12px rgba(255, 32, 57, 0.22);
}
.btn-ghost {
  background: rgba(7, 7, 7, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
}

/* Section headings */
.featured-section {
  grid-area: featured;
  min-width: 0;
}
.content-section {
  padding-top: 38px;
}
.content-section:last-of-type {
  padding-bottom: 58px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}
.section-heading h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.section-heading h2 img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 32, 57, 0.12));
}
.section-heading h2 img[src$="brazil-regions.webp"] {
  transform: scale(1.18);
}
.section-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #bdbdbd;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
}
.section-heading > a:hover {
  color: #fff;
}
.section-heading > a img {
  width: 9px;
  height: 12px;
  object-fit: contain;
  transition: transform 0.2s var(--ease);
}
.section-heading > a:hover img {
  transform: translateX(3px);
}
.section-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-copy {
  max-width: 620px;
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

/* Model cards */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 11px;
}
.model-card {
  --card-index: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 38, 58, 0.43);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #090909, #050505);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.42s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    opacity 0.25s var(--ease);
  animation: cardEnter 0.55s both var(--ease);
  animation-delay: calc(var(--card-index) * 55ms);
}
.model-card:hover,
.model-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(255, 32, 57, 0.86);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.45),
    0 0 26px rgba(255, 32, 57, 0.24);
}
.model-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0b0b0b;
}
.model-photo::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  z-index: 2;
  background: linear-gradient(transparent, rgba(2, 2, 2, 0.32));
  pointer-events: none;
}
.model-photo > img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.03);
  transition:
    opacity 0.18s var(--ease),
    transform 0.58s var(--ease),
    filter 0.45s var(--ease);
}
.model-card:hover .model-photo > img,
.model-card:focus-within .model-photo > img {
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.06);
}
.status-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 5;
  min-height: 23px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(98, 255, 137, 0.46);
  border-radius: var(--radius-small);
  background: rgba(2, 12, 5, 0.83);
  color: #eaffef;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(98, 255, 137, 0.72);
  animation: statusWake 2.2s ease-in-out infinite;
}
.status-badge.novo {
  border-color: var(--line-red);
  background: rgba(59, 0, 7, 0.83);
  animation: badgeThrob 2.4s ease-in-out infinite;
}
.status-badge.novo::before {
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.status-badge.exclusivo {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(8, 8, 8, 0.86);
}
.status-badge.exclusivo::before {
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.55);
}
.status-badge.producao {
  border-color: rgba(255, 32, 57, 0.4);
  background: rgba(25, 4, 7, 0.86);
  color: #ddd;
}
.status-badge.producao::before {
  background: #aaa;
  box-shadow: 0 0 7px rgba(255, 255, 255, 0.25);
  animation: none;
}
.model-hold-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050505;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transform: scale(1.025);
  pointer-events: none;
  transition:
    opacity 0.18s var(--ease),
    transform 0.65s var(--ease);
}
.model-photo.is-playing > img {
  opacity: 0;
}
.model-photo.is-playing .model-hold-video {
  opacity: 1;
  transform: scale(1);
}
.model-hold-zone {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}
.model-hold-zone:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -5px;
  box-shadow: inset 0 0 0 6px rgba(255, 32, 57, 0.38);
}
.model-hold-hint {
  position: absolute;
  z-index: 5;
  left: 10px;
  bottom: 10px;
  min-height: 40px;
  max-width: calc(100% - 20px);
  padding: 0 12px 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(4, 4, 4, 0.8);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.45),
    inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px) saturate(0.9);
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease),
    box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}
.model-hold-hint > img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 32, 57, 0.72));
}
.model-hold-label--active {
  display: none;
}
.model-hold-progress {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 34px;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  opacity: 0;
}
.model-hold-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff, var(--red));
  transform: translateX(-100%);
}
.model-photo.is-previewing .model-hold-hint {
  border-color: rgba(255, 55, 78, 0.9);
  background: rgba(39, 0, 6, 0.88);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 32, 57, 0.3);
  transform: translateY(-2px);
}
.model-photo.is-previewing .model-hold-label--idle {
  display: none;
}
.model-photo.is-previewing .model-hold-label--active {
  display: inline;
}
.model-photo.is-playing .model-hold-progress {
  opacity: 1;
}
.model-photo.is-playing .model-hold-progress::after {
  animation: modelHoldTimeline 4s linear infinite;
}
.model-photo.preview-unavailable .model-hold-hint {
  opacity: 0.55;
}
@keyframes modelHoldTimeline {
  to {
    transform: translateX(0);
  }
}

.favorite-button {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 6;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(2, 2, 2, 0.72);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.22s var(--ease);
}
.favorite-button::before {
  content: "\2661";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 19px;
  line-height: 1;
}
.favorite-button:hover,
.favorite-button.active {
  border-color: var(--red);
  background: rgba(85, 0, 11, 0.82);
  box-shadow: 0 0 11px rgba(255, 32, 57, 0.28);
  transform: scale(1.05);
}
.favorite-button.active::before {
  content: "♥";
  color: var(--red);
  text-shadow: 0 0 8px rgba(255, 32, 57, 0.55);
}
.model-body {
  padding: 11px 10px 10px;
}
.model-kicker {
  margin-bottom: 5px;
  color: #8f8f8f;
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.model-name {
  margin: 0 0 8px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  line-height: 1.05;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.model-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: #adadad;
  font-size: 9px;
}
.model-meta img {
  width: 13px;
  height: 13px;
  object-fit: contain;
  opacity: 0.9;
}
.model-actions {
  margin-top: 10px;
}
.model-actions .btn-outline {
  width: 100%;
  min-height: 34px;
}
.grid-transition {
  transition:
    opacity 0.16s var(--ease),
    transform 0.16s var(--ease);
}
.grid-transition.is-filtering {
  opacity: 0.22;
  transform: translateY(8px);
}

/* Ranking */
.ranking-scroller {
  overflow: hidden;
}
.ranking-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 9px;
}
.ranking-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 32, 57, 0.4);
  border-radius: var(--radius-card);
  background: #060606;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: 0.32s var(--ease);
}
.ranking-card:hover,
.ranking-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 0 16px rgba(255, 32, 57, 0.16);
}
.ranking-photo {
  position: relative;
  aspect-ratio: 0.68;
  overflow: hidden;
}
.ranking-photo > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s var(--ease);
}
.ranking-card:hover .ranking-photo > img:first-child {
  transform: scale(1.03);
}
.rank-number {
  position: absolute;
  top: 6px;
  left: 6px;
  min-width: 25px;
  height: 25px;
  padding-inline: 5px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  background: rgba(103, 0, 13, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow-red);
}
.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38px;
  height: 38px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 8px rgba(255, 32, 57, 0.22));
}
.ranking-info {
  padding: 9px 8px 10px;
}
.ranking-info strong {
  display: block;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.ranking-info span {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #969696;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Regions */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.region-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 32, 57, 0.4);
  border-radius: var(--radius-card);
  background: #070707;
  transition: 0.36s var(--ease);
}
.region-card:hover,
.region-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 0 18px rgba(255, 32, 57, 0.14);
}
.region-image {
  aspect-ratio: 1.5;
  overflow: hidden;
  background: #0b0b0b;
}
.region-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.88);
  transition: 0.55s var(--ease);
}
.region-card:hover .region-image img {
  transform: scale(1.035);
  filter: brightness(0.76) saturate(1);
}
.region-body {
  position: relative;
  padding: 14px;
}
.region-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  width: 46px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 7px rgba(255, 32, 57, 0.45);
}
.region-body h3 {
  margin: 0 0 5px;
  font-size: 17px;
  text-transform: uppercase;
}
.region-body p {
  margin: 0 0 12px;
  color: #9f9f9f;
  font-size: 10px;
}
.region-body .btn-outline {
  min-height: 33px;
  width: 100%;
}

/* Support and benefits */
.support-row {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 22px;
  padding-bottom: 52px;
}
.whatsapp-panel {
  min-width: 0;
  min-height: 100%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon copy"
    "icon action";
  align-content: center;
  column-gap: 22px;
  padding: 28px;
  border: 1px solid var(--line-red-soft);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(135deg, rgba(255, 32, 57, 0.11), transparent 36%),
    radial-gradient(circle at 8% 50%, rgba(126, 0, 18, 0.23), transparent 30%),
    linear-gradient(120deg, rgba(11, 7, 8, 0.98), rgba(4, 4, 4, 0.98));
  box-shadow: var(--shadow-panel);
}
.whatsapp-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.012) 80px);
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
.whatsapp-panel::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 126px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 32, 57, 0.48), transparent);
}
.whatsapp-panel > img {
  grid-area: icon;
  align-self: center;
  width: 76px;
  height: 76px;
  padding: 17px;
  border: 1px solid rgba(255, 32, 57, 0.32);
  border-radius: 22px;
  background: rgba(255, 32, 57, 0.075);
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(23%) sepia(97%) saturate(6227%) hue-rotate(345deg)
    brightness(108%) contrast(103%) drop-shadow(0 0 9px rgba(255, 32, 57, 0.42));
}
.whatsapp-panel h3 {
  grid-area: title;
  max-width: none;
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 700;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.whatsapp-panel p {
  grid-area: copy;
  max-width: 47ch;
  margin: 0 0 18px;
  color: #b6b6b6;
  font-size: 12px;
  line-height: 1.62;
}
.whatsapp-panel .btn-primary {
  grid-area: action;
  justify-self: start;
}
.benefits-grid {
  counter-reset: benefit;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: center;
}
.benefit {
  counter-increment: benefit;
  min-width: 0;
  min-height: 116px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 18px 42px 18px 18px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background:
    radial-gradient(circle at 38px 50%, rgba(255, 32, 57, 0.11), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.026), transparent 43%), rgba(6, 6, 6, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 18px 38px rgba(0, 0, 0, 0.16);
}
.benefit::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255, 32, 57, 0.78), transparent);
  box-shadow: 0 0 16px rgba(255, 32, 57, 0.32);
}
.benefit::after {
  content: "0" counter(benefit);
  position: absolute;
  top: 13px;
  right: 14px;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.benefit img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 9px rgba(255, 32, 57, 0.32));
}
.benefit h3 {
  max-width: 24ch;
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.benefit p {
  max-width: 35ch;
  margin: 0;
  color: #999;
  font-size: 10px;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 32, 57, 0.13);
  background: rgba(2, 2, 2, 0.88);
}
.footer-top {
  min-height: 102px;
  display: grid;
  grid-template-columns: 190px 1fr 130px;
  align-items: center;
  gap: 20px;
}
.footer-logo img {
  width: 178px;
  height: 78px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 8px rgba(255, 32, 57, 0.07));
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.footer-nav a {
  color: #bdbdbd;
  transition: color 0.2s var(--ease);
}
.footer-nav a:hover {
  color: #fff;
}
.socials {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
}
.socials a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: 0.2s var(--ease);
}
.socials a:hover {
  border-color: var(--red);
  background: rgba(255, 32, 57, 0.1);
  transform: translateY(-2px);
}
.socials img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}
.socials img[src$="whatsapp.svg"] {
  width: 21px;
  height: 21px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.12));
}
.footer-bottom {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #838383;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-bottom a:hover {
  color: #fff;
}

/* Inner pages */
.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 42px;
  border-bottom: 1px solid rgba(255, 32, 57, 0.12);
  background: radial-gradient(circle at 83% 18%, rgba(130, 0, 20, 0.2), transparent 29rem);
}
.inner-hero::before {
  content: "";
  position: absolute;
  right: 8%;
  top: -90px;
  width: 310px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-8deg);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.035);
}
.inner-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(45vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0.46;
}
.eyebrow {
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.inner-hero h1 {
  max-width: 900px;
  margin: 10px 0 13px;
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.inner-hero h1 span {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 32, 57, 0.42);
}
.inner-hero p {
  max-width: 690px;
  margin: 0;
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}
.page-content {
  padding: 34px 0 62px;
}
.page-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 21px;
}
.page-intro h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  text-transform: uppercase;
}
.page-intro p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.page-note {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-left: 2px solid var(--red);
  background: rgba(255, 32, 57, 0.045);
  color: #aaa;
  font-size: 11px;
  line-height: 1.55;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, auto)) auto;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: rgba(7, 7, 7, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}
.toolbar.single {
  grid-template-columns: minmax(180px, 260px) minmax(180px, 260px);
}
.field-control {
  height: 45px;
  width: 100%;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-control);
  outline: none;
  background: #090909;
  color: #fff;
  transition: 0.2s var(--ease);
}
.field-control::placeholder {
  color: #747474;
}
.field-control:hover {
  border-color: rgba(255, 255, 255, 0.23);
}
.field-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 10px rgba(255, 32, 57, 0.18);
}
select.field-control {
  cursor: pointer;
}
.filter-favorite {
  min-height: 45px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-control);
  background: #090909;
  color: #cfcfcf;
  font-size: 9px;
  white-space: nowrap;
}
.filter-favorite::before {
  content: "\2661";
  margin-right: 7px;
  color: var(--red);
  font-size: 16px;
}
.filter-favorite.active {
  border-color: var(--red);
  background: rgba(86, 0, 11, 0.52);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 32, 57, 0.16);
}
.filter-favorite.active::before {
  content: "♥";
}
.toolbar-meta {
  min-height: 33px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #8f8f8f;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.catalog-grid .model-name {
  font-size: 18px;
}
.catalog-grid .model-body {
  padding: 13px;
}
.catalog-grid .model-actions .btn-outline {
  min-height: 38px;
}
.pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.page-button {
  width: 39px;
  height: 39px;
  border: 1px solid var(--line-red);
  border-radius: var(--radius-control);
  background: #090909;
  cursor: pointer;
  transition: 0.22s var(--ease);
}
.page-button.active,
.page-button:hover {
  background: var(--red-deep);
  box-shadow: 0 0 12px rgba(255, 32, 57, 0.25);
  transform: translateY(-1px);
}
.empty-state {
  grid-column: 1 / -1;
  padding: 52px 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: #060606;
  color: #aaa;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.video-card {
  position: relative;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 32, 57, 0.46);
  border-radius: var(--radius-card);
  background: #070707;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: 0.34s var(--ease);
}
.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(255, 32, 57, 0.16);
}
.video-card > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.82);
  transition: 0.55s var(--ease);
}
.video-card:hover > img:first-child {
  transform: scale(1.035);
  filter: brightness(0.7) saturate(0.95);
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(2, 2, 2, 0.94));
}
.video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
}
.video-play img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  transition:
    transform 0.3s var(--ease),
    filter 0.3s var(--ease);
}
.video-card:hover .video-play img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 10px rgba(255, 32, 57, 0.28));
}
.video-caption {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 14px;
  z-index: 3;
}
.video-caption strong {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
}
.video-caption span {
  display: block;
  margin-top: 5px;
  color: #bdbdbd;
  font-size: 9px;
}
.motion-tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 32, 57, 0.38);
  border-radius: var(--radius-small);
  background: rgba(65, 0, 8, 0.62);
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 12px;
}
.plan-card {
  position: relative;
  padding: 31px 24px 26px;
  border: 1px solid rgba(255, 32, 57, 0.42);
  border-radius: var(--radius-panel);
  background: linear-gradient(180deg, #0a0a0a, #050505);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  transition: 0.34s var(--ease);
}
.plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(255, 32, 57, 0.12);
}
.plan-card.featured {
  transform: translateY(-8px);
  border-color: rgba(255, 32, 57, 0.82);
  box-shadow: var(--shadow-red);
}
.plan-card.featured:hover {
  transform: translateY(-12px);
}
.plan-label {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border: 1px solid rgba(255, 80, 95, 0.75);
  border-radius: var(--radius-small);
  background: linear-gradient(180deg, #971125, #62000d);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(255, 32, 57, 0.22);
}
.plan-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.plan-period {
  margin-top: 7px;
  color: #8d8d8d;
  font-size: 11px;
  text-transform: uppercase;
}
.plan-price {
  min-height: 58px;
  margin: 22px 0 17px;
  color: var(--red);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 32, 57, 0.32);
}
.plan-price small {
  display: block;
  margin-top: 8px;
  color: #a4a4a4;
  font-size: 10px;
  text-shadow: none;
  text-transform: uppercase;
}
.plan-list {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
.plan-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: #d3d3d3;
  font-size: 12px;
}
.plan-list li::before {
  content: "\2014";
  margin-right: 8px;
  color: var(--red);
}
.plan-card .btn-primary {
  width: 100%;
}
.plan-card.featured .btn-primary {
  animation: glowPulse 2.6s ease-in-out infinite;
}
.plan-card.featured .btn-primary:hover {
  animation: none;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.process-step {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #060606;
}
.process-step span {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.process-step h3 {
  margin: 11px 0 7px;
  font-size: 14px;
  text-transform: uppercase;
}
.process-step p {
  margin: 0;
  color: #929292;
  font-size: 11px;
  line-height: 1.5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.testimonial {
  position: relative;
  padding: 23px;
  border: 1px solid rgba(255, 32, 57, 0.38);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #080808, #050505);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  right: 18px;
  top: 5px;
  color: rgba(255, 32, 57, 0.2);
  font-family: Georgia, serif;
  font-size: 58px;
}
.testimonial .stars {
  margin: 0 0 13px;
}
.testimonial blockquote {
  margin: 0 0 17px;
  color: #d4d4d4;
  line-height: 1.58;
}
.testimonial strong {
  display: block;
  text-transform: uppercase;
}
.testimonial > div:last-child {
  margin-top: 4px;
  color: #8d8d8d;
  font-size: 10px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 18px;
}
.form-panel {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: #060606;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.form-field textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}
.form-field .field-hint {
  color: #7d7d7d;
  font-size: 9px;
  line-height: 1.4;
}
.admin-checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
}
.admin-checkbox-field input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex: none;
}
.form-submit {
  grid-column: 1 / -1;
}
.form-submit .btn-primary {
  min-width: 210px;
}
.contact-aside {
  padding: 25px;
  border: 1px solid var(--line-red-soft);
  border-radius: var(--radius-panel);
  background: radial-gradient(circle at 50% 0, rgba(105, 0, 15, 0.2), transparent 45%), #060606;
}
.contact-aside h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.contact-aside p {
  color: #a4a4a4;
  line-height: 1.55;
}
.contact-list {
  display: grid;
  gap: 11px;
  margin-top: 23px;
}
.contact-list div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: rgba(9, 9, 9, 0.84);
}
.contact-list strong {
  display: block;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.contact-list span {
  display: block;
  margin-top: 4px;
  color: #8f8f8f;
  font-size: 10px;
}

.faq details {
  margin-bottom: 10px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #060606;
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}
.faq details[open] {
  border-color: var(--line-red);
  background: #080405;
}
.faq summary {
  position: relative;
  padding: 19px 38px 19px 0;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--red);
  font-size: 21px;
  transform: translateY(-50%);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq p {
  margin: 0;
  padding: 0 0 19px;
  color: #b9b9b9;
  line-height: 1.65;
}
.legal-panel {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: #060606;
}
.legal-panel h2 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.legal-panel h2:first-child {
  margin-top: 0;
}
.legal-panel p,
.legal-panel li {
  color: #b9b9b9;
  line-height: 1.72;
}
.legal-panel a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 32, 57, 0.55);
  text-underline-offset: 3px;
}
.index-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.index-links .btn-outline {
  width: 100%;
}

/* Modal and toast */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s var(--ease),
    visibility 0s linear 0.28s;
}
.modal.open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.modal-card {
  width: min(820px, 100%);
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 43% 57%;
  border: 1px solid var(--line-red);
  border-radius: var(--radius-panel);
  background: #070707;
  box-shadow:
    var(--shadow-red),
    0 28px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(16px) scale(0.985);
  opacity: 0;
  transition:
    transform 0.42s var(--ease),
    opacity 0.35s var(--ease);
}
.modal.open .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-photo {
  min-height: 550px;
  overflow: hidden;
  background: #0a0a0a;
}
.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imageCrossfade 0.5s both var(--ease);
}
.modal-copy {
  position: relative;
  padding: 38px 30px;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 13px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.82);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s var(--ease);
}
.modal-close:hover {
  border-color: var(--red);
  background: rgba(84, 0, 10, 0.7);
  transform: rotate(4deg);
}
.modal-copy h2 {
  margin: 9px 0 12px;
  padding-right: 35px;
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
}
.modal-copy p {
  color: #bdbdbd;
  line-height: 1.6;
}
.modal-meta {
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.modal-meta span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #0a0a0a;
  color: #c9c9c9;
  font-size: 9px;
  text-transform: uppercase;
}
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 23px;
}
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 400;
  max-width: min(390px, calc(100% - 40px));
  padding: 14px 17px;
  border: 1px solid var(--line-red);
  border-radius: 9px;
  background: #090909;
  box-shadow: var(--shadow-red);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.25s var(--ease);
}
.toast.show {
  opacity: 1;
  transform: none;
}

/* Admin */
.admin-body {
  background: #020202;
}
.admin-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-red-soft);
  background: rgba(3, 3, 3, 0.94);
  backdrop-filter: blur(14px);
}
.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.login-shell {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.login-alert {
  font-size: 0.95rem;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.admin-brand img {
  width: 145px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: screen;
}
.admin-brand span {
  padding-left: 15px;
  border-left: 1px solid var(--line);
  color: #a5a5a5;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.admin-layout {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
}
.admin-sidebar {
  padding: 26px 18px;
  border-right: 1px solid var(--line);
  background: #050505;
}
.admin-sidebar h1 {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 22px;
  text-transform: uppercase;
}
.admin-sidebar > p {
  margin: 0 0 22px;
  color: #858585;
  font-size: 10px;
  line-height: 1.5;
}
.admin-nav {
  display: grid;
  gap: 7px;
}
.admin-nav button {
  min-height: 43px;
  padding: 0 12px;
  text-align: left;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: transparent;
  color: #c8c8c8;
  cursor: pointer;
  transition: 0.2s var(--ease);
}
.admin-nav button:hover,
.admin-nav button.active {
  border-color: var(--line-red);
  background: #100205;
  color: #fff;
}
.admin-main {
  padding: 30px;
  min-width: 0;
}
.admin-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.admin-panel-head h2 {
  margin: 0;
  font-size: 28px;
  text-transform: uppercase;
}
.admin-panel-head p {
  margin: 5px 0 0;
  color: #8c8c8c;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-bottom: 20px;
}
.admin-stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #070707;
}
.admin-stat strong {
  display: block;
  font-size: 26px;
}
.admin-stat span {
  display: block;
  margin-top: 5px;
  color: #8e8e8e;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.admin-tools {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.admin-tools .field-control {
  max-width: 350px;
}
.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #060606;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.admin-table tr:last-child td {
  border-bottom: 0;
}
.admin-table th {
  color: var(--red);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-table td {
  color: #c5c5c5;
  font-size: 12px;
}
.admin-model-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-model-cell img {
  width: 42px;
  height: 52px;
  object-fit: cover;
  border: 1px solid var(--line-red-soft);
  border-radius: var(--radius-small);
}
.admin-actions {
  display: flex;
  gap: 7px;
}
.admin-actions .btn-outline {
  min-height: 34px;
}
.admin-form-panel {
  max-width: 900px;
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  filter: blur(7px);
  will-change: opacity, transform, filter;
}
.js .reveal.visible {
  animation: revealIn 0.85s forwards var(--ease);
}
.ambient-paused,
.ambient-paused * {
  animation-play-state: paused !important;
}
.motion-suspended * {
  animation-play-state: paused !important;
}
.stagger > * {
  --card-index: 0;
}
.video-card,
.region-card,
.testimonial,
.process-step,
.benefit {
  animation: cardEnter 0.6s both var(--ease);
  animation-delay: calc(var(--card-index) * 60ms);
}
.stagger > *:nth-child(2) {
  --card-index: 1;
}
.stagger > *:nth-child(3) {
  --card-index: 2;
}
.stagger > *:nth-child(4) {
  --card-index: 3;
}
.stagger > *:nth-child(5) {
  --card-index: 4;
}
.stagger > *:nth-child(6) {
  --card-index: 5;
}
.stagger > *:nth-child(7) {
  --card-index: 6;
}
.stagger > *:nth-child(8) {
  --card-index: 7;
}
.stagger > *:nth-child(9) {
  --card-index: 8;
}
.stagger > *:nth-child(10) {
  --card-index: 9;
}
.stagger > *:nth-child(11) {
  --card-index: 10;
}
.stagger > *:nth-child(12) {
  --card-index: 11;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes revealIn {
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 rgba(255, 32, 57, 0),
      0 10px 26px rgba(255, 32, 57, 0.28);
  }
  50% {
    box-shadow:
      0 0 22px rgba(255, 32, 57, 0.55),
      0 12px 34px rgba(255, 32, 57, 0.4);
  }
}
@keyframes shine {
  from {
    transform: translateX(-140%) skewX(-18deg);
  }
  to {
    transform: translateX(240%) skewX(-18deg);
  }
}
@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
@keyframes badgeThrob {
  50% {
    transform: scale(1.08);
  }
}
@keyframes livePulse {
  50% {
    opacity: 0.35;
    transform: scale(0.82);
  }
}
@keyframes portraitFloat {
  50% {
    transform: translateY(-8px);
  }
}
@keyframes haloDrift {
  50% {
    transform: translate(8px, -5px) scale(1.04);
    opacity: 0.72;
  }
}
@keyframes heroLightPass {
  0%,
  18% {
    background-position:
      180% 0,
      0 0,
      0 0;
  }
  55%,
  100% {
    background-position:
      -85% 0,
      0 0,
      0 0;
  }
}
@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes imageCrossfade {
  from {
    opacity: 0.2;
    transform: scale(1.018);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes statusWake {
  50% {
    opacity: 0.52;
    transform: scale(0.8);
  }
}

@media (max-width: 1180px) {
  .header-row {
    gap: 17px;
  }
  .logo {
    width: 182px;
  }
  .main-nav {
    gap: 13px;
  }
  .main-nav a {
    font-size: 10px;
  }
  .header-whatsapp {
    padding-inline: 11px;
  }
  .hero-copy {
    width: 58%;
  }
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ranking-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .regions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog-grid,
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .toolbar {
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(145px, auto));
  }
  .toolbar .filter-favorite {
    grid-column: auto;
  }
}

@media (max-width: 940px) {
  .shell {
    width: min(calc(100% - 28px), var(--content));
  }
  .header-row {
    min-height: 80px;
  }
  .logo {
    width: 158px;
  }
  .logo img {
    height: 66px;
  }
  .menu-button {
    display: block;
    margin-left: auto;
  }
  .header-whatsapp {
    display: none;
  }
  .main-nav {
    position: fixed;
    inset: 80px 14px auto;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    display: flex;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    border: 1px solid var(--line-red);
    border-radius: 0 0 var(--radius-panel) var(--radius-panel);
    background: rgba(3, 3, 3, 0.985);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.62),
      0 0 24px rgba(255, 32, 57, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-9px);
    transition:
      opacity 0.26s var(--ease),
      transform 0.26s var(--ease),
      visibility 0s linear 0.26s;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .main-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }
  .main-nav a:last-child {
    border-bottom: 0;
  }
  .main-nav a::before {
    display: none;
  }
  .main-nav a::after {
    left: 12px;
    right: auto;
    bottom: 8px;
    width: 42px;
  }
  .main-nav.open a {
    animation: menuItemEnter 0.36s both var(--ease);
  }
  .main-nav.open a:nth-child(2) {
    animation-delay: 30ms;
  }
  .main-nav.open a:nth-child(3) {
    animation-delay: 60ms;
  }
  .main-nav.open a:nth-child(4) {
    animation-delay: 90ms;
  }
  .main-nav.open a:nth-child(5) {
    animation-delay: 120ms;
  }
  .main-nav.open a:nth-child(6) {
    animation-delay: 150ms;
  }
  .main-nav.open a:nth-child(7) {
    animation-delay: 180ms;
  }
  .main-nav.open a:nth-child(8) {
    animation-delay: 210ms;
  }
  .js .reveal {
    transform: translateY(18px);
    filter: none;
  }
  .home-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "hero" "featured" "rail";
  }
  .live-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .live-title,
  .premium-box,
  .live-note {
    grid-column: 1 / -1;
  }
  .live-item {
    min-height: 96px;
    border-right: 1px dashed rgba(255, 255, 255, 0.075);
  }
  .hero-panel {
    min-height: 500px;
  }
  .hero-copy {
    width: 61%;
    padding-left: 26px;
  }
  .hero-presence {
    width: 55%;
    right: -34px;
  }
  .support-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    padding-block: 20px;
  }
  .footer-nav,
  .socials {
    justify-content: flex-start;
  }
  .footer-bottom {
    padding-block: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .toolbar {
    grid-template-columns: 1fr 1fr;
  }
  .toolbar > :first-child {
    grid-column: 1 / -1;
  }
  .catalog-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card.featured,
  .plan-card.featured:hover {
    transform: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-layout {
    grid-template-columns: 1fr;
  }
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .admin-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@keyframes menuItemEnter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  body::after {
    opacity: 0.065;
    mix-blend-mode: normal;
  }
  .site-header {
    background: rgba(2, 2, 2, 0.97);
    backdrop-filter: none;
  }
  .shell {
    width: min(calc(100% - 20px), var(--content));
  }
  .region-title {
    display: none;
  }
  .region-row {
    min-height: 52px;
  }
  .region-pill {
    min-width: 88px;
  }
  .hero-panel {
    min-height: 570px;
  }
  .hero-copy {
    width: 100%;
    padding: 43px 18px 35px;
  }
  .hero-brand {
    max-width: 250px;
    margin-bottom: 17px;
    font-size: 8px;
  }
  .hero-title {
    max-width: 340px;
    font-size: clamp(39px, 12.2vw, 54px);
    text-shadow:
      0 0 7px rgba(255, 255, 255, 0.38),
      0 8px 24px rgba(0, 0, 0, 0.92);
  }
  .hero-copy > p {
    max-width: 265px;
    font-size: 13px;
    line-height: 1.55;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 205px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
  }
  .hero-meta {
    max-width: 245px;
    gap: 7px 11px;
    font-size: 7px;
  }
  .hero-presence {
    top: 82px;
    width: 73%;
    right: -112px;
    opacity: 0.78;
  }
  .hero-panel::before {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.86) 54%, transparent 100%),
      linear-gradient(
        112deg,
        transparent 33%,
        rgba(255, 255, 255, 0.028) 46%,
        rgba(255, 32, 57, 0.06) 50%,
        transparent 64%
      ),
      repeating-linear-gradient(90deg, transparent 0 105px, rgba(255, 255, 255, 0.012) 106px);
    background-size:
      auto,
      220% 100%,
      auto;
    animation: none;
  }
  .hero-panel::after {
    left: 17px;
    right: 17px;
  }
  .live-rail {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .model-name {
    font-size: 12px;
  }
  .favorite-button {
    width: 40px;
    height: 40px;
  }
  .page-button {
    width: 44px;
    height: 44px;
  }
  .ranking-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .ranking-grid::-webkit-scrollbar {
    display: none;
  }
  .ranking-card {
    flex: 0 0 104px;
    scroll-snap-align: start;
  }
  .regions-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .regions-grid::-webkit-scrollbar {
    display: none;
  }
  .region-card {
    flex: 0 0 235px;
    scroll-snap-align: start;
  }
  .whatsapp-panel {
    min-height: auto;
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 18px;
    padding: 24px;
  }
  .whatsapp-panel > img {
    width: 64px;
    height: 64px;
    padding: 14px;
    border-radius: 18px;
  }
  .whatsapp-panel::after {
    left: 106px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .benefit {
    min-height: 94px;
    padding: 15px 40px 15px 16px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    border-radius: 16px;
  }
  .benefit img {
    width: 38px;
    height: 38px;
  }
  .whatsapp-panel {
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "copy copy"
      "action action";
    column-gap: 14px;
    padding: 20px;
  }
  .whatsapp-panel > img {
    width: 54px;
    height: 54px;
    padding: 12px;
    border-radius: 16px;
  }
  .whatsapp-panel h3 {
    font-size: clamp(21px, 7vw, 26px);
  }
  .whatsapp-panel p {
    margin-top: 16px;
    font-size: 11px;
  }
  .whatsapp-panel .btn-primary {
    width: 100%;
  }
  .whatsapp-panel::after {
    right: 20px;
    left: 88px;
  }
  .inner-hero {
    padding: 48px 0 34px;
  }
  .inner-hero h1 {
    font-size: clamp(39px, 12vw, 58px);
  }
  .page-intro {
    align-items: flex-start;
    flex-direction: column;
  }
  .catalog-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
  .toolbar,
  .toolbar.single {
    grid-template-columns: 1fr;
  }
  .toolbar > :first-child {
    grid-column: auto;
  }
  .toolbar-meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .testimonials-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field.full,
  .form-submit {
    grid-column: auto;
  }
  .form-submit .btn-primary {
    width: 100%;
  }
  .modal {
    padding: 10px;
  }
  .modal-card {
    grid-template-columns: 1fr;
  }
  .modal-photo {
    min-height: 300px;
    max-height: 42vh;
  }
  .modal-copy {
    padding: 28px 20px;
  }
  .modal-copy h2 {
    font-size: 30px;
  }
  .modal-actions {
    flex-direction: column;
  }
  .modal-actions .btn-primary,
  .modal-actions .btn-outline {
    width: 100%;
  }
  .index-links {
    grid-template-columns: 1fr;
  }
  .admin-header {
    padding-inline: 12px;
  }
  .admin-brand img {
    width: 125px;
  }
  .admin-brand span {
    display: none;
  }
  .admin-main {
    padding: 18px 10px;
  }
  .admin-nav {
    grid-template-columns: 1fr;
  }
  .admin-stats {
    grid-template-columns: 1fr;
  }
  .admin-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Stage 2 — visual system and cinematic internal pages */
.inner-hero {
  --page-accent-x: 78%;
  min-height: clamp(300px, 34vw, 430px);
  display: grid;
  align-items: center;
  overflow: clip;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 32, 57, 0.18);
  background:
    radial-gradient(circle at var(--page-accent-x) 46%, rgba(157, 0, 22, 0.25), transparent 25rem),
    linear-gradient(112deg, rgba(255, 255, 255, 0.025), transparent 26%),
    linear-gradient(180deg, #060203 0%, #020202 100%);
}
.inner-hero::before {
  inset: 0;
  opacity: 0.68;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.95) 0%, rgba(2, 2, 2, 0.66) 52%, transparent 82%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.018) 120px),
    repeating-linear-gradient(0deg, transparent 0 89px, rgba(255, 255, 255, 0.012) 90px);
}
.inner-hero::after {
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(2, 2, 2, 0.96));
}
.inner-hero .shell {
  position: relative;
  z-index: 2;
  padding-block: var(--space-7);
}
.inner-hero .shell::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -22px;
  width: 2px;
  height: min(140px, 48%);
  background: linear-gradient(transparent, var(--red), transparent);
  box-shadow: 0 0 18px rgba(255, 32, 57, 0.6);
  transform: translateY(-50%);
}
.inner-hero .shell::after {
  content: "RZ / PRIVATE";
  position: absolute;
  right: 0;
  bottom: 32px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}
body[data-page="videos"] .inner-hero,
body[data-page="depoimentos"] .inner-hero {
  --page-accent-x: 84%;
}
body[data-page="planos"] .inner-hero,
body[data-page="anunciar"] .inner-hero {
  --page-accent-x: 68%;
}
.inner-hero h1 {
  max-width: 880px;
  text-wrap: balance;
}
.inner-hero p {
  max-width: 650px;
  font-size: clamp(14px, 1.35vw, 17px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 8px rgba(255, 32, 57, 0.52);
}
.page-content {
  padding-top: clamp(30px, 4vw, 54px);
  padding-bottom: clamp(54px, 7vw, 88px);
}
.page-note {
  position: relative;
  max-width: var(--content-reading);
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(255, 32, 57, 0.22);
  border-radius: var(--radius-control);
  background: linear-gradient(90deg, rgba(78, 0, 11, 0.22), rgba(8, 8, 8, 0.72));
}
.page-note::before {
  content: "18+";
  position: absolute;
  left: 12px;
  top: 50%;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: translateY(-50%);
}

.btn-primary,
.btn-outline,
.btn-small,
.filter-favorite,
.page-button {
  min-height: var(--control-height);
  border-radius: var(--radius-control);
  transition-duration: var(--duration-base);
  transition-timing-function: var(--ease-emphasis);
}
.btn-primary,
.btn-outline,
.btn-small {
  padding-inline: 18px;
}
.btn-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(135deg, #9c1024, #58000a 66%, #360005);
}
.btn-primary[aria-busy="true"] {
  cursor: progress;
  filter: saturate(0.55);
  pointer-events: none;
}
.btn-primary[aria-busy="true"]::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: #fff;
  border-radius: 50%;
  animation: controlSpin 0.7s linear infinite;
}
.btn-outline,
.btn-small {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(65, 0, 9, 0.24));
}

.toolbar {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 100% 0, rgba(106, 0, 15, 0.15), transparent 36%), var(--surface-1);
  box-shadow: var(--shadow-panel);
}
.toolbar-meta {
  padding-inline: 4px;
}
.field-control,
.filter-favorite {
  min-height: var(--control-height);
  height: auto;
  background: linear-gradient(180deg, #0b0b0b, #070707);
}
.field-control:focus-visible,
.filter-favorite:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.model-card,
.region-card,
.video-card,
.plan-card,
.testimonial,
.process-step,
.form-panel,
.contact-aside,
.legal-panel,
.faq details,
.empty-state {
  border-color: rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 100% 0, rgba(94, 0, 13, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(5, 5, 5, 0.98));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.025);
}
.model-card,
.region-card,
.video-card,
.plan-card {
  isolation: isolate;
}
.model-card::before,
.region-card::before,
.video-card::before,
.plan-card::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: -1px;
  left: 12%;
  width: 46%;
  height: 1px;
  pointer-events: none;
  opacity: 0.46;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 11px rgba(255, 32, 57, 0.55);
  transition:
    width var(--duration-slow) var(--ease-emphasis),
    opacity var(--duration-base) var(--ease-standard),
    left var(--duration-slow) var(--ease-emphasis);
}
.model-card:hover::before,
.model-card:focus-within::before,
.region-card:hover::before,
.region-card:focus-visible::before,
.video-card:hover::before,
.video-card:focus-visible::before,
.plan-card:hover::before,
.plan-card:focus-within::before {
  left: 4%;
  width: 92%;
  opacity: 0.9;
}
.model-card:hover,
.model-card:focus-within,
.region-card:hover,
.region-card:focus-visible,
.video-card:hover,
.video-card:focus-visible,
.plan-card:hover,
.plan-card:focus-within {
  border-color: rgba(255, 32, 57, 0.72);
}
.model-body,
.region-body {
  position: relative;
  z-index: 2;
}
.model-actions .btn-outline {
  width: 100%;
}
.empty-state::before {
  content: "◇";
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 28px;
}

.video-card {
  aspect-ratio: 3 / 4;
  min-height: 0;
}
.video-card > img:first-child {
  position: absolute;
  inset: 0;
}
.video-card::after {
  inset: 28% 0 0;
  background:
    linear-gradient(180deg, transparent, rgba(2, 2, 2, 0.44) 28%, rgba(2, 2, 2, 0.98)),
    linear-gradient(90deg, rgba(255, 32, 57, 0.08), transparent 28%);
}
.video-play {
  place-items: start end;
  padding: 16px;
}
.video-play img {
  width: 54px;
  height: 54px;
}
.video-caption strong {
  font-size: clamp(14px, 1.35vw, 18px);
  letter-spacing: 0.015em;
}
.motion-tag {
  width: fit-content;
  background: rgba(72, 0, 10, 0.76);
  backdrop-filter: blur(8px);
}

.plan-card {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  padding: 36px 28px 28px;
}
.plan-label {
  z-index: 6;
}
.plan-card.featured {
  background:
    radial-gradient(circle at 50% 0, rgba(159, 0, 24, 0.28), transparent 37%),
    linear-gradient(180deg, #100609, #050505 68%);
}
.plan-card h2 {
  font-size: clamp(27px, 2.4vw, 34px);
}
.plan-period {
  letter-spacing: 0.12em;
}
.plan-price {
  margin-block: 26px 20px;
  font-size: clamp(32px, 3vw, 42px);
}
.plan-list {
  flex: 1;
}
.plan-list li {
  position: relative;
  padding: 11px 0 11px 24px;
  line-height: 1.45;
}
.plan-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 9px;
  height: 5px;
  border-left: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  transform: rotate(-45deg);
}
.plan-card .btn-primary {
  margin-top: auto;
}
.process-step {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 22px;
}
.process-step::after {
  content: attr(data-step);
  position: absolute;
  right: 12px;
  bottom: -20px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display);
  font-size: 88px;
}
.process-step h3 {
  font-size: 15px;
}
.process-step p {
  font-size: 12px;
}

.testimonial {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
  transition:
    transform var(--duration-base) var(--ease-emphasis),
    border-color var(--duration-base) var(--ease-standard),
    box-shadow var(--duration-base) var(--ease-standard);
}
.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 32, 57, 0.55);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.34),
    0 0 20px rgba(255, 32, 57, 0.09);
}
.testimonial blockquote {
  flex: 1;
  font-size: 14px;
}

.form-panel,
.contact-aside,
.legal-panel {
  padding: clamp(22px, 3vw, 34px);
}
.form-panel {
  position: relative;
  overflow: hidden;
}
.form-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(transparent, rgba(255, 32, 57, 0.8), transparent);
}
.form-grid {
  gap: 18px;
}
.form-field label {
  color: #d9d9d9;
  letter-spacing: 0.09em;
}
.form-field:has([required]) label::after {
  content: " *";
  color: var(--red);
}
.form-field .field-hint {
  font-size: 10px;
}
.field-control:user-invalid,
.field-control[aria-invalid="true"] {
  border-color: #ff5a6e;
  box-shadow: 0 0 0 3px rgba(255, 32, 57, 0.1);
}
.field-control:user-valid {
  border-color: rgba(98, 255, 137, 0.32);
}
.form-status {
  min-height: 20px;
  grid-column: 1 / -1;
  margin: 0;
  color: #bdbdbd;
  font-size: 11px;
  line-height: 1.5;
}
.form-status.error {
  color: #ff8a99;
}
.form-status.success {
  color: #9dffb4;
}
.contact-aside {
  position: relative;
  overflow: hidden;
}
.contact-aside::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 32, 57, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 26px rgba(255, 32, 57, 0.025),
    0 0 0 52px rgba(255, 32, 57, 0.018);
  pointer-events: none;
}
.contact-list div {
  position: relative;
  padding: 14px 14px 14px 18px;
}
.contact-list div::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 2px;
  background: linear-gradient(transparent, var(--red), transparent);
}
.faq details {
  overflow: clip;
}
.faq summary {
  min-height: 60px;
  display: flex;
  align-items: center;
}
.faq details[open] {
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(255, 32, 57, 0.06);
}
.legal-panel {
  max-width: 980px;
  margin-inline: auto;
}
.legal-panel h2 {
  position: relative;
  padding-left: 18px;
}
.legal-panel h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 2px;
  height: 1em;
  background: var(--red);
  box-shadow: 0 0 9px rgba(255, 32, 57, 0.48);
}

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px) saturate(0.85);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--duration-base) var(--ease-standard),
    visibility 0s linear var(--duration-base);
}
.preview-modal.open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.preview-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(360px, 1.05fr);
  border: 1px solid rgba(255, 32, 57, 0.58);
  border-radius: var(--radius-panel);
  background: #060606;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.72),
    0 0 38px rgba(255, 32, 57, 0.14);
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 360ms var(--ease-emphasis),
    transform 540ms var(--ease-emphasis);
}
.preview-modal.open .preview-dialog {
  opacity: 1;
  transform: none;
}
.preview-stage {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #090909;
}
.preview-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 42%, rgba(0, 0, 0, 0.74)),
    linear-gradient(90deg, transparent 76%, rgba(255, 32, 57, 0.11));
  pointer-events: none;
}
.preview-stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.86) contrast(1.06) brightness(0.76);
}
.preview-modal.open .preview-stage > img {
  animation: previewKenBurns 8s both var(--ease-standard);
}
.preview-lock {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-small);
  background: rgba(3, 3, 3, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}
.preview-progress {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}
.preview-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #7c0010, var(--red), #ff7485);
  box-shadow: 0 0 10px rgba(255, 32, 57, 0.7);
  transform: scaleX(0);
  transform-origin: left;
}
.preview-modal.open .preview-progress i {
  animation: previewTimeline 6s 250ms both linear;
}
.preview-copy {
  position: relative;
  padding: clamp(36px, 5vw, 66px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0, rgba(126, 0, 18, 0.24), transparent 38%),
    linear-gradient(180deg, #0a0a0a, #050505);
}
.preview-copy h2 {
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}
.preview-copy > p {
  margin: 0;
  color: #bcbcbc;
  line-height: 1.7;
}
.preview-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.preview-meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.025);
  color: #d0d0d0;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.preview-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.preview-actions .btn-primary,
.preview-actions .btn-outline {
  flex: 1 1 190px;
}
.preview-dialog .modal-close {
  z-index: 6;
}

@keyframes controlSpin {
  to {
    transform: rotate(1turn);
  }
}
@keyframes previewKenBurns {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.5%, -1%, 0);
  }
}
@keyframes previewTimeline {
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 940px) {
  .inner-hero .shell::after {
    display: none;
  }
  .preview-dialog {
    grid-template-columns: minmax(260px, 0.8fr) minmax(330px, 1.2fr);
  }
  .preview-stage {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .inner-hero {
    min-height: 300px;
    background:
      radial-gradient(circle at 90% 34%, rgba(157, 0, 22, 0.2), transparent 18rem),
      linear-gradient(180deg, #060203, #020202);
  }
  .inner-hero .shell {
    padding-block: 42px;
  }
  .inner-hero .shell::before {
    left: 0;
    height: 92px;
  }
  .inner-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }
  .eyebrow::before {
    width: 22px;
  }
  .page-note {
    padding-left: 14px;
  }
  .page-note::before {
    position: static;
    display: block;
    margin-bottom: 6px;
    transform: none;
  }
  .toolbar {
    padding: 10px;
  }
  .plan-card {
    min-height: auto;
    padding: 32px 22px 24px;
  }
  .process-step,
  .testimonial {
    min-height: auto;
  }
  .preview-modal {
    align-items: end;
    padding: 8px;
  }
  .preview-dialog {
    max-height: 94vh;
    grid-template-columns: 1fr;
    border-radius: var(--radius-panel) var(--radius-panel) 0 0;
  }
  .preview-stage {
    min-height: 260px;
    max-height: 36vh;
  }
  .preview-copy {
    padding: 28px 20px 24px;
  }
  .preview-copy h2 {
    font-size: clamp(34px, 12vw, 48px);
  }
  .preview-actions {
    flex-direction: column;
  }
  .preview-actions .btn-primary,
  .preview-actions .btn-outline {
    flex-basis: auto;
    width: 100%;
  }
}

@media (hover: none) {
  .model-hold-hint {
    transform: none;
  }

  .model-card:hover,
  .region-card:hover,
  .video-card:hover,
  .ranking-card:hover,
  .plan-card:hover {
    transform: none;
  }
}

@media (update: slow), (prefers-reduced-transparency: reduce) {
  body::after {
    display: none;
  }
  .site-header,
  .modal,
  .preview-modal {
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .model-hold-video,
  .model-hold-hint,
  .model-photo > img {
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal,
  .js .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .hero-panel {
    --pointer-x: 0px !important;
    --pointer-y: 0px !important;
  }
}

/* Stage 4 — cinematic choreography and progressive continuity */
@view-transition {
  navigation: auto;
}

.site-header {
  view-transition-name: rz-header;
}
.logo {
  view-transition-name: rz-logo;
}
.region-bar {
  view-transition-name: rz-region-bar;
}
.hero-title,
.inner-hero h1 {
  view-transition-name: rz-page-heading;
}

::view-transition-group(root) {
  animation-duration: 560ms;
  animation-timing-function: var(--ease-emphasis);
}
::view-transition-old(root) {
  animation: rzPageOut 360ms both var(--ease-standard);
}
::view-transition-new(root) {
  animation: rzPageIn 560ms both var(--ease-emphasis);
}
::view-transition-group(rz-header),
::view-transition-group(rz-logo),
::view-transition-group(rz-region-bar) {
  animation-duration: 430ms;
  animation-timing-function: var(--ease-emphasis);
}
::view-transition-old(rz-page-heading) {
  animation: rzHeadingOut 280ms both var(--ease-standard);
}
::view-transition-new(rz-page-heading) {
  animation: rzHeadingIn 640ms 60ms both var(--ease-emphasis);
}
::view-transition-group(rz-shared-media) {
  z-index: 520;
  overflow: hidden;
  border-radius: var(--radius-panel);
  animation-duration: 680ms;
  animation-timing-function: var(--ease-emphasis);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.72),
    0 0 42px rgba(255, 32, 57, 0.2);
}
::view-transition-old(rz-shared-media),
::view-transition-new(rz-shared-media) {
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}
::view-transition-group(rz-dynamic-grid) {
  animation-duration: 420ms;
  animation-timing-function: var(--ease-emphasis);
}
::view-transition-old(rz-dynamic-grid) {
  animation: rzGridOut 180ms both var(--ease-standard);
}
::view-transition-new(rz-dynamic-grid) {
  animation: rzGridIn 420ms both var(--ease-emphasis);
}

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  display: grid;
  place-items: center;
  pointer-events: none;
  visibility: hidden;
  clip-path: inset(0 0 0 100%);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 22%),
    radial-gradient(circle at 64% 50%, rgba(255, 32, 57, 0.24), transparent 30rem), #050203;
  transition:
    clip-path 320ms var(--ease-emphasis),
    visibility 0s linear 320ms;
}
.page-curtain::before,
.page-curtain::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.page-curtain::before {
  inset: 0;
  opacity: 0.2;
  background:
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.025) 120px),
    linear-gradient(112deg, transparent 34%, rgba(255, 32, 57, 0.2) 50%, transparent 66%);
}
.page-curtain::after {
  top: 0;
  bottom: 0;
  left: 13%;
  width: 1px;
  background: linear-gradient(transparent, var(--red), transparent);
  box-shadow: 0 0 22px rgba(255, 32, 57, 0.72);
}
.page-curtain.is-active {
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition-delay: 0s;
}
.page-curtain__brand,
.page-curtain__destination {
  position: absolute;
  z-index: 2;
  text-transform: uppercase;
}
.page-curtain__brand {
  left: 13%;
  top: 50%;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 112px);
  font-style: italic;
  letter-spacing: -0.04em;
  transform: translate(-1px, -58%);
  text-shadow: 0 0 24px rgba(255, 32, 57, 0.26);
}
.page-curtain__line {
  position: absolute;
  z-index: 3;
  left: 13%;
  top: calc(50% + clamp(28px, 5vw, 68px));
  width: min(42vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 14px rgba(255, 32, 57, 0.6);
  transform-origin: left;
  animation: curtainLine 700ms both var(--ease-emphasis);
}
.page-curtain__destination {
  right: 8%;
  bottom: 9%;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}
body.page-leaving {
  cursor: progress;
}
body.page-leaving main,
body.page-leaving .site-footer {
  opacity: 0.42;
  transform: scale(0.992);
  transition:
    opacity 240ms var(--ease-standard),
    transform 320ms var(--ease-standard);
}

.scene-indicator {
  --scene-progress: 0.25;
  position: fixed;
  z-index: 265;
  right: max(18px, calc((100vw - var(--content)) / 2 - 56px));
  top: 50%;
  width: 24px;
  height: min(330px, 52vh);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  justify-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.42);
  pointer-events: none;
  transform: translateY(-44%);
}
.scene-indicator__page,
.scene-indicator__label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
}
.scene-indicator__page {
  color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.scene-indicator__track {
  position: relative;
  width: 1px;
  min-height: 90px;
  background: rgba(255, 255, 255, 0.12);
}
.scene-indicator__track i {
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--red), rgba(255, 32, 57, 0.18));
  box-shadow: 0 0 9px rgba(255, 32, 57, 0.52);
  transform: scaleY(var(--scene-progress));
  transform-origin: top;
  transition: transform 620ms var(--ease-emphasis);
}
.scene-indicator__count {
  color: #e2e2e2;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.scene-indicator__label {
  max-height: 110px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
  transition:
    color var(--duration-base) var(--ease-standard),
    opacity var(--duration-base) var(--ease-standard);
}

.cinematic-scene {
  scroll-margin-top: 120px;
}
.cinematic-scene .section-heading h2::after {
  content: "";
  width: 44px;
  height: 1px;
  margin-left: 4px;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 8px rgba(255, 32, 57, 0.42);
  opacity: 0.34;
  transform: scaleX(0.28);
  transform-origin: left;
  transition:
    transform 720ms var(--ease-emphasis),
    opacity 420ms var(--ease-standard);
}
.cinematic-scene.scene-active .section-heading h2::after {
  opacity: 0.9;
  transform: scaleX(1);
}
.cinematic-scene .page-intro {
  position: relative;
}
.cinematic-scene .page-intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: -15px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 9px rgba(255, 32, 57, 0.5);
  transition: width 820ms var(--ease-emphasis);
}
.cinematic-scene.scene-active .page-intro::before {
  width: min(220px, 42vw);
}

.inner-hero,
.hero-panel {
  --cinematic-grid-shift: 0px;
  --cinematic-fade-shift: 0px;
  --cinematic-progress: 0;
}
.inner-hero::before {
  transform: translate3d(0, var(--cinematic-grid-shift), 0) scale(1.035);
  transform-origin: center;
  transition: opacity 500ms var(--ease-standard);
}
.inner-hero::after {
  transform: translate3d(0, var(--cinematic-fade-shift), 0);
}
.hero-panel::before {
  transform: translate3d(0, var(--cinematic-grid-shift), 0) scale(1.02);
  transform-origin: center;
}

body.page-enter .site-header {
  animation: cinematicHeaderIn 620ms both var(--ease-emphasis);
}
body.page-enter .region-bar {
  animation: cinematicBarIn 680ms 70ms both var(--ease-emphasis);
}
body.page-enter .inner-hero .eyebrow,
body.page-enter .hero-brand {
  animation: cinematicKickerIn 620ms 100ms both var(--ease-emphasis);
}
body.page-enter .inner-hero h1,
body.page-enter .hero-title {
  animation: cinematicTitleIn 900ms 150ms both var(--ease-emphasis);
}
body.page-enter .inner-hero p,
body.page-enter .hero-copy > p {
  animation: cinematicCopyIn 680ms 310ms both var(--ease-emphasis);
}
body.page-enter .hero-actions,
body.page-enter .hero-meta {
  animation: cinematicControlsIn 620ms 430ms both var(--ease-emphasis);
}
body.page-enter .hero-presence img {
  animation: cinematicPortraitIn 1050ms 80ms both var(--ease-emphasis);
}
body.page-enter .live-rail,
body.page-enter .featured-section {
  animation: cinematicPanelIn 760ms 260ms both var(--ease-emphasis);
}

@keyframes rzPageOut {
  to {
    opacity: 0;
    filter: brightness(0.62) saturate(0.72);
    transform: scale(0.986) translate3d(-0.7%, 0, 0);
  }
}
@keyframes rzPageIn {
  from {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    filter: brightness(0.55) saturate(0.7);
    transform: scale(1.012) translate3d(0.8%, 0, 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: none;
    transform: none;
  }
}
@keyframes rzHeadingOut {
  to {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(-16px, 0, 0);
  }
}
@keyframes rzHeadingIn {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(24px, 12px, 0);
  }
}
@keyframes rzGridOut {
  to {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(8px) scale(0.992);
  }
}
@keyframes rzGridIn {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(14px) scale(0.988);
  }
}
@keyframes curtainLine {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
}
@keyframes cinematicHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
}
@keyframes cinematicBarIn {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
}
@keyframes cinematicKickerIn {
  from {
    opacity: 0;
    letter-spacing: 0.28em;
    transform: translateX(-18px);
  }
}
@keyframes cinematicTitleIn {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    filter: blur(12px);
    transform: translate3d(0, 34px, 0) scaleY(1.04);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: none;
    transform: none;
  }
}
@keyframes cinematicCopyIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(18px);
  }
}
@keyframes cinematicControlsIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
}
@keyframes cinematicPortraitIn {
  from {
    opacity: 0;
    filter: saturate(0.55) contrast(1.16) blur(9px);
    transform: translate3d(32px, 8px, 0) scale(1.06);
  }
}
@keyframes cinematicPanelIn {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(22px) scale(0.987);
  }
}

@media (max-width: 1320px) {
  .scene-indicator {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-curtain__brand {
    left: 9%;
    font-size: clamp(42px, 17vw, 74px);
  }
  .page-curtain::after,
  .page-curtain__line {
    left: 9%;
  }
  .page-curtain__destination {
    right: 9%;
    bottom: 7%;
  }
  body.page-enter .hero-presence img {
    animation-name: cinematicPortraitMobileIn;
  }
}

@keyframes cinematicPortraitMobileIn {
  from {
    opacity: 0;
    filter: saturate(0.65) contrast(1.12) blur(6px);
    transform: translate3d(18px, 4px, 0) scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
  .page-curtain,
  .scene-indicator {
    display: none !important;
  }
  .inner-hero::before,
  .inner-hero::after,
  .hero-panel::before {
    transform: none !important;
  }
  .cinematic-scene .section-heading h2::after,
  .cinematic-scene .page-intro::before {
    transition: none !important;
  }
}

/* Prevent the original home-title animation from restarting after the Stage 4 entrance ends. */
.js .hero-title {
  animation: none;
}
body.page-enter .hero-title {
  animation: cinematicTitleIn 900ms 150ms both var(--ease-emphasis);
}

/* ==========================================================================
   Production hardening · Etapa 5
   ========================================================================== */
.form-trap {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.network-status {
  position: fixed;
  inset: 78px 50% auto auto;
  z-index: 120;
  width: min(92vw, 620px);
  padding: 12px 18px;
  border: 1px solid rgba(255, 80, 80, 0.42);
  border-radius: 999px;
  background: rgba(20, 3, 5, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, -12px);
  transition:
    opacity var(--motion-fast, 180ms) ease,
    transform var(--motion-fast, 180ms) ease;
  backdrop-filter: blur(16px);
}

.network-status.show {
  opacity: 1;
  transform: translate(50%, 0);
}

.network-status.online {
  border-color: rgba(107, 219, 151, 0.42);
  background: rgba(5, 28, 16, 0.94);
}

.admin-runtime-notice {
  display: grid;
  gap: 4px;
  margin: 0 0 22px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 82, 82, 0.3);
  border-radius: var(--radius-md, 14px);
  background:
    linear-gradient(100deg, rgba(122, 0, 15, 0.18), transparent 70%), rgba(255, 255, 255, 0.025);
}

.admin-runtime-notice strong {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-runtime-notice span {
  color: var(--text-muted, #aaa);
  font-size: 0.82rem;
  line-height: 1.5;
}

.admin-data-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 20px;
}

.admin-data-tools .btn-outline {
  min-height: 42px;
}

.admin-form-panel form.is-dirty::before {
  content: "Alterações não salvas";
  display: block;
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: #ffb5ba;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-disabled .admin-sidebar,
.admin-disabled .admin-header .btn-outline {
  display: none;
}

.admin-disabled .admin-layout {
  display: block;
}

.admin-disabled-panel {
  display: grid;
  place-items: start;
  align-content: center;
  min-height: calc(100vh - 94px);
  max-width: 760px;
  margin-inline: auto;
  padding: 40px 24px;
}

.admin-disabled-panel h1 {
  margin: 8px 0 18px;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.95;
}

.admin-disabled-panel p {
  max-width: 64ch;
  margin: 0 0 28px;
  color: var(--text-muted, #aaa);
  line-height: 1.75;
}

.admin-disabled-panel code {
  color: #fff;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 70% 30%, rgba(196, 0, 24, 0.2), transparent 34%), #020202;
}

.error-panel {
  width: min(100%, 820px);
  padding: clamp(30px, 7vw, 76px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(20px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.error-code {
  display: block;
  color: var(--red, #d30824);
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(5rem, 20vw, 13rem);
  font-style: italic;
  font-weight: 600;
  line-height: 0.75;
}

.error-panel h1 {
  margin: 28px 0 14px;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2rem, 6vw, 4.6rem);
}

.error-panel p {
  max-width: 54ch;
  margin: 0 auto 28px;
  color: var(--text-muted, #aaa);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .network-status {
    inset-block-start: 70px;
    border-radius: 18px;
  }

  .admin-data-tools > * {
    flex: 1 1 100%;
  }
}

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

/* ==========================================================================
   Hero cinematográfico em vídeo
   ========================================================================== */
.hero-presence.hero-presence--video {
  top: 0;
  right: 0;
  bottom: 0;
  width: 56%;
  overflow: hidden;
  animation: none;
  background: #080304 url("../images/icons/hero-video-poster.webp") center 28% / cover no-repeat;
}
.hero-presence--video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 0;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5, 5, 5, 0.98) 12%,
      rgba(5, 5, 5, 0.82) 30%,
      rgba(5, 5, 5, 0.3) 58%,
      rgba(5, 5, 5, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.34),
      transparent 26%,
      transparent 72%,
      rgba(0, 0, 0, 0.62)
    );
  filter: none;
  animation: none;
  pointer-events: none;
}
.hero-presence--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 46%, rgba(255, 32, 57, 0.12), transparent 46%),
    linear-gradient(90deg, transparent 45%, rgba(64, 0, 10, 0.13));
  box-shadow: inset 0 0 48px rgba(0, 0, 0, 0.64);
  pointer-events: none;
}
.hero-background-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 31%;
  opacity: 0;
  filter: brightness(0.7) contrast(1.08) saturate(0.86);
  transform: scale(1.018);
  transition:
    opacity 480ms var(--ease-standard),
    filter 680ms var(--ease-standard),
    transform 1200ms var(--ease-emphasis);
}
.hero-presence--video.has-visible-frame .hero-background-video {
  opacity: 0.92;
}
.hero-presence--video.is-playing .hero-background-video {
  filter: brightness(0.74) contrast(1.08) saturate(0.9);
  transform: scale(1.01);
}
.hero-presence--video.has-video-error .hero-background-video {
  opacity: 0;
}
body.page-enter .hero-presence--video .hero-background-video {
  animation: cinematicPortraitIn 1050ms 80ms both var(--ease-emphasis);
}

@media (max-width: 940px) {
  .hero-presence.hero-presence--video {
    width: 58%;
    right: 0;
  }
}

@media (max-width: 640px) {
  .hero-presence.hero-presence--video {
    top: 0;
    right: 0;
    bottom: 0;
    width: 79%;
    opacity: 0.78;
  }
  .hero-presence--video::before {
    background:
      linear-gradient(
        90deg,
        #050505 0%,
        rgba(5, 5, 5, 0.98) 20%,
        rgba(5, 5, 5, 0.82) 44%,
        rgba(5, 5, 5, 0.28) 72%,
        rgba(5, 5, 5, 0.08) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.38),
        transparent 32%,
        transparent 70%,
        rgba(0, 0, 0, 0.66)
      );
  }
  .hero-background-video {
    object-position: center 24%;
    filter: brightness(0.64) contrast(1.08) saturate(0.82);
  }
  .hero-presence--video.is-playing .hero-background-video {
    filter: brightness(0.67) contrast(1.08) saturate(0.86);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background-video {
    transform: none !important;
    transition: none !important;
  }
  body.page-enter .hero-presence--video .hero-background-video {
    animation: none !important;
  }
}

/* ==========================================================================
   Mobile-first product pass
   O celular é a experiência principal; telas maiores expandem a composição.
   ========================================================================== */
.mobile-dock,
.mobile-filter-toggle {
  display: none;
}

@media (max-width: 940px) {
  :root {
    --mobile-header: 64px;
    --mobile-dock: 72px;
    --mobile-gutter: 14px;
    --control-height: 52px;
  }

  html {
    scroll-padding-top: calc(var(--mobile-header) + 12px);
  }

  body:not(.admin-body) {
    padding-bottom: calc(var(--mobile-dock) + env(safe-area-inset-bottom));
  }

  a,
  button,
  input,
  select,
  textarea,
  summary {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .shell {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), var(--content));
  }

  .site-header {
    min-height: var(--mobile-header);
    background: rgba(2, 2, 2, 0.98);
    backdrop-filter: none;
  }

  .site-header::after {
    display: none;
  }

  .header-row {
    min-height: var(--mobile-header);
    gap: 12px;
  }

  .logo {
    width: 132px;
  }

  .logo img {
    height: 52px;
  }

  .menu-button {
    display: block;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border-radius: 14px;
  }

  .main-nav {
    position: fixed;
    inset: var(--mobile-header) 0 calc(var(--mobile-dock) + env(safe-area-inset-bottom)) 0;
    z-index: 130;
    max-height: none;
    padding: 16px var(--mobile-gutter) 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 8px;
    overflow-y: auto;
    border: 0;
    border-top: 1px solid var(--line-red-soft);
    border-radius: 0;
    background:
      radial-gradient(circle at 90% 10%, rgba(136, 0, 20, 0.18), transparent 36%), #030303;
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.74);
    overscroll-behavior: contain;
  }

  .main-nav a {
    min-height: 56px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .main-nav a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a[aria-current="page"] {
    border-color: rgba(255, 32, 57, 0.55);
    background: linear-gradient(135deg, rgba(122, 4, 20, 0.52), rgba(45, 0, 7, 0.42));
  }

  .main-nav a::after {
    display: none;
  }

  .mobile-dock {
    position: fixed;
    inset: auto 0 0;
    z-index: 210;
    min-height: calc(var(--mobile-dock) + env(safe-area-inset-bottom));
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2px;
    border-top: 1px solid rgba(255, 32, 57, 0.28);
    background: rgba(3, 3, 3, 0.985);
    box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.68);
  }

  .mobile-dock__link {
    position: relative;
    min-width: 0;
    min-height: 58px;
    padding: 6px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border-radius: 13px;
    color: #8f8f8f;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.035em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition:
      color 180ms var(--ease-standard),
      background 180ms var(--ease-standard),
      transform 180ms var(--ease-standard);
  }

  .mobile-dock__link svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
  }

  .mobile-dock__link[aria-current="page"] {
    color: #fff;
    background: rgba(255, 32, 57, 0.1);
  }

  .mobile-dock__link[aria-current="page"]::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 50%;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 10px rgba(255, 32, 57, 0.8);
    transform: translateX(-50%);
  }

  .mobile-dock__link--vip {
    color: #fff;
    background: linear-gradient(145deg, rgba(145, 9, 27, 0.95), rgba(66, 0, 9, 0.96));
    box-shadow: inset 0 0 0 1px rgba(255, 68, 87, 0.48);
  }

  body.menu-open .mobile-dock,
  body.modal-open .mobile-dock {
    opacity: 0;
    pointer-events: none;
  }

  .scene-indicator {
    display: none !important;
  }

  .toast {
    right: var(--mobile-gutter);
    bottom: calc(var(--mobile-dock) + 12px + env(safe-area-inset-bottom));
    max-width: calc(100% - (var(--mobile-gutter) * 2));
  }

  .network-status {
    inset: calc(var(--mobile-header) + 8px) 50% auto auto;
    width: calc(100% - (var(--mobile-gutter) * 2));
    border-radius: 16px;
  }

  .content-section {
    padding-top: 28px;
  }

  .content-section:last-of-type {
    padding-bottom: 42px;
  }

  .section-heading {
    align-items: center;
    margin-bottom: 14px;
  }

  .section-heading > a {
    min-height: 44px;
    padding: 0 4px 0 10px;
    font-size: 9px;
  }

  .home-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "hero" "rail" "featured";
    gap: 18px;
    padding-top: 12px;
  }

  .hero-panel {
    min-height: min(720px, calc(100svh - var(--mobile-header) - 24px));
    border-radius: 20px;
  }

  .hero-copy {
    width: 100%;
    min-height: inherit;
    padding: clamp(32px, 8svh, 72px) 24px 28px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(46px, 11vw, 72px);
  }

  .hero-copy > p {
    max-width: 40ch;
    font-size: 14px;
  }

  .hero-actions {
    width: min(100%, 420px);
    max-width: none;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    min-height: 54px;
  }

  .hero-meta {
    max-width: 420px;
  }

  .live-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 10px;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(7, 7, 7, 0.72);
    box-shadow: none;
  }

  .live-title {
    grid-column: 1 / -1;
    min-height: 38px;
    padding: 4px 6px 9px;
    border-bottom: 0;
  }

  .live-item {
    min-height: 86px;
    padding: 12px;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.018);
  }

  .live-item:nth-of-type(n) {
    border-right: 1px solid rgba(255, 255, 255, 0.075);
  }

  .live-item img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .live-number {
    font-size: 15px;
  }

  .live-label {
    font-size: 8px;
    line-height: 1.35;
  }

  .premium-box,
  .live-note {
    display: none;
  }

  .featured-section {
    min-width: 0;
  }

  .featured-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 76vw);
    grid-template-columns: none;
    gap: 12px;
    margin-inline: calc(var(--mobile-gutter) * -1);
    padding: 2px calc(var(--mobile-gutter) + 20px) 12px var(--mobile-gutter);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--mobile-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .featured-grid::-webkit-scrollbar {
    display: none;
  }

  .model-card--featured {
    scroll-snap-align: start;
  }

  .support-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .whatsapp-panel,
  .benefits-grid {
    min-width: 0;
  }

  .inner-hero .shell {
    padding-block: 34px 32px;
  }

  .inner-hero .shell::after {
    display: none;
  }

  .inner-hero h1 {
    max-width: 13ch;
  }

  .page-content {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .mobile-filter-toggle {
    position: sticky;
    top: calc(var(--mobile-header) + 8px);
    z-index: 35;
    width: 100%;
    min-height: 52px;
    margin: 0 0 10px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 32, 57, 0.4);
    border-radius: 14px;
    background: rgba(8, 8, 8, 0.97);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.36);
    color: #fff;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-filter-toggle > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-filter-toggle i {
    position: relative;
    width: 17px;
    height: 12px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }

  .mobile-filter-toggle i::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 3px;
    width: 11px;
    border-top: 1px solid currentColor;
  }

  .mobile-filter-toggle b {
    color: var(--red);
    font-size: 21px;
    font-weight: 400;
  }

  .mobile-filter-toggle.has-active-filter::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 42px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
  }

  .js .mobile-filter-panel {
    max-height: 0;
    margin: 0;
    padding-block: 0;
    overflow: hidden;
    border-color: transparent;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      max-height 360ms var(--ease-emphasis),
      margin 240ms var(--ease-standard),
      padding 240ms var(--ease-standard),
      opacity 180ms var(--ease-standard),
      transform 240ms var(--ease-emphasis),
      border-color 180ms var(--ease-standard);
  }

  .js .mobile-filter-panel.is-open {
    max-height: 620px;
    margin-bottom: 12px;
    padding-block: 12px;
    border-color: var(--line);
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .toolbar-meta {
    gap: 5px;
    margin-bottom: 14px;
  }

  .plans-grid,
  .testimonials-grid,
  .process-grid {
    min-width: 0;
  }

  .plans-grid {
    display: flex;
    gap: 12px;
    margin-inline: calc(var(--mobile-gutter) * -1);
    padding: 4px calc(var(--mobile-gutter) + 22px) 14px var(--mobile-gutter);
    overflow-x: auto;
    scroll-padding-inline: var(--mobile-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .plans-grid::-webkit-scrollbar {
    display: none;
  }

  .plan-card {
    flex: 0 0 min(82vw, 360px);
    min-height: 0;
    scroll-snap-align: start;
  }

  .plan-card.featured {
    order: -1;
  }

  .testimonials-grid,
  .process-grid {
    display: flex;
    gap: 12px;
    margin-inline: calc(var(--mobile-gutter) * -1);
    padding: 3px calc(var(--mobile-gutter) + 22px) 12px var(--mobile-gutter);
    overflow-x: auto;
    scroll-padding-inline: var(--mobile-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .testimonials-grid::-webkit-scrollbar,
  .process-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial,
  .process-step {
    flex: 0 0 min(84vw, 360px);
    scroll-snap-align: start;
  }

  .form-panel,
  .contact-aside,
  .legal-panel {
    border-radius: 18px;
  }

  .modal,
  .preview-modal {
    align-items: flex-end;
    padding: 0;
  }

  .modal-card,
  .preview-dialog {
    width: 100%;
    max-height: calc(100svh - 16px);
    overflow-y: auto;
    border-radius: 24px 24px 0 0;
    overscroll-behavior: contain;
  }

  .modal-close {
    width: 48px;
    height: 48px;
  }

  .modal-actions,
  .preview-actions {
    position: sticky;
    bottom: 0;
    z-index: 4;
    padding-top: 12px;
    padding-bottom: max(4px, env(safe-area-inset-bottom));
    background: linear-gradient(180deg, transparent, #080808 28%);
  }

  .site-footer {
    margin-bottom: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .footer-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-gutter: 12px;
  }

  body::before {
    opacity: 0.15;
    background-size: 42px 42px;
  }

  body::after {
    display: none;
  }

  .hero-panel {
    min-height: calc(100svh - var(--mobile-header) - 18px);
    max-height: 760px;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
    padding: 34px 18px 24px;
  }

  .hero-brand {
    max-width: none;
    margin-bottom: auto;
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .hero-title {
    max-width: 9.2ch;
    margin-top: 18px;
    font-size: clamp(43px, 13.4vw, 57px);
    line-height: 0.9;
  }

  .hero-copy > p {
    max-width: 31ch;
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    max-width: 330px;
    margin-top: 18px;
    gap: 9px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    min-height: 54px;
    font-size: 11px;
  }

  .hero-meta {
    max-width: 330px;
    margin-top: 14px;
    gap: 6px 12px;
    font-size: 7px;
  }

  .hero-presence.hero-presence--video {
    inset: 0;
    width: 100%;
    opacity: 1;
  }

  .hero-presence--video::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 3, 3, 0.28) 0%,
        rgba(3, 3, 3, 0.06) 34%,
        rgba(3, 3, 3, 0.72) 68%,
        #050505 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.83) 0%,
        rgba(5, 5, 5, 0.25) 62%,
        rgba(5, 5, 5, 0.08) 100%
      );
  }

  .hero-presence--video::after {
    background:
      radial-gradient(circle at 68% 38%, rgba(255, 32, 57, 0.12), transparent 42%),
      linear-gradient(180deg, transparent 45%, rgba(64, 0, 10, 0.12));
    box-shadow: inset 0 0 36px rgba(0, 0, 0, 0.52);
  }

  .hero-background-video {
    object-position: 54% 24%;
    filter: brightness(0.67) contrast(1.06) saturate(0.84);
    transform: scale(1.01);
  }

  .hero-presence--video.is-playing .hero-background-video {
    filter: brightness(0.7) contrast(1.06) saturate(0.88);
    transform: scale(1.005);
  }

  .hero-presence--video.is-data-saver .hero-background-video {
    opacity: 0;
  }

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

  .live-item {
    min-width: 0;
  }

  .featured-grid {
    grid-auto-columns: minmax(268px, 80vw);
  }

  .model-card--featured .model-name {
    font-size: 16px;
  }

  .model-card--featured .model-body {
    padding: 14px;
  }

  .model-card--featured .model-actions .btn-outline {
    min-height: 46px;
  }

  .catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .model-card--catalog {
    min-height: 238px;
    display: grid;
    grid-template-columns: minmax(136px, 42%) minmax(0, 1fr);
  }

  .model-card--catalog .model-photo {
    height: 100%;
    min-height: 238px;
    aspect-ratio: auto;
  }

  .model-card--catalog .model-body {
    min-width: 0;
    padding: 18px 14px 14px;
    display: flex;
    flex-direction: column;
  }

  .model-card--catalog .model-name {
    font-size: 16px;
    white-space: normal;
  }

  .model-card--catalog .model-meta {
    font-size: 10px;
  }

  .model-card--catalog .model-actions {
    margin-top: auto;
    padding-top: 12px;
  }

  .model-card--catalog .model-actions .btn-outline {
    min-height: 48px;
  }

  .model-hold-hint {
    left: 8px;
    bottom: 8px;
    min-height: 40px;
    max-width: calc(100% - 16px);
    padding-inline: 8px 10px;
    gap: 6px;
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .model-card--catalog .model-hold-hint {
    right: 8px;
    width: auto;
  }

  .favorite-button {
    width: 44px;
    height: 44px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-card {
    aspect-ratio: 16 / 10;
    min-height: 218px;
    border-radius: 18px;
  }

  .video-card::after {
    inset: 18% 0 0;
  }

  .video-play {
    padding: 14px;
  }

  .video-play img {
    width: 48px;
    height: 48px;
  }

  .video-caption {
    padding: 18px;
  }

  .regions-grid {
    margin-inline: calc(var(--mobile-gutter) * -1);
    padding-inline: var(--mobile-gutter) calc(var(--mobile-gutter) + 20px);
    scroll-padding-inline: var(--mobile-gutter);
  }

  .region-card {
    flex-basis: min(82vw, 320px);
  }

  .plan-card {
    padding: 28px 22px 22px;
  }

  .plan-card .btn-primary {
    min-height: 54px;
  }

  .process-step,
  .testimonial {
    min-height: 0;
  }

  .toolbar,
  .toolbar.single {
    grid-template-columns: 1fr;
  }

  .field-control,
  .filter-favorite {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
  }

  .toolbar-meta {
    align-items: flex-start;
    flex-direction: column;
    font-size: 10px;
    line-height: 1.45;
  }

  .form-layout {
    gap: 14px;
  }

  .form-panel,
  .contact-aside,
  .legal-panel {
    padding: 22px 17px;
  }

  .form-grid {
    gap: 16px;
  }

  .form-field label {
    font-size: 10px;
  }

  .form-field .field-hint {
    font-size: 10px;
    line-height: 1.45;
  }

  textarea.field-control {
    min-height: 132px;
  }

  .form-submit .btn-primary {
    min-height: 56px;
  }

  .modal-photo {
    min-height: 250px;
    max-height: 36svh;
  }

  .modal-copy {
    padding: 24px 18px calc(22px + env(safe-area-inset-bottom));
  }

  .modal-copy h2 {
    font-size: 32px;
  }

  .preview-stage {
    min-height: 42svh;
  }

  .whatsapp-panel {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 20px 18px;
    border-radius: 18px;
  }

  .whatsapp-panel h3 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .whatsapp-panel p {
    font-size: 12px;
    line-height: 1.55;
  }

  .benefit {
    min-height: 88px;
    padding: 14px 36px 14px 14px;
  }

  .footer-logo img {
    width: 148px;
  }

  .socials a {
    width: 46px;
    height: 46px;
  }

  .footer-bottom {
    padding-bottom: 22px;
    font-size: 9px;
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .main-nav {
    grid-template-columns: 1fr;
  }

  .mobile-dock__link {
    font-size: 8px;
  }

  .hero-title {
    font-size: clamp(40px, 13vw, 50px);
  }

  .live-rail {
    grid-template-columns: 1fr;
  }

  .model-card--catalog {
    grid-template-columns: 40% minmax(0, 1fr);
  }
}

@media (hover: none) and (pointer: coarse) {
  .model-card:hover,
  .model-card:focus-within,
  .region-card:hover,
  .video-card:hover,
  .plan-card:hover,
  .testimonial:hover,
  .ranking-card:hover {
    transform: none;
  }

  .btn-primary:hover,
  .btn-outline:hover,
  .btn-small:hover,
  .header-whatsapp:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-filter-panel,
  .mobile-dock__link,
  .mobile-filter-toggle {
    transition: none !important;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(108px, 0.82fr);
    align-items: stretch;
    flex-direction: initial;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: auto;
    min-width: 0;
    padding-inline: 10px;
    font-size: 10px;
    white-space: nowrap;
  }
}

@media (max-width: 350px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
  }
}

@media (max-width: 940px) {
  .skip-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer-bottom a {
    min-height: 44px;
    padding-inline: 4px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding-bottom: 18px;
  }
}

@media (max-width: 350px) {
  .hero-meta {
    display: none;
  }
}

@media (max-width: 940px) {
  .section-heading > a,
  .footer-nav a,
  .footer-bottom a {
    min-height: 46px;
  }

  .favorite-button {
    width: 46px;
    height: 46px;
  }
}

/* Icon system refinement */
.socials img {
  display: block;
}
.socials a[aria-label^="X"] img {
  width: 19px;
  height: 19px;
}
.socials a[aria-label^="Instagram"] img {
  width: 22px;
  height: 22px;
}
.socials img[src$="whatsapp.svg"] {
  width: 22px;
  height: 22px;
  filter: none;
}
.model-meta img,
.hero-status img,
.section-heading img,
.btn-primary img,
.btn-outline img {
  image-rendering: auto;
}
.modal-close {
  display: grid;
  place-items: center;
  font-size: 0;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1.7px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s var(--ease);
}
.modal-close::before {
  transform: rotate(45deg);
}
.modal-close::after {
  transform: rotate(-45deg);
}
.modal-close:hover::before {
  transform: rotate(135deg);
}
.modal-close:hover::after {
  transform: rotate(45deg);
}
.modal-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .modal-close::before,
  .modal-close::after {
    transition: none;
  }
  .modal-close:hover::before {
    transform: rotate(45deg);
  }
  .modal-close:hover::after {
    transform: rotate(-45deg);
  }
}

/* Hero — Zona Ativa em carrossel */
.home-layout {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "hero" "featured";
}

.hero-panel {
  min-height: 620px;
}

.hero-copy {
  width: min(58%, 720px);
  padding-bottom: 38px;
}

.hero-live-carousel {
  width: min(100%, 520px);
  margin-top: 30px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 32, 57, 0.065), transparent 34%), rgba(5, 5, 5, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(255, 32, 57, 0.025),
    0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.hero-live-carousel__header {
  min-height: 34px;
  padding: 0 2px 8px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-live-carousel__title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f0f0f0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-live-carousel__title > img {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.hero-live-carousel__title .live-dot {
  width: 6px;
  height: 6px;
  margin-left: 1px;
}

.hero-live-carousel__controls {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}

.hero-live-carousel__controls button {
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  cursor: pointer;
  transition:
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    transform 180ms var(--ease-standard);
}

.hero-live-carousel__controls button:hover,
.hero-live-carousel__controls button:focus-visible {
  border-color: rgba(255, 32, 57, 0.72);
  background: rgba(255, 32, 57, 0.1);
}

.hero-live-carousel__controls button:active {
  transform: scale(0.94);
}

.hero-live-carousel__controls button img {
  width: 12px;
  height: 12px;
}

.hero-live-carousel__controls button:first-child img {
  transform: rotate(180deg);
}

.hero-live-carousel__controls span {
  min-width: 38px;
  color: #8f8f8f;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.hero-live-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero-live-carousel__track::-webkit-scrollbar {
  display: none;
}

.hero-live-card {
  min-height: 84px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 32, 57, 0.095), transparent 34%),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 3px 0 0 rgba(255, 32, 57, 0.46);
  transition:
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard);
}

.hero-live-card[data-active] {
  border-color: rgba(255, 32, 57, 0.3);
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 32, 57, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 3px 0 0 var(--red),
    inset 0 0 22px rgba(255, 32, 57, 0.025);
}

.hero-live-card > img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 32, 57, 0.26));
}

.hero-live-card > img[src$="models-online.webp"] {
  transform: scale(0.88);
}

.hero-live-card > img[src$="brazil-regions.webp"] {
  transform: scale(1.03);
}

.hero-live-card__value {
  display: block;
  color: #fff;
  font-size: 23px;
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-live-card__value--word {
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-live-card__label {
  display: block;
  margin-top: 5px;
  color: #b8b8b8;
  font-size: 8px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .home-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "hero" "featured";
  }

  .hero-copy {
    width: 100%;
  }

  .hero-live-carousel {
    width: min(100%, 520px);
  }
}

@media (max-width: 640px) {
  .hero-panel {
    min-height: calc(100svh - var(--mobile-header) - 18px);
    max-height: none;
  }

  .hero-copy {
    padding-bottom: 18px;
  }

  .hero-live-carousel {
    width: 100%;
    max-width: 330px;
    margin-top: 14px;
    padding: 8px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
  }

  .hero-live-carousel__header {
    min-height: 38px;
    padding: 0 0 7px 4px;
  }

  .hero-live-carousel__controls button {
    width: 38px;
    height: 38px;
  }

  .hero-live-carousel__track {
    grid-auto-columns: 86%;
    gap: 8px;
    margin-right: -8px;
    padding-right: 8px;
  }

  .hero-live-card {
    min-height: 78px;
    padding: 11px 12px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    border-radius: 13px;
  }

  .hero-live-card > img {
    width: 38px;
    height: 38px;
  }

  .hero-live-card__value {
    font-size: 20px;
  }

  .hero-live-card__value--word {
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  .hero-live-carousel {
    max-width: none;
  }

  .hero-live-carousel__track {
    grid-auto-columns: 91%;
  }
}

@media (hover: none) and (pointer: coarse) {
  .hero-live-carousel__controls button:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-live-carousel__track {
    scroll-behavior: auto;
  }

  .hero-live-carousel__controls button {
    transition: none !important;
  }
}

/* Hold-to-preview refinements */
.model-hold-hint {
  min-height: 34px;
  padding: 0 10px 0 9px;
  gap: 6px;
  border: 0;
  border-left: 2px solid var(--red);
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.92), rgba(4, 4, 4, 0.76));
  font-size: 8px;
  letter-spacing: 0.065em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
}
.model-hold-hint::before {
  content: "DICA";
  color: var(--red);
  font-size: 7px;
  letter-spacing: 0.12em;
}
.model-hold-hint > img {
  width: 15px;
  height: 15px;
}
.model-hold-progress {
  right: 8px;
  bottom: 4px;
  left: 9px;
}
.model-photo.is-previewing .model-hold-hint,
.ranking-photo.is-previewing .model-hold-hint {
  border-left-color: #fff;
  background: rgba(39, 0, 6, 0.9);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 32, 57, 0.3);
  transform: translateY(-2px);
}
.model-photo.is-previewing .model-hold-hint::before,
.ranking-photo.is-previewing .model-hold-hint::before {
  content: "ATIVA";
  color: #fff;
}
.model-photo.is-previewing .model-hold-label--idle,
.ranking-photo.is-previewing .model-hold-label--idle {
  display: none;
}
.model-photo.is-previewing .model-hold-label--active,
.ranking-photo.is-previewing .model-hold-label--active {
  display: inline;
}
.model-photo.is-playing > img:first-child,
.ranking-photo.is-playing > img:first-child {
  opacity: 0;
}
.model-photo.is-playing .model-hold-video,
.ranking-photo.is-playing .model-hold-video {
  opacity: 1;
  transform: scale(1);
}
.model-photo.is-playing .model-hold-progress,
.ranking-photo.is-playing .model-hold-progress {
  opacity: 1;
}
.model-photo.is-playing .model-hold-progress::after,
.ranking-photo.is-playing .model-hold-progress::after {
  animation: modelHoldTimeline 4s linear infinite;
}
.model-photo.preview-unavailable .model-hold-hint,
.ranking-photo.preview-unavailable .model-hold-hint {
  opacity: 0.55;
}

.ranking-card {
  position: relative;
  display: block;
}
.ranking-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 0 16px rgba(255, 32, 57, 0.16);
}
.ranking-photo .model-hold-video {
  object-position: center top;
}
.ranking-hold-zone:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
  box-shadow: inset 0 0 0 5px rgba(255, 32, 57, 0.38);
}
.ranking-hold-hint {
  top: 50%;
  bottom: auto;
  left: 50%;
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  padding: 0;
  gap: 0;
  border: 1px solid rgba(255, 32, 57, 0.92);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.72);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.52),
    0 0 18px rgba(255, 32, 57, 0.26);
}
.ranking-hold-hint::before,
.ranking-hold-hint .model-hold-label,
.ranking-hold-hint .model-hold-progress {
  display: none;
}
.ranking-hold-hint > img {
  width: 24px;
  height: 24px;
}
.ranking-photo.is-previewing .ranking-hold-hint {
  top: auto;
  bottom: 7px;
  width: auto;
  min-width: 56px;
  min-height: 26px;
  max-width: calc(100% - 14px);
  padding: 0 8px;
  border-radius: 999px;
  transform: translateX(-50%);
}
.ranking-photo.is-previewing .ranking-hold-hint::before {
  content: none;
}
.ranking-photo.is-previewing .ranking-hold-hint > img {
  width: 13px;
  height: 13px;
}
.ranking-photo.is-previewing .ranking-hold-hint .model-hold-label--active {
  display: inline;
  font-size: 7px;
}

@media (hover: none) and (pointer: coarse) {
  .ranking-card:focus-within {
    transform: none;
  }
}

/* Local media management */
.admin-media-manager {
  min-width: 0;
  margin: 4px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: linear-gradient(145deg, rgba(255, 32, 57, 0.035), rgba(7, 7, 7, 0.76));
}
.admin-media-manager legend {
  padding-inline: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.admin-media-intro {
  margin: 0 0 16px;
  color: #999;
  font-size: 11px;
  line-height: 1.6;
}
.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.admin-media-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-content: start;
  gap: 10px 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-card);
  background: rgba(4, 4, 4, 0.76);
}
.admin-media-card--video {
  grid-column: 1 / -1;
  grid-template-columns: 190px minmax(0, 1fr);
}
.admin-media-preview {
  grid-row: span 5;
  overflow: hidden;
  border: 1px solid rgba(255, 32, 57, 0.28);
  border-radius: 12px;
  background: #050505;
}
.admin-media-preview--image {
  aspect-ratio: 0.71;
}
.admin-media-preview--ranking {
  aspect-ratio: 0.7;
}
.admin-media-preview--video {
  aspect-ratio: 9 / 13;
  max-height: 270px;
}
.admin-media-preview img,
.admin-media-preview video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #050505;
}
.admin-media-copy {
  align-self: end;
}
.admin-media-copy strong,
.admin-media-copy span {
  display: block;
}
.admin-media-copy strong {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}
.admin-media-copy span {
  margin-top: 4px;
  color: #8f8f8f;
  font-size: 9px;
  line-height: 1.45;
}
.admin-media-card > label:not(.admin-file-button) {
  align-self: end;
  color: #b8b8b8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.admin-file-button {
  width: 100%;
  min-height: 42px;
  cursor: pointer;
}
.admin-file-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.admin-media-status {
  min-height: 16px;
  color: #8f8f8f;
  font-size: 9px;
  line-height: 1.45;
}
.admin-actions [data-move] {
  width: 34px;
  min-width: 34px;
  padding: 0;
}
.admin-actions button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

@media (max-width: 760px) {
  .admin-media-manager {
    padding: 14px;
  }
  .admin-media-grid {
    grid-template-columns: 1fr;
  }
  .admin-media-card,
  .admin-media-card--video {
    grid-column: auto;
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .admin-media-preview--video {
    max-height: 220px;
  }
}

@media (max-width: 440px) {
  .admin-media-card,
  .admin-media-card--video {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 11px;
    gap: 9px 11px;
  }
  .admin-media-preview {
    grid-row: span 4;
  }
  .admin-media-copy span {
    font-size: 8px;
  }
}

.admin-file-button:focus-within {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ==========================================================================
   Preview feed — click, full-screen video and sound
   ========================================================================== */
.model-preview-zone {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.model-preview-zone:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -5px;
  box-shadow: inset 0 0 0 6px rgba(255, 32, 57, 0.38);
}
.model-preview-hint {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 5;
  min-height: 34px;
  max-width: calc(100% - 20px);
  padding: 0 11px 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-left: 2px solid var(--red);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.94), rgba(4, 4, 4, 0.78));
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}
.model-preview-hint::before {
  content: "PRÉVIA";
  color: var(--red);
  font-size: 7px;
  letter-spacing: 0.11em;
}
.model-preview-hint img {
  width: 15px;
  height: 15px;
  filter: drop-shadow(0 0 6px rgba(255, 32, 57, 0.68));
}
.ranking-preview-hint {
  top: 50%;
  bottom: auto;
  left: 50%;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  justify-content: center;
  border: 1px solid rgba(255, 32, 57, 0.92);
  border-radius: 50%;
  background: rgba(4, 4, 4, 0.76);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.52),
    0 0 18px rgba(255, 32, 57, 0.28);
}
.ranking-preview-hint::before,
.ranking-preview-hint span {
  display: none;
}
.ranking-preview-hint img {
  width: 24px;
  height: 24px;
}

.preview-feed-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms var(--ease-standard),
    visibility 220ms;
}
.preview-feed-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.preview-feed-shell {
  position: relative;
  width: min(100%, 720px);
  height: 100dvh;
  overflow: hidden;
  background: #020202;
  box-shadow: 0 0 80px rgba(255, 32, 57, 0.12);
}
.preview-feed-header {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  padding: max(12px, env(safe-area-inset-top)) 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.preview-feed-heading,
.preview-feed-tools {
  pointer-events: auto;
}
.preview-feed-heading span,
.preview-feed-heading strong {
  display: block;
}
.preview-feed-heading span {
  color: #aaa;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.preview-feed-heading strong {
  margin-top: 3px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}
.preview-feed-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.preview-feed-sound {
  min-height: 42px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  color: #fff;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.preview-feed-sound-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  overflow: visible;
  fill: var(--red);
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(255, 32, 57, 0.56));
}
.preview-feed-sound-icon .sound-speaker {
  stroke: none;
}
.preview-feed-sound-icon .sound-waves,
.preview-feed-sound-icon .sound-slash {
  fill: none;
}
.preview-feed-sound-icon .sound-slash {
  display: none;
}
.preview-feed-sound.is-muted {
  color: #9a9a9a;
}
.preview-feed-sound.is-muted .preview-feed-sound-icon {
  fill: #888;
  stroke: #888;
  filter: none;
}
.preview-feed-sound.is-muted .sound-waves {
  display: none;
}
.preview-feed-sound.is-muted .sound-slash {
  display: block;
}
.preview-feed-counter {
  min-width: 40px;
  color: #ddd;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: center;
}
.preview-feed-close {
  position: relative;
  top: auto;
  right: auto;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(7, 7, 7, 0.76);
}
.preview-feed-track {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  background: #000;
}
.preview-feed-track::-webkit-scrollbar {
  display: none;
}
.preview-feed-item {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background-color: #050505;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  isolation: isolate;
}
.preview-feed-item video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #050505;
  filter: brightness(0.88) contrast(1.05) saturate(0.95);
  /* Some assim que houver um frame de verdade pra mostrar (ver has-visible-
     frame em app.js) — até lá, o background-image do item (a thumbnail da
     prévia) fica visível por trás, em vez do frame preto que o navegador
     mostra em conexões lentas assim que o carregamento começa. */
  opacity: 0;
  transition: opacity 220ms ease;
}
.preview-feed-item.has-visible-frame video {
  opacity: 1;
}
.preview-feed-item.is-unavailable::before {
  content: "Prévia indisponível neste navegador";
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #bbb;
  font-size: 12px;
  text-align: center;
  background: #080808;
}
.preview-feed-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.26),
      transparent 28%,
      transparent 54%,
      rgba(0, 0, 0, 0.92)
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 48%);
  pointer-events: none;
}
.preview-feed-video-toggle {
  position: absolute;
  inset: 78px 0 0;
  z-index: 2;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.preview-feed-item.is-paused .preview-feed-video-toggle::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 50%;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48) url("../images/icons/play.svg") center / 30px no-repeat;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}
.preview-feed-copy {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 90px 18px max(28px, calc(18px + env(safe-area-inset-bottom)));
  pointer-events: none;
}
.preview-feed-copy > * {
  pointer-events: auto;
}
.preview-feed-kicker {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.preview-feed-copy h2 {
  margin: 7px 0 5px;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(34px, 10vw, 54px);
  line-height: 0.96;
  text-transform: uppercase;
}
.preview-feed-copy p {
  max-width: 42ch;
  margin: 0;
  color: #d1d1d1;
  font-size: 12px;
  line-height: 1.5;
}
.preview-feed-actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.preview-feed-actions .btn-primary,
.preview-feed-actions .btn-outline {
  min-height: 48px;
  padding-inline: 16px;
}
.preview-feed-scroll-cue {
  position: absolute;
  right: 15px;
  bottom: max(24px, calc(14px + env(safe-area-inset-bottom)));
  z-index: 3;
  color: rgba(255, 255, 255, 0.68);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  pointer-events: none;
}
.preview-feed-item:last-child .preview-feed-scroll-cue {
  display: none;
}

/* Hero: more video, less obstruction */
@media (min-width: 941px) {
  .hero-copy {
    width: min(49%, 620px);
  }
  .hero-title {
    font-size: clamp(48px, 4.7vw, 70px);
  }
  .hero-copy > p {
    max-width: 390px;
  }
  .hero-presence.hero-presence--video {
    width: 64%;
  }
  .hero-background-video {
    filter: brightness(0.92) contrast(1.04) saturate(0.98);
  }
  .hero-presence--video.is-playing .hero-background-video {
    filter: brightness(0.96) contrast(1.04) saturate(1);
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding: 24px 14px 14px;
  }
  .hero-brand {
    margin-bottom: 0;
  }
  .hero-title {
    max-width: 8.5ch;
    margin-top: 10px;
    font-size: clamp(34px, 10.4vw, 44px);
    line-height: 0.92;
  }
  .hero-copy > p {
    max-width: 27ch;
    margin: 10px 0 12px;
    font-size: 12px;
    line-height: 1.42;
  }
  .hero-actions {
    max-width: none;
    margin-top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(112px, 0.85fr);
    gap: 8px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: auto;
    min-height: 48px;
    padding-inline: 10px;
    font-size: 9px;
  }
  .hero-live-carousel {
    max-width: none;
    margin-top: 10px;
  }
  .hero-presence--video::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 3, 3, 0.18) 0%,
        rgba(3, 3, 3, 0.02) 37%,
        rgba(3, 3, 3, 0.54) 68%,
        #050505 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.68) 0%,
        rgba(5, 5, 5, 0.12) 58%,
        rgba(5, 5, 5, 0.02) 100%
      );
  }
  .hero-background-video,
  .hero-presence--video.is-playing .hero-background-video {
    object-position: 58% 20%;
    filter: brightness(0.88) contrast(1.03) saturate(0.96);
  }
  .model-preview-hint {
    left: 8px;
    bottom: 8px;
    min-height: 31px;
    padding-inline: 8px;
    font-size: 7px;
  }
  .model-preview-hint::before {
    display: none;
  }
  .preview-feed-copy {
    padding-inline: 14px;
    padding-bottom: max(24px, calc(16px + env(safe-area-inset-bottom)));
  }
  .preview-feed-copy p {
    max-width: 32ch;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .preview-feed-actions {
    padding-right: 26px;
  }
  .preview-feed-actions .btn-primary,
  .preview-feed-actions .btn-outline {
    min-height: 46px;
    padding-inline: 13px;
    font-size: 9px;
  }
  .preview-feed-sound [data-preview-feed-sound-label] {
    display: none;
  }
  .preview-feed-sound {
    width: 42px;
    padding: 0;
    justify-content: center;
  }
}

@media (min-width: 760px) {
  .preview-feed-shell {
    height: min(94dvh, 900px);
    border: 1px solid rgba(255, 32, 57, 0.28);
    border-radius: 24px;
  }
  .preview-feed-item {
    min-height: min(94dvh, 900px);
  }
}

/* Admin — ordered list of multiple previews */
.admin-preview-source-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.admin-preview-source-actions > * {
  flex: 1 1 150px;
}
.admin-preview-feed-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-preview-feed-head strong {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-preview-feed-head span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
}
.admin-preview-feed-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}
.admin-preview-feed-item {
  display: grid;
  /* A coluna de mídia precisa caber .admin-preview-feed-visual (min-width:
     110px, thumb 2:3 + player de teste) — com 48px a miniatura extrapolava
     por cima dos campos de texto ao lado. */
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}
.admin-preview-feed-item video {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  border-radius: 7px;
  object-fit: cover;
  background: #050505;
}
.admin-preview-feed-item strong,
.admin-preview-feed-item span {
  display: block;
}
.admin-preview-feed-item strong {
  color: #fff;
  font-size: 10px;
}
.admin-preview-feed-item span {
  max-width: 40ch;
  margin-top: 3px;
  overflow: hidden;
  color: #888;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-preview-feed-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}
.admin-preview-feed-actions .btn-outline {
  min-height: 34px;
  padding: 0 9px;
  font-size: 7px;
}
.admin-preview-feed-actions button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}
.admin-preview-feed-empty {
  margin: 0;
  padding: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #888;
  font-size: 9px;
  text-align: center;
}

@media (max-width: 620px) {
  .admin-preview-feed-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }
  .admin-preview-feed-item video {
    width: 42px;
    height: 60px;
  }
  .admin-preview-feed-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .admin-preview-feed-actions .btn-outline {
    flex: 1 1 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preview-feed-modal,
  .preview-feed-track {
    scroll-behavior: auto;
    transition: none;
  }
}

/* ───────────────────── PÁGINA EXCLUSIVA DA MODELO ───────────────────── */
.profile-loading,
.profile-not-found {
  min-height: 62vh;
  display: grid;
  align-content: center;
  gap: 18px;
  padding-block: 140px 100px;
}

.profile-not-found {
  max-width: 760px;
  text-align: center;
  justify-items: center;
}

.profile-not-found h1,
.profile-loading h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.4rem);
  line-height: 0.95;
}

.profile-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 56px;
  border-bottom: 1px solid rgba(255, 35, 65, 0.18);
  background:
    radial-gradient(circle at 12% 26%, rgba(255, 18, 49, 0.16), transparent 35%),
    linear-gradient(145deg, #080304 0%, #020202 62%);
}

.profile-hero::after {
  position: absolute;
  inset: auto -12% -32% 34%;
  height: 58%;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(218, 0, 38, 0.16), transparent 67%);
  filter: blur(40px);
}

.profile-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.profile-portrait {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 35, 65, 0.28);
  border-radius: 26px;
  background: #080304;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}

.profile-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 0, 1, 0.78) 100%);
}

.profile-portrait-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center 24%;
}

.profile-portrait .status-badge {
  z-index: 2;
  top: 18px;
  left: 18px;
  right: auto;
}

.profile-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.profile-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-back:hover,
.profile-back:focus-visible {
  color: #fff;
}

.profile-intro h1 {
  max-width: 760px;
  margin: 10px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 12vw, 7.4rem);
  line-height: 0.84;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.profile-intro > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #c4bbbd;
  font-size: clamp(1rem, 2.4vw, 1.14rem);
  line-height: 1.75;
}

.profile-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.profile-facts span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #d6cfd0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.profile-facts img {
  width: 16px;
  height: 16px;
}

.profile-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-top: 30px;
}

.profile-hero-actions > * {
  min-width: min(220px, 100%);
}

.profile-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: #83797b;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.profile-trust span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  content: "";
}

.profile-section,
.profile-vault {
  padding-block: clamp(64px, 10vw, 118px);
}

.profile-section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.profile-section-heading h2 {
  margin: 7px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.profile-section-heading > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.profile-preview-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82vw, 340px);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 30, 61, 0.7) rgba(255, 255, 255, 0.05);
}

.profile-preview-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  scroll-snap-align: start;
}

.profile-preview-media {
  position: relative;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  background: #050203;
}

.profile-preview-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050203;
}

.profile-preview-number {
  position: absolute;
  top: 13px;
  left: 13px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(2, 2, 2, 0.7);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.profile-preview-copy {
  display: grid;
  gap: 4px;
  padding: 16px 17px 18px;
}

.profile-preview-copy strong {
  color: #fff;
  font-size: 0.92rem;
}

.profile-preview-copy span {
  color: var(--muted);
  font-size: 0.72rem;
}

.profile-vault {
  border-top: 1px solid rgba(255, 35, 65, 0.14);
  background: linear-gradient(180deg, rgba(16, 0, 3, 0.56), transparent 34%), #030303;
}

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

.locked-video-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: #090607;
  color: #fff;
  content-visibility: auto;
  contain-intrinsic-size: 220px 360px;
}

.locked-video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 9 / 12;
  overflow: hidden;
}

.locked-video-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(1, 1, 1, 0.15), rgba(1, 1, 1, 0.72));
}

.locked-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--locked-position, 50%);
  filter: blur(6px) brightness(0.65) saturate(0.85);
  transform: scale(1.05);
}

.locked-video-overlay {
  position: absolute;
  inset: 0 0 58px;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  pointer-events: none;
}

.locked-video-overlay i {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(4, 1, 2, 0.72);
  box-shadow: 0 0 34px rgba(255, 20, 52, 0.22);
  backdrop-filter: blur(10px);
}

.locked-video-overlay i::before,
.locked-video-overlay i::after {
  position: absolute;
  content: "";
}

.locked-video-overlay i::before {
  top: 17px;
  left: 17px;
  width: 18px;
  height: 17px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.locked-video-overlay i::after {
  top: 11px;
  left: 21px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.locked-video-overlay b {
  padding: 4px 8px;
  border: 1px solid rgba(255, 28, 59, 0.52);
  border-radius: 999px;
  background: rgba(104, 0, 18, 0.58);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.locked-video-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 14px;
  background: #090607;
}

.locked-video-copy strong {
  overflow: hidden;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.locked-video-copy small {
  color: #9c9193;
  font-size: 0.65rem;
}

.locked-video-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.profile-vault-more {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
}

.profile-unlock-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 26px;
  border: 1px solid rgba(255, 28, 59, 0.35);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 50%, rgba(255, 19, 51, 0.17), transparent 38%),
    rgba(255, 255, 255, 0.025);
}

.profile-unlock-panel h2 {
  margin: 8px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.7rem);
  line-height: 0.95;
}

.profile-unlock-panel p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (min-width: 720px) {
  .profile-hero {
    padding: 124px 0 82px;
  }

  .profile-hero-grid {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(46px, 6vw, 92px);
  }

  .profile-portrait,
  .profile-portrait-image {
    min-height: min(72vh, 790px);
  }

  .profile-hero-actions > * {
    width: auto;
  }

  .profile-section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
    align-items: end;
  }

  .profile-section-heading > p {
    justify-self: end;
  }

  .profile-preview-grid {
    grid-auto-columns: minmax(280px, 330px);
  }

  .locked-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .profile-unlock-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 38px 42px;
  }
}

@media (min-width: 1120px) {
  .locked-video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .locked-video-card {
    transition:
      transform 220ms var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
      border-color 220ms ease;
  }

  .locked-video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 31, 62, 0.46);
  }
}

@media (max-width: 719px) {
  .profile-hero {
    padding-top: 74px;
  }

  .profile-hero-grid {
    width: 100%;
  }

  .profile-portrait {
    height: clamp(360px, 46svh, 460px);
    min-height: 0;
    border-radius: 0 0 24px 24px;
    border-inline: 0;
  }

  .profile-portrait-image {
    height: 100%;
    min-height: 0;
  }

  .profile-intro {
    padding-inline: 20px;
  }

  .profile-intro h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .profile-hero-actions {
    display: grid;
  }

  .profile-hero-actions > * {
    width: 100%;
  }

  .profile-trust {
    gap: 11px 16px;
  }

  .profile-section,
  .profile-vault {
    padding-block: 64px;
  }

  .profile-section-heading {
    padding-inline: 2px;
  }

  .profile-preview-grid {
    margin-inline: -20px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .locked-video-grid {
    margin-inline: -2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .locked-video-card,
  .profile-portrait-image {
    transition: none !important;
  }
}

/* ───────────────── Perfil: prévias sem controles + navegação mobile ───────────────── */
.profile-mobile-nav {
  display: none;
}

#previas {
  scroll-margin-top: 92px;
}

.profile-preview-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
}

.profile-preview-trigger:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
  border-radius: 20px 20px 0 0;
}

.profile-preview-media {
  display: block;
  isolation: isolate;
}

.profile-preview-thumbnail,
.profile-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050203;
  transition:
    opacity 260ms ease,
    transform 700ms var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.profile-preview-thumbnail {
  z-index: 1;
}

.profile-preview-video {
  z-index: 2;
  opacity: 0;
}

.profile-preview-card.is-playing .profile-preview-thumbnail,
.profile-preview-card.is-paused .profile-preview-thumbnail {
  opacity: 0;
  transform: scale(1.035);
}

.profile-preview-card.is-playing .profile-preview-video,
.profile-preview-card.is-paused .profile-preview-video {
  opacity: 1;
}

.profile-preview-play {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42));
  pointer-events: none;
  transition: opacity 180ms ease;
}

.profile-preview-play i {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(4, 1, 2, 0.62);
  box-shadow: 0 0 38px rgba(255, 20, 53, 0.34);
  backdrop-filter: blur(12px);
}

.profile-preview-play i::after {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  content: "";
}

.profile-preview-play b {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  color: #fff;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.profile-preview-card.is-playing .profile-preview-play,
.profile-preview-card.is-paused .profile-preview-play,
.profile-preview-card.is-loading .profile-preview-play {
  opacity: 0;
}

.profile-preview-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  background: rgba(2, 2, 2, 0.54);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
}

.profile-preview-card.is-loading .profile-preview-loading {
  opacity: 1;
}

.profile-preview-progress {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 6;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.profile-preview-progress i {
  display: block;
  width: var(--preview-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: #ff173f;
  box-shadow: 0 0 12px rgba(255, 23, 63, 0.82);
}

.profile-preview-card.is-playing .profile-preview-progress {
  opacity: 1;
}

/* Editor de metadados e thumbnail das prévias no painel. */
.admin-preview-feed-visual {
  display: grid;
  gap: 8px;
  min-width: 110px;
}

.admin-preview-feed-thumb {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #080405;
}

.admin-preview-feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-preview-feed-fields {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.admin-preview-feed-fields label {
  display: grid;
  gap: 5px;
  color: #a89fa1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-preview-feed-fields .field-control {
  min-height: 44px;
  padding: 10px 12px;
}

.admin-preview-thumbnail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.admin-preview-thumbnail-actions .btn-outline,
.admin-preview-thumbnail-actions .admin-file-button {
  min-height: 40px;
  padding: 8px 10px;
  font-size: 0.66rem;
}

@media (max-width: 719px) {
  .profile-hero {
    padding-top: 70px;
  }

  .profile-mobile-nav {
    position: relative;
    z-index: 4;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 1, 2, 0.92);
    color: #d7ced0;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
  }

  .profile-mobile-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: inherit;
  }

  .profile-mobile-nav a:last-child {
    justify-content: flex-end;
    color: #fff;
  }

  .profile-back--desktop {
    display: none;
  }

  .profile-preview-play i {
    width: 58px;
    height: 58px;
  }

  .admin-preview-feed-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .admin-preview-feed-actions {
    grid-column: 1 / -1;
  }
}

@media (min-width: 720px) {
  .profile-preview-trigger:hover .profile-preview-thumbnail {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-preview-thumbnail,
  .profile-preview-video,
  .profile-preview-play,
  .profile-preview-progress {
    transition: none !important;
  }
}

@media (max-width: 719px) {
  .profile-hero {
    padding-top: 0;
  }
}

@media (max-width: 719px) {
  .profile-section {
    overflow-x: clip;
  }

  .profile-preview-grid {
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
}

/* Refinamento mobile — filtros, heróis e ranking */
.toolbar.toolbar--catalog {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(170px, 0.85fr));
  gap: 14px;
  padding: 18px;
  overflow: visible;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 32, 57, 0.08), transparent 26rem),
    linear-gradient(145deg, rgba(13, 8, 9, 0.98), rgba(5, 5, 5, 0.98));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.025),
    0 18px 46px rgba(0, 0, 0, 0.32);
}

.filter-field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
}

.filter-field__label {
  min-height: 34px;
  display: grid;
  align-content: start;
  gap: 2px;
  color: #fff;
  cursor: pointer;
}

.filter-field__label span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.filter-field__label small {
  color: #777;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.25;
  text-transform: none;
}

.filter-control-shell {
  position: relative;
}

.filter-control-shell--search::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 1.5px solid #a8a8a8;
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}

.filter-control-shell--search::after {
  content: "";
  position: absolute;
  top: calc(50% + 5px);
  left: 29px;
  z-index: 2;
  width: 7px;
  height: 1.5px;
  border-radius: 999px;
  background: #a8a8a8;
  transform: rotate(45deg);
  transform-origin: left center;
  pointer-events: none;
}

.toolbar--catalog .field-control {
  min-height: 52px;
  height: 52px;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.018);
  font-size: 13px;
}

.toolbar--catalog .filter-control-shell--search .field-control {
  padding-inline: 46px 14px;
}

.toolbar--catalog .field-control::placeholder {
  color: #777;
}

.toolbar--catalog .field-control:focus {
  border-color: rgba(255, 32, 57, 0.82);
  box-shadow:
    0 0 0 3px rgba(255, 32, 57, 0.1),
    inset 0 1px rgba(255, 255, 255, 0.025);
}

.filter-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 2px;
}

.toolbar--catalog .filter-favorite,
.filter-reset {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #d0d0d0;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-reset {
  cursor: pointer;
  transition:
    border-color 180ms var(--ease-standard),
    color 180ms var(--ease-standard),
    background 180ms var(--ease-standard);
}

.filter-reset:hover,
.filter-reset:focus-visible {
  border-color: rgba(255, 32, 57, 0.58);
  background: rgba(255, 32, 57, 0.08);
  color: #fff;
}

.custom-select {
  position: relative;
  min-width: 0;
}

.custom-select__native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.custom-select__button {
  position: relative;
  width: 100%;
  min-height: 52px;
  padding: 0 46px 0 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.72);
  color: #f4f4f4;
  font: inherit;
  font-size: 13px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition:
    border-color 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard),
    background 180ms var(--ease-standard);
}

.custom-select__button i {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #bcbcbc;
  border-bottom: 1.5px solid #bcbcbc;
  transform: translateY(-72%) rotate(45deg);
  transition: transform 180ms var(--ease-standard);
}

.custom-select.is-open .custom-select__button,
.custom-select__button:hover,
.custom-select__button:focus-visible {
  border-color: rgba(255, 32, 57, 0.76);
  background: rgba(15, 3, 5, 0.94);
  box-shadow: 0 0 0 3px rgba(255, 32, 57, 0.09);
  outline: none;
}

.custom-select.is-open .custom-select__button i {
  transform: translateY(-28%) rotate(225deg);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  z-index: 140;
  max-height: 270px;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid rgba(255, 32, 57, 0.38);
  border-radius: 13px;
  background: #080607;
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.72),
    inset 0 1px rgba(255, 255, 255, 0.025);
}

.custom-select__menu[hidden] {
  display: none;
}

.custom-select__option {
  width: 100%;
  min-height: 43px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #cfcfcf;
  font: inherit;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.custom-select__option::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: transparent;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.custom-select__option.is-selected {
  background: linear-gradient(90deg, rgba(255, 32, 57, 0.16), rgba(255, 32, 57, 0.035));
  color: #fff;
}

.custom-select__option.is-selected::after {
  background: var(--red);
  box-shadow: 0 0 9px rgba(255, 32, 57, 0.72);
}

/* O Top 10 fica limpo: toda a foto continua sendo o alvo para abrir as prévias. */
.ranking-photo .rank-number,
.ranking-photo .ranking-preview-hint {
  display: none !important;
}

.ranking-preview-zone {
  cursor: pointer;
}

.ranking-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

@media (max-width: 940px) {
  /* Os heróis internos passam a começar no topo, em vez de centralizar o texto no painel. */
  .inner-hero {
    min-height: clamp(238px, 54vw, 310px);
    align-items: start;
  }

  .inner-hero .shell {
    padding-top: 26px;
    padding-bottom: 42px;
  }

  .inner-hero .shell::before {
    top: 24px;
    height: 88px;
    transform: none;
  }

  .inner-hero h1 {
    margin-top: 9px;
  }

  .hero-copy {
    justify-content: flex-start;
  }

  .toolbar.toolbar--catalog {
    grid-template-columns: 1fr 1fr;
  }

  .filter-field--search,
  .filter-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .inner-hero {
    min-height: 260px;
  }

  .inner-hero .shell {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .inner-hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .inner-hero p {
    max-width: 34ch;
    font-size: 13px;
    line-height: 1.48;
  }

  .hero-copy {
    min-height: inherit;
    padding-top: 20px;
    justify-content: flex-start;
  }

  .hero-brand {
    margin-bottom: 0;
  }

  .mobile-filter-toggle {
    min-height: 56px;
    padding-inline: 16px;
    border-color: rgba(255, 32, 57, 0.52);
    background:
      linear-gradient(100deg, rgba(255, 32, 57, 0.07), transparent 48%), rgba(7, 7, 7, 0.98);
  }

  .mobile-filter-toggle.is-open {
    border-color: rgba(255, 32, 57, 0.82);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 0 0 3px rgba(255, 32, 57, 0.07);
  }

  .js .toolbar.toolbar--catalog.mobile-filter-panel.is-open {
    max-height: 1180px;
    margin-bottom: 14px;
    padding: 16px;
    overflow: visible;
    border-color: rgba(255, 255, 255, 0.11);
  }

  .toolbar.toolbar--catalog {
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 16px;
    background:
      radial-gradient(circle at 0 0, rgba(255, 32, 57, 0.095), transparent 18rem),
      rgba(7, 7, 7, 0.985);
  }

  .toolbar--catalog .filter-field,
  .toolbar--catalog .filter-field--search,
  .toolbar--catalog .filter-actions {
    grid-column: 1;
  }

  .filter-field {
    gap: 8px;
  }

  .filter-field__label {
    min-height: 0;
    padding-inline: 2px;
  }

  .filter-field__label span {
    font-size: 9px;
  }

  .filter-field__label small {
    font-size: 8px;
  }

  .toolbar--catalog .field-control,
  .custom-select__button {
    min-height: 54px;
    height: 54px;
    font-size: 16px;
  }

  .custom-select__menu {
    position: static;
    margin-top: 7px;
    max-height: 260px;
    border-color: rgba(255, 32, 57, 0.3);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  }

  .custom-select__option {
    min-height: 48px;
    font-size: 14px;
  }

  .filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 0;
  }

  .toolbar--catalog .filter-favorite,
  .filter-reset {
    width: 100%;
    min-height: 48px;
    padding-inline: 10px;
  }

  .toolbar-meta {
    padding: 0 3px;
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Page hero videos · Modelos, Vídeos e Planos */
.inner-hero--video {
  --page-hero-video-opacity: 0.78;
  --page-hero-video-position: center 38%;
  min-height: clamp(360px, 38vw, 520px);
  display: flex;
  align-items: stretch;
  isolation: isolate;
  padding: 0;
  background: #050203;
}

.inner-hero--video::before {
  inset: 0;
  z-index: 2;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  transform: none;
  background:
    linear-gradient(
      90deg,
      #040304 0%,
      rgba(4, 3, 4, 0.98) 18%,
      rgba(4, 3, 4, 0.86) 40%,
      rgba(4, 3, 4, 0.38) 67%,
      rgba(4, 3, 4, 0.12) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 45%, rgba(0, 0, 0, 0.5));
  box-shadow: none;
  pointer-events: none;
}

.inner-hero--video::after {
  z-index: 4;
}

.inner-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-position: right var(--page-hero-video-position);
  background-size: auto 100%;
  background-repeat: no-repeat;
}

body[data-page="modelos"] .inner-hero__media {
  background-image: url("../images/page-heroes/modelos-poster.webp");
}

body[data-page="videos"] .inner-hero__media {
  background-image: url("../images/page-heroes/videos-poster.webp");
}

body[data-page="planos"] .inner-hero__media {
  background-image: url("../images/page-heroes/planos-poster.webp");
}

.inner-hero__video {
  position: absolute;
  inset: 0 0 0 auto;
  display: block;
  width: min(58vw, 780px);
  height: 100%;
  object-fit: cover;
  object-position: var(--page-hero-video-position);
  opacity: 0;
  filter: brightness(0.66) contrast(1.08) saturate(0.88);
  transform: scale(1.015);
  transition:
    opacity 440ms var(--ease-standard),
    filter 620ms var(--ease-standard),
    transform 1100ms var(--ease-emphasis);
}

.inner-hero--video.has-visible-frame .inner-hero__video {
  opacity: var(--page-hero-video-opacity);
}

.inner-hero--video.is-playing .inner-hero__video {
  filter: brightness(0.72) contrast(1.07) saturate(0.94);
  transform: scale(1.005);
}

.inner-hero--video.has-video-error .inner-hero__video {
  opacity: 0;
}

.inner-hero__content {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-block: clamp(58px, 7vw, 88px) clamp(52px, 6vw, 78px);
}

.inner-hero--video .eyebrow,
.inner-hero--video h1,
.inner-hero--video p {
  position: relative;
  z-index: 1;
}

.inner-hero--video h1 {
  width: min(48vw, 620px);
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
  text-shadow:
    0 4px 28px rgba(0, 0, 0, 0.95),
    0 0 12px rgba(255, 255, 255, 0.16);
}

.inner-hero--video p {
  max-width: 46ch;
  color: rgba(236, 236, 236, 0.84);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.96);
}

.inner-hero--modelos {
  --page-hero-video-position: center 34%;
}

.inner-hero--videos {
  --page-hero-video-position: center 42%;
}

.inner-hero--planos {
  --page-hero-video-position: center 38%;
  --page-hero-video-opacity: 0.74;
}

@media (max-width: 940px) {
  .inner-hero--video {
    min-height: clamp(340px, 74vw, 430px);
  }

  .inner-hero--video::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 2, 3, 0.85) 0%,
        rgba(3, 2, 3, 0.72) 34%,
        rgba(3, 2, 3, 0.54) 68%,
        rgba(3, 2, 3, 0.72) 100%
      ),
      linear-gradient(90deg, rgba(3, 2, 3, 0.76), rgba(3, 2, 3, 0.08));
  }

  .inner-hero__media {
    background-position: center var(--page-hero-video-position);
    background-size: cover;
  }

  .inner-hero__video {
    inset: 0;
    width: 100%;
    object-position: var(--page-hero-video-position);
    filter: brightness(0.58) contrast(1.08) saturate(0.85);
  }

  .inner-hero--video.is-playing .inner-hero__video {
    filter: brightness(0.63) contrast(1.07) saturate(0.9);
  }

  .inner-hero--video .inner-hero__content {
    min-height: inherit;
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .inner-hero--video h1 {
    max-width: 11ch;
  }

  .inner-hero--video p {
    max-width: 32ch;
  }
}

@media (max-width: 640px) {
  .inner-hero--video {
    min-height: 390px;
  }

  .inner-hero--video .inner-hero__content {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .inner-hero--video h1 {
    width: min(100%, 360px);
    max-width: none;
    font-size: clamp(42px, 12.6vw, 56px);
  }

  .inner-hero--video p {
    max-width: 30ch;
    color: rgba(245, 245, 245, 0.86);
  }
}

@media (prefers-reduced-motion: reduce) {
  .inner-hero__video {
    display: none;
  }
}

/* ==========================================================================
   Layout integrity pass · vídeos ocupam o card e não reservam área vazia
   ========================================================================== */

/* Home: o vídeo é o fundo integral do card, não uma coluna lateral. */
.hero-panel {
  min-height: clamp(540px, 42vw, 650px);
}

.hero-presence.hero-presence--video {
  inset: 0;
  width: 100%;
  opacity: 1;
}

.hero-presence--video::before {
  background:
    linear-gradient(
      90deg,
      rgba(3, 3, 3, 0.98) 0%,
      rgba(3, 3, 3, 0.91) 28%,
      rgba(3, 3, 3, 0.58) 52%,
      rgba(3, 3, 3, 0.15) 76%,
      rgba(3, 3, 3, 0.04) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 48%, rgba(0, 0, 0, 0.62));
}

.hero-presence--video::after {
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 32, 57, 0.11), transparent 45%),
    linear-gradient(180deg, transparent 52%, rgba(40, 0, 6, 0.16));
}

.hero-background-video {
  width: 100%;
  height: 100%;
  object-position: 58% 27%;
}

.hero-copy {
  width: min(52%, 650px);
}

/* Heróis internos: uma única mídia contínua, sem emenda ou poster duplicado. */
.inner-hero--video {
  min-height: clamp(350px, 31vw, 460px);
}

.inner-hero__media {
  background-position: var(--page-hero-video-position);
  background-size: cover;
}

.inner-hero__video {
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner-hero--video::before {
  background:
    linear-gradient(
      90deg,
      rgba(3, 2, 3, 0.98) 0%,
      rgba(3, 2, 3, 0.92) 28%,
      rgba(3, 2, 3, 0.6) 52%,
      rgba(3, 2, 3, 0.18) 76%,
      rgba(3, 2, 3, 0.04) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 48%, rgba(0, 0, 0, 0.52));
}

.inner-hero--video .inner-hero__content {
  padding-block: clamp(48px, 5vw, 68px);
}

.inner-hero--video h1 {
  width: min(46vw, 610px);
}

@media (max-width: 940px) {
  /* Em tablet/celular a altura é definida pelo conteúdo real, não pela viewport. */
  .hero-panel {
    min-height: 0;
    max-height: none;
  }

  .hero-copy {
    width: 100%;
    min-height: 0;
    padding-top: clamp(24px, 5vw, 34px);
    padding-bottom: clamp(18px, 4vw, 26px);
    justify-content: flex-start;
  }

  .hero-presence--video::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 3, 3, 0.18) 0%,
        rgba(3, 3, 3, 0.12) 28%,
        rgba(3, 3, 3, 0.48) 64%,
        rgba(3, 3, 3, 0.9) 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.76) 0%,
        rgba(5, 5, 5, 0.28) 62%,
        rgba(5, 5, 5, 0.06) 100%
      );
  }

  .hero-background-video,
  .hero-presence--video.is-playing .hero-background-video {
    object-position: 58% 22%;
  }

  .inner-hero,
  .inner-hero--video {
    min-height: 0;
  }

  .inner-hero--video .inner-hero__content,
  .inner-hero .shell {
    min-height: 0;
    padding-top: clamp(24px, 6vw, 34px);
    padding-bottom: clamp(26px, 6vw, 38px);
  }

  .inner-hero--video::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 2, 3, 0.42) 0%,
        rgba(3, 2, 3, 0.24) 34%,
        rgba(3, 2, 3, 0.58) 72%,
        rgba(3, 2, 3, 0.86) 100%
      ),
      linear-gradient(90deg, rgba(3, 2, 3, 0.72), rgba(3, 2, 3, 0.06));
  }

  .inner-hero--video h1 {
    width: min(100%, 11ch);
  }
}

@media (max-width: 640px) {
  .home-layout {
    gap: 14px;
  }

  .hero-panel {
    min-height: 0;
  }

  .hero-copy {
    padding: 18px 14px 14px;
  }

  .hero-live-carousel {
    margin-bottom: 0;
  }

  .hero-panel::after {
    bottom: 10px;
  }

  .inner-hero,
  .inner-hero--video {
    min-height: 0;
  }

  .inner-hero--video .inner-hero__content,
  .inner-hero .shell {
    padding-top: 22px;
    padding-bottom: 26px;
  }

  .inner-hero--video h1 {
    width: min(100%, 9.6ch);
    font-size: clamp(40px, 11.8vw, 52px);
  }

  .inner-hero--video p {
    max-width: 31ch;
    font-size: 13px;
    line-height: 1.46;
  }

  .inner-hero__video,
  .inner-hero--video.is-playing .inner-hero__video {
    filter: brightness(0.66) contrast(1.06) saturate(0.9);
  }

  .inner-hero--modelos {
    --page-hero-video-position: 52% 36%;
  }

  .inner-hero--videos {
    --page-hero-video-position: 54% 42%;
  }

  .inner-hero--planos {
    --page-hero-video-position: 52% 39%;
  }
}

/* O indicador lateral duplicava informações e invadia o conteúdo em telas largas. */
.scene-indicator,
.inner-hero .shell::after {
  display: none !important;
}

/* Hero video refresh · arquivos fornecidos em 2026-07-25 */
body[data-page="regioes"] .inner-hero__media {
  background-image: url("../images/page-heroes/regioes-poster.webp");
}
body[data-page="depoimentos"] .inner-hero__media {
  background-image: url("../images/page-heroes/depoimentos-poster.webp");
}
body[data-page="anunciar"] .inner-hero__media,
body[data-page="contato"] .inner-hero__media {
  background-image: url("../images/page-heroes/contato-poster.webp");
}

.inner-hero--regioes {
  --page-hero-video-position: 52% 36%;
  --page-hero-video-opacity: 0.76;
}
.inner-hero--depoimentos {
  --page-hero-video-position: 50% 32%;
  --page-hero-video-opacity: 0.74;
}
.inner-hero--anunciar {
  --page-hero-video-position: 50% 28%;
  --page-hero-video-opacity: 0.72;
}
.inner-hero--contato {
  --page-hero-video-position: 50% 26%;
  --page-hero-video-opacity: 0.72;
}

/* O conteúdo define a altura: nenhum hero reserva espaço com base na viewport. */
.inner-hero--video {
  min-height: 0;
}
.inner-hero--video .inner-hero__content {
  min-height: 0;
  padding-block: clamp(44px, 5vw, 68px);
}
.inner-hero--video .inner-hero__video {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 940px) {
  .hero-background-video {
    object-position: 50% 28%;
  }
  .inner-hero--modelos {
    --page-hero-video-position: 50% 31%;
  }
  .inner-hero--videos {
    --page-hero-video-position: 50% 29%;
  }
  .inner-hero--planos {
    --page-hero-video-position: 50% 35%;
  }
  .inner-hero--regioes {
    --page-hero-video-position: 50% 32%;
  }
  .inner-hero--depoimentos {
    --page-hero-video-position: 50% 30%;
  }
  .inner-hero--anunciar,
  .inner-hero--contato {
    --page-hero-video-position: 50% 25%;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding-bottom: 14px;
  }
  .inner-hero--video .inner-hero__content {
    padding-top: 22px;
    padding-bottom: 24px;
  }
  .inner-hero--video::before {
    background:
      linear-gradient(
        180deg,
        rgba(3, 2, 3, 0.28) 0%,
        rgba(3, 2, 3, 0.32) 35%,
        rgba(3, 2, 3, 0.72) 100%
      ),
      linear-gradient(90deg, rgba(3, 2, 3, 0.72), rgba(3, 2, 3, 0.05));
  }
}

/* ==========================================================================
   Video hero polish · continuous overlays without horizontal banding
   ========================================================================== */

/* A single continuous lighting layer replaces the stacked dark bands. */
.inner-hero--video::before {
  opacity: 1;
  background:
    radial-gradient(
      ellipse 92% 138% at 4% 45%,
      rgba(3, 2, 3, 0.93) 0%,
      rgba(3, 2, 3, 0.82) 28%,
      rgba(3, 2, 3, 0.56) 50%,
      rgba(3, 2, 3, 0.24) 72%,
      rgba(3, 2, 3, 0.04) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 2, 2, 0.18) 0%,
      rgba(2, 2, 2, 0.05) 42%,
      rgba(2, 2, 2, 0.16) 72%,
      rgba(2, 2, 2, 0.42) 100%
    );
}

/* The old 42%-high bottom overlay was the visible horizontal division. */
.inner-hero--video::after {
  inset: auto 0 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 32, 57, 0.72),
    rgba(255, 32, 57, 0.08) 58%,
    transparent
  );
  opacity: 0.8;
  transform: none;
}

.hero-presence--video::before {
  background:
    radial-gradient(
      ellipse 88% 142% at 0% 48%,
      rgba(3, 3, 3, 0.96) 0%,
      rgba(3, 3, 3, 0.86) 30%,
      rgba(3, 3, 3, 0.54) 54%,
      rgba(3, 3, 3, 0.18) 76%,
      rgba(3, 3, 3, 0.03) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.17) 0%,
      rgba(0, 0, 0, 0.03) 45%,
      rgba(0, 0, 0, 0.18) 76%,
      rgba(0, 0, 0, 0.48) 100%
    );
}

.hero-presence--video::after {
  background:
    radial-gradient(ellipse 54% 72% at 72% 42%, rgba(255, 32, 57, 0.1), transparent 72%),
    radial-gradient(ellipse 110% 90% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.28) 100%);
  box-shadow: none;
}

@media (max-width: 940px) {
  .inner-hero--video::before {
    background:
      radial-gradient(
        ellipse 148% 112% at -12% 20%,
        rgba(3, 2, 3, 0.88) 0%,
        rgba(3, 2, 3, 0.71) 34%,
        rgba(3, 2, 3, 0.38) 60%,
        rgba(3, 2, 3, 0.08) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 2, 3, 0.12) 0%,
        rgba(3, 2, 3, 0.05) 42%,
        rgba(3, 2, 3, 0.24) 72%,
        rgba(3, 2, 3, 0.58) 100%
      );
  }

  .hero-presence--video::before {
    background:
      radial-gradient(
        ellipse 146% 116% at -14% 20%,
        rgba(3, 3, 3, 0.88) 0%,
        rgba(3, 3, 3, 0.7) 32%,
        rgba(3, 3, 3, 0.34) 61%,
        rgba(3, 3, 3, 0.05) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.03) 44%,
        rgba(0, 0, 0, 0.24) 74%,
        rgba(0, 0, 0, 0.61) 100%
      );
  }
}

@media (max-width: 640px) {
  .inner-hero--video::before {
    background:
      radial-gradient(
        ellipse 170% 108% at -18% 16%,
        rgba(3, 2, 3, 0.85) 0%,
        rgba(3, 2, 3, 0.68) 34%,
        rgba(3, 2, 3, 0.31) 64%,
        rgba(3, 2, 3, 0.04) 100%
      ),
      linear-gradient(
        180deg,
        rgba(3, 2, 3, 0.08) 0%,
        rgba(3, 2, 3, 0.04) 43%,
        rgba(3, 2, 3, 0.22) 74%,
        rgba(3, 2, 3, 0.55) 100%
      );
  }

  .hero-presence--video::before {
    background:
      radial-gradient(
        ellipse 168% 112% at -18% 18%,
        rgba(3, 3, 3, 0.86) 0%,
        rgba(3, 3, 3, 0.66) 34%,
        rgba(3, 3, 3, 0.28) 64%,
        rgba(3, 3, 3, 0.04) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06) 0%,
        rgba(0, 0, 0, 0.03) 44%,
        rgba(0, 0, 0, 0.2) 74%,
        rgba(0, 0, 0, 0.58) 100%
      );
  }
}

/* ==========================================================================
   Hero video clarity · sem sombra fixa e com vinheta contínua
   ========================================================================== */

/*
 * A leitura passa a depender de sombras tipográficas, não de uma placa escura
 * imóvel sobre metade do vídeo. A camada global agora apenas suaviza as bordas.
 */
.inner-hero--video::before,
.hero-presence--video::before {
  background:
    radial-gradient(
      ellipse 116% 104% at 50% 45%,
      transparent 48%,
      rgba(0, 0, 0, 0.08) 68%,
      rgba(0, 0, 0, 0.24) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      transparent 22%,
      transparent 74%,
      rgba(0, 0, 0, 0.28) 100%
    );
}

.inner-hero--video::after {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 32, 57, 0.7),
    rgba(255, 32, 57, 0.08) 58%,
    transparent
  );
}

.hero-presence--video::after {
  background:
    radial-gradient(ellipse 55% 72% at 70% 43%, rgba(255, 32, 57, 0.08), transparent 74%),
    radial-gradient(ellipse 112% 96% at 50% 50%, transparent 66%, rgba(0, 0, 0, 0.2) 100%);
  box-shadow: none;
}

/* O vídeo fica mais presente; a legibilidade vem do texto, não de uma máscara fixa. */
.inner-hero__video {
  filter: brightness(0.82) contrast(1.04) saturate(0.98);
}

.inner-hero--video.is-playing .inner-hero__video {
  filter: brightness(0.86) contrast(1.04) saturate(1);
}

.hero-background-video {
  filter: brightness(0.8) contrast(1.04) saturate(0.96);
}

.hero-presence--video.is-playing .hero-background-video {
  filter: brightness(0.84) contrast(1.04) saturate(0.98);
}

.inner-hero--video .eyebrow,
.inner-hero--video h1,
.inner-hero--video p,
.hero-brand,
.hero-title,
.hero-copy > p,
.hero-meta {
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.96),
    0 8px 26px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(0, 0, 0, 0.52);
}

@media (max-width: 940px) {
  .inner-hero--video::before,
  .hero-presence--video::before {
    background:
      radial-gradient(
        ellipse 130% 112% at 50% 42%,
        transparent 43%,
        rgba(0, 0, 0, 0.08) 67%,
        rgba(0, 0, 0, 0.24) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.09) 0%,
        transparent 21%,
        transparent 72%,
        rgba(0, 0, 0, 0.3) 100%
      );
  }

  .inner-hero__video,
  .inner-hero--video.is-playing .inner-hero__video {
    filter: brightness(0.78) contrast(1.05) saturate(0.96);
  }

  .hero-background-video,
  .hero-presence--video.is-playing .hero-background-video {
    filter: brightness(0.76) contrast(1.05) saturate(0.94);
  }
}

@media (max-width: 640px) {
  .inner-hero--video::before,
  .hero-presence--video::before {
    background:
      radial-gradient(
        ellipse 142% 118% at 50% 40%,
        transparent 40%,
        rgba(0, 0, 0, 0.08) 66%,
        rgba(0, 0, 0, 0.25) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        transparent 19%,
        transparent 70%,
        rgba(0, 0, 0, 0.32) 100%
      );
  }
}

/* ==========================================================================
   Final video-card integrity · remove poster ghost, unify shells and mobile VIP badge
   ========================================================================== */

/*
 * The page posters are only loading fallbacks. Once a decoded frame exists,
 * the fallback is removed and the video becomes fully opaque. This prevents a
 * static poster from remaining visibly blended over the moving footage.
 */
.inner-hero--video.has-visible-frame:not(.has-video-error) .inner-hero__media,
.hero-presence--video.has-visible-frame:not(.has-video-error) {
  background-image: none !important;
}

.inner-hero--video.has-visible-frame:not(.has-video-error) .inner-hero__video,
.hero-presence--video.has-visible-frame:not(.has-video-error) .hero-background-video {
  opacity: 1 !important;
}

/* Remove the decorative vertical red rule from every internal hero. */
.inner-hero .shell::before {
  display: none !important;
}

/*
 * All video heroes, except Plans, use the same card shell as the home hero:
 * shell width, border, radius, shadow and a shared visual height.
 */
.hero-panel,
.inner-hero--video:not(.inner-hero--planos) {
  min-height: 620px;
}

.inner-hero--video:not(.inner-hero--planos) {
  width: min(calc(100% - 40px), var(--content));
  margin: 20px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 35, 56, 0.28);
  border-radius: var(--radius-panel);
  box-shadow:
    var(--shadow-panel),
    inset 0 0 60px rgba(255, 32, 57, 0.03);
}

.inner-hero--video:not(.inner-hero--planos) .inner-hero__content {
  min-height: 620px;
  padding: 66px 38px 54px;
}

@media (max-width: 940px) {
  .hero-panel,
  .inner-hero--video:not(.inner-hero--planos) {
    min-height: 590px;
  }

  .inner-hero--video:not(.inner-hero--planos) {
    width: min(calc(100% - 32px), var(--content));
    margin-top: 16px;
    border-radius: 20px;
  }

  .inner-hero--video:not(.inner-hero--planos) .inner-hero__content {
    min-height: 590px;
    padding: 34px 24px 30px;
  }
}

@media (max-width: 640px) {
  .hero-panel,
  .inner-hero--video:not(.inner-hero--planos) {
    min-height: min(600px, calc(100svh - var(--mobile-header) - 18px));
  }

  .inner-hero--video:not(.inner-hero--planos) {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .inner-hero--video:not(.inner-hero--planos) .inner-hero__content {
    min-height: min(600px, calc(100svh - var(--mobile-header) - 18px));
    padding: 28px 16px 24px;
  }

  /* Keep the featured label inside the VIP card so horizontal scrolling cannot clip it. */
  .plan-card.featured {
    padding-top: 58px;
    transform: none;
  }

  .plan-card.featured:hover,
  .plan-card.featured:focus-within {
    transform: none;
  }

  .plan-card.featured .plan-label {
    top: 14px;
    left: 18px;
    max-width: calc(100% - 36px);
    transform: none;
  }
}

/* Shared dimensions: home and all video cards except Plans remain pixel-aligned. */
.hero-panel,
.inner-hero--video:not(.inner-hero--planos) {
  height: clamp(620px, calc(100svh - 172px), 728px);
  min-height: 620px;
}

.inner-hero--video:not(.inner-hero--planos) .inner-hero__content {
  min-height: 100%;
}

@media (max-width: 940px) {
  .hero-panel,
  .inner-hero--video:not(.inner-hero--planos) {
    height: 590px;
    min-height: 590px;
  }
}

@media (max-width: 640px) {
  .hero-panel,
  .inner-hero--video:not(.inner-hero--planos) {
    height: min(600px, calc(100svh - var(--mobile-header) - 18px));
    min-height: min(600px, calc(100svh - var(--mobile-header) - 18px));
  }
}

/* ==========================================================================
   Refinement · balanced video heroes, video filters and centered VIP badge
   ========================================================================== */

/*
 * Os heróis têm a mesma altura visual da home. Em vez de concentrar todo o
 * texto no primeiro terço, os três blocos ocupam topo, centro e base do card.
 */
.inner-hero--video:not(.inner-hero--planos) .inner-hero__content {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: stretch;
  align-content: stretch;
  justify-items: start;
  gap: clamp(18px, 2.4vw, 34px);
}

.inner-hero--video:not(.inner-hero--planos) .eyebrow {
  align-self: start;
  margin: 0;
}

.inner-hero--video:not(.inner-hero--planos) h1 {
  align-self: center;
  margin: 0;
}

.inner-hero--video:not(.inner-hero--planos) p {
  align-self: end;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(4, 3, 3, 0.34);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(7px);
}

/* Painel de filtros específico da página de vídeos. */
.video-filter-card {
  margin-bottom: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(460px, 1.35fr);
  align-items: stretch;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 0 0, rgba(255, 32, 57, 0.1), transparent 24rem),
    linear-gradient(145deg, rgba(14, 8, 9, 0.98), rgba(5, 5, 5, 0.99));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.025),
    0 22px 54px rgba(0, 0, 0, 0.34);
}

.video-filter-card__intro {
  min-width: 0;
  padding: 10px 8px 10px 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-filter-card__intro > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-filter-card__intro h2 {
  max-width: 17ch;
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1.02;
  text-transform: uppercase;
}

.video-filter-card__intro p {
  max-width: 36ch;
  margin: 0;
  color: #989898;
  font-size: 12px;
  line-height: 1.5;
}

.toolbar.toolbar--catalog.toolbar--videos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  margin: 0;
  padding: 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.42);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.02);
}

.toolbar--videos .filter-actions--videos {
  grid-column: 1 / -1;
  justify-content: flex-end;
}

.toolbar--videos .filter-reset {
  min-width: 148px;
}

/* O selo permanece dentro do card para não ser cortado, mas centralizado. */
@media (max-width: 640px) {
  .plan-card.featured {
    padding-top: 60px;
  }

  .plan-card.featured .plan-label {
    top: 14px;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 32px);
    transform: translateX(-50%);
    text-align: center;
  }

  .inner-hero--video:not(.inner-hero--planos) .inner-hero__content {
    gap: 18px;
  }

  .inner-hero--video:not(.inner-hero--planos) p {
    width: min(100%, 34ch);
    padding: 11px 12px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
  }

  .video-filter-card {
    margin-bottom: 14px;
    padding: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 18px;
  }

  .video-filter-card__intro {
    padding: 8px 5px 4px;
  }

  .video-filter-card__intro h2 {
    max-width: 19ch;
    margin-block: 7px 6px;
    font-size: 25px;
  }

  .video-filter-card__intro p {
    font-size: 11px;
  }

  body[data-page="videos"] .video-filter-card .mobile-filter-toggle {
    position: relative;
    top: auto;
    margin: 4px 0 0;
  }

  .js .toolbar.toolbar--catalog.toolbar--videos.mobile-filter-panel.is-open {
    max-height: 620px;
    margin: 0;
    padding: 13px;
  }

  .toolbar.toolbar--catalog.toolbar--videos {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .toolbar--videos .filter-field,
  .toolbar--videos .filter-actions--videos {
    grid-column: 1;
  }

  .toolbar--videos .filter-actions--videos {
    display: block;
  }

  .toolbar--videos .filter-reset {
    width: 100%;
  }
}

@media (min-width: 641px) and (max-width: 940px) {
  .video-filter-card {
    grid-template-columns: 1fr;
  }

  .video-filter-card__intro h2 {
    max-width: none;
  }
}

/* ==========================================================================
   Experience refinement · live panel, editorial captions and model cards
   ========================================================================== */

/* Favoritos foram retirados da experiência pública. */
.favorite-button,
.filter-favorite,
.model-preview-hint,
.model-hold-hint {
  display: none !important;
}

/* A descrição do hero vira uma legenda editorial, sem a caixa cinza pesada. */
.inner-hero--video:not(.inner-hero--planos) p {
  position: relative;
  width: min(100%, 560px);
  max-width: 46ch;
  margin: 0;
  padding: 20px 22px 17px;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(104deg, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.28) 72%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 46%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.91);
  text-wrap: balance;
  backdrop-filter: blur(10px) saturate(1.08);
}

.inner-hero--video:not(.inner-hero--planos) p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255, 32, 57, 0));
  box-shadow: 0 0 10px rgba(255, 32, 57, 0.5);
}

/* Zona Ativa: painel estável em grid. Sem setas, sem overflow e sem área vazia. */
.hero-copy {
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: clamp(42px, 4.8vw, 66px) 38px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy > .hero-brand,
.hero-copy > .hero-title,
.hero-copy > p,
.hero-copy > .hero-actions {
  width: min(100%, 650px);
}

.hero-live-carousel.hero-live-carousel--panel {
  width: 100%;
  max-width: none;
  margin: auto 0 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: linear-gradient(115deg, rgba(255, 32, 57, 0.08), transparent 26%), rgba(3, 3, 3, 0.7);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px) saturate(1.1);
}

.hero-live-carousel--panel .hero-live-carousel__header {
  min-height: 28px;
  padding: 0 5px 9px;
}

.hero-live-carousel--panel .hero-live-carousel__title {
  font-size: 9px;
  letter-spacing: 0.16em;
}

.hero-live-carousel--panel .hero-live-carousel__controls {
  display: none !important;
}

.hero-live-carousel--panel .hero-live-carousel__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-columns: auto;
  gap: 8px;
  margin: 0;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}

.hero-live-carousel--panel .hero-live-card {
  min-width: 0;
  min-height: 72px;
  padding: 10px 12px;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  border-color: rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background:
    radial-gradient(circle at 0 50%, rgba(255, 32, 57, 0.11), transparent 48%),
    rgba(255, 255, 255, 0.018);
  box-shadow: none;
}

.hero-live-carousel--panel .hero-live-card::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 32, 57, 0.75);
  box-shadow: 0 0 8px rgba(255, 32, 57, 0.55);
}

.hero-live-carousel--panel .hero-live-card > img {
  width: 34px;
  height: 34px;
}

.hero-live-carousel--panel .hero-live-card__value {
  font-size: 20px;
}

.hero-live-carousel--panel .hero-live-card__value--word {
  font-size: 12px;
  line-height: 1.15;
}

.hero-live-carousel--panel .hero-live-card__label {
  margin-top: 4px;
  font-size: 7px;
  line-height: 1.25;
}

/* Filtros de vídeo: somente a ferramenta, sem o antigo card de curadoria. */
.video-filter-shell {
  margin: 18px 0 24px;
}

.video-filter-shell > .toolbar.toolbar--catalog.toolbar--videos {
  margin: 0;
  padding: 14px;
  grid-template-columns: repeat(2, minmax(190px, 1fr)) auto;
  align-items: end;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background:
    linear-gradient(105deg, rgba(255, 32, 57, 0.055), transparent 35%), rgba(6, 6, 6, 0.92);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.video-filter-shell .filter-actions--videos {
  grid-column: auto;
  padding: 0;
  align-self: end;
}

.video-filter-shell .filter-reset {
  min-width: 132px;
  min-height: 52px;
}

/* Cards de modelo: imagem clicável, sinal discreto de prévia e CTA editorial. */
.model-card {
  border-color: rgba(255, 32, 57, 0.34);
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 32, 57, 0.07), transparent 42%),
    linear-gradient(155deg, #0b0809, #050505 68%);
}

.model-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 32, 57, 0.42), transparent);
  pointer-events: none;
}

.model-photo::after {
  inset: 44% 0 0;
  background: linear-gradient(180deg, transparent, rgba(2, 2, 2, 0.68));
}

.model-preview-cue {
  position: absolute;
  left: 11px;
  bottom: 11px;
  z-index: 6;
  min-height: 31px;
  padding: 0 10px 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.72);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.9);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition:
    border-color 180ms var(--ease-standard),
    transform 180ms var(--ease-standard),
    background 180ms var(--ease-standard);
}

.model-preview-cue__icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 32, 57, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 32, 57, 0.35);
}

.model-preview-cue__icon img {
  width: 9px;
  height: 9px;
  filter: none;
}

.model-card:hover .model-preview-cue,
.model-card:focus-within .model-preview-cue {
  border-color: rgba(255, 32, 57, 0.58);
  background: rgba(22, 2, 5, 0.83);
  transform: translateY(-2px);
}

.model-body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 15px 14px 14px;
}

.model-kicker {
  color: rgba(255, 32, 57, 0.82);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.model-name {
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: -0.015em;
}

.model-meta {
  color: #b8b8b8;
}

.model-actions {
  margin-top: auto;
  padding-top: 14px;
}

.model-profile-link {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 32, 57, 0.42);
  border-radius: 11px;
  background: linear-gradient(100deg, rgba(255, 32, 57, 0.08), rgba(255, 32, 57, 0.015));
  color: #fff;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    transform 180ms var(--ease-standard);
}

.model-profile-link img {
  width: 9px;
  height: 12px;
  transition: transform 180ms var(--ease-standard);
}

.model-profile-link:hover,
.model-profile-link:focus-visible {
  border-color: rgba(255, 32, 57, 0.82);
  background: rgba(255, 32, 57, 0.12);
  outline: none;
}

.model-profile-link:hover img,
.model-profile-link:focus-visible img {
  transform: translateX(3px);
}

@media (max-width: 940px) {
  .inner-hero--video:not(.inner-hero--planos) p {
    max-width: 38ch;
    padding: 16px 17px 14px;
    border-radius: 14px;
  }

  .hero-copy {
    padding: 28px 22px 18px;
  }

  .hero-live-carousel--panel .hero-live-carousel__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-filter-shell > .toolbar.toolbar--catalog.toolbar--videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-filter-shell .filter-actions--videos {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .inner-hero--video:not(.inner-hero--planos) p {
    width: min(100%, 34ch);
    padding: 14px 15px 13px;
    background:
      linear-gradient(104deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.18) 86%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 46%);
    backdrop-filter: blur(7px);
  }

  .inner-hero--video:not(.inner-hero--planos) p::before {
    left: 15px;
    width: 36px;
  }

  .hero-copy {
    padding: 18px 14px 12px;
  }

  .hero-copy > p {
    margin-block: 12px 16px;
  }

  .hero-live-carousel.hero-live-carousel--panel {
    margin-top: auto;
    padding: 9px;
    border-radius: 15px;
  }

  .hero-live-carousel--panel .hero-live-carousel__header {
    min-height: 25px;
    padding: 0 3px 7px;
  }

  .hero-live-carousel--panel .hero-live-carousel__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-live-carousel--panel .hero-live-card {
    min-height: 63px;
    padding: 8px 9px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    border-radius: 11px;
  }

  .hero-live-carousel--panel .hero-live-card > img {
    width: 28px;
    height: 28px;
  }

  .hero-live-carousel--panel .hero-live-card__value {
    font-size: 17px;
  }

  .hero-live-carousel--panel .hero-live-card__value--word {
    font-size: 10px;
  }

  .hero-live-carousel--panel .hero-live-card__label {
    font-size: 6.5px;
    letter-spacing: 0.045em;
  }

  .video-filter-shell {
    margin: 14px 0 18px;
  }

  .video-filter-shell > .mobile-filter-toggle {
    position: relative;
    top: auto;
    margin: 0;
    border-radius: 14px;
  }

  .js .video-filter-shell > .toolbar.toolbar--catalog.toolbar--videos.mobile-filter-panel.is-open {
    max-height: 620px;
    margin: 8px 0 0;
    padding: 13px;
  }

  .video-filter-shell > .toolbar.toolbar--catalog.toolbar--videos {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 14px;
  }

  .video-filter-shell .filter-field,
  .video-filter-shell .filter-actions--videos {
    grid-column: 1;
  }

  .video-filter-shell .filter-reset {
    width: 100%;
  }

  .catalog-grid {
    gap: 14px;
  }

  .model-card--catalog {
    min-height: 218px;
    grid-template-columns: minmax(132px, 43%) minmax(0, 1fr);
    border-radius: 17px;
  }

  .model-card--catalog .model-photo {
    min-height: 218px;
  }

  .model-card--catalog .model-body {
    padding: 15px 13px 12px;
  }

  .model-card--catalog .model-name {
    margin-bottom: 9px;
    font-size: 17px;
    line-height: 1.05;
  }

  .model-card--catalog .model-meta {
    margin-top: 6px;
    font-size: 9px;
  }

  .model-card--catalog .model-actions {
    padding-top: 10px;
  }

  .model-card--catalog .model-profile-link {
    min-height: 43px;
    padding-inline: 11px;
    font-size: 7.5px;
  }

  .model-preview-cue {
    left: 8px;
    bottom: 8px;
    min-height: 28px;
    padding-inline: 6px 8px;
    gap: 6px;
    font-size: 6.5px;
  }

  .model-preview-cue__icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 360px) {
  .hero-live-carousel--panel .hero-live-card {
    grid-template-columns: 26px minmax(0, 1fr);
    padding-inline: 7px;
  }

  .hero-live-carousel--panel .hero-live-card > img {
    width: 24px;
    height: 24px;
  }

  .model-card--catalog {
    grid-template-columns: 40% minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .model-preview-cue,
  .model-profile-link,
  .model-profile-link img {
    transition: none !important;
  }
}

/* ==========================================================================
   Cinematic interaction pass · previews, video gallery, plans and mobile flow
   ========================================================================== */

/* Central, animated and discreet cue for opening a model's previews. */
.model-preview-cue {
  left: 50% !important;
  right: auto !important;
  bottom: 13px !important;
  min-width: 132px;
  min-height: 36px;
  padding: 0 13px 0 10px;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.035) 56%,
      rgba(255, 255, 255, 0.09)
    ),
    rgba(3, 3, 3, 0.6);
  color: rgba(255, 255, 255, 0.94);
  font-size: 7px;
  letter-spacing: 0.13em;
  transform: translateX(-50%);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.36),
    inset 0 1px rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px) saturate(1.15);
  isolation: isolate;
  overflow: hidden;
  animation: modelPreviewCueFloat 3.8s ease-in-out infinite;
}

.model-preview-cue::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  background: conic-gradient(
    from var(--preview-cue-angle, 0deg),
    transparent 0 58%,
    rgba(255, 255, 255, 0.5) 66%,
    transparent 75% 100%
  );
  opacity: 0.34;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  animation: modelPreviewCueOrbit 5.5s linear infinite;
}

.model-preview-cue::after {
  content: "";
  position: absolute;
  inset: 4px auto 4px 4px;
  width: 34%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
  animation: modelPreviewCueSheen 3.8s ease-in-out infinite;
}

.model-preview-cue__signal {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.model-preview-cue__signal::before,
.model-preview-cue__signal::after,
.model-preview-cue__signal i {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.model-preview-cue__signal::before {
  width: 18px;
  height: 18px;
  opacity: 0.28;
  animation: modelPreviewSignal 2.5s ease-out infinite;
}

.model-preview-cue__signal::after {
  width: 11px;
  height: 11px;
  opacity: 0.58;
}

.model-preview-cue__signal i {
  width: 4px;
  height: 4px;
  border: 0;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.72);
}

.model-preview-cue__signal b {
  display: none;
}

.model-preview-cue__label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.model-preview-cue__arrow {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1;
  animation: modelPreviewArrow 1.7s ease-in-out infinite;
}

.model-card:hover .model-preview-cue,
.model-card:focus-within .model-preview-cue {
  border-color: rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(4, 4, 4, 0.74);
  transform: translateX(-50%) translateY(-3px) scale(1.025);
}

@keyframes modelPreviewCueFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-3px);
  }
}

@keyframes modelPreviewCueOrbit {
  to {
    --preview-cue-angle: 360deg;
  }
}

@keyframes modelPreviewCueSheen {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.28;
  }
  50% {
    transform: translateX(155%);
    opacity: 0.62;
  }
}

@keyframes modelPreviewSignal {
  0% {
    transform: scale(0.62);
    opacity: 0.5;
  }
  76%,
  100% {
    transform: scale(1.38);
    opacity: 0;
  }
}

@keyframes modelPreviewArrow {
  0%,
  100% {
    transform: translateY(-1px);
    opacity: 0.54;
  }
  50% {
    transform: translateY(2px);
    opacity: 1;
  }
}

/* Home: one high-value CTA, with a cinematic light sweep. */
.hero-actions--solo {
  display: block !important;
  width: min(100%, 420px) !important;
  max-width: 420px !important;
}

.hero-catalog-cta {
  position: relative;
  width: 100%;
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  border-color: rgba(255, 91, 108, 0.92);
  border-radius: 15px;
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 65, 89, 0.34), transparent 44%),
    linear-gradient(105deg, #a30b23, #69000e 62%, #310006);
  box-shadow:
    0 16px 34px rgba(128, 0, 18, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 28px rgba(255, 32, 57, 0.15);
  text-align: left;
  isolation: isolate;
}

.hero-catalog-cta::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -24%;
  width: 20%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(18deg);
  animation: heroCtaSweep 4.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hero-catalog-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 84% 50%, rgba(255, 255, 255, 0.1), transparent 22%);
  opacity: 0.8;
}

.hero-catalog-cta__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
}

.hero-catalog-cta__copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-catalog-cta__copy strong {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-catalog-cta__arrow {
  position: relative;
  z-index: 1;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(3, 3, 3, 0.24);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.hero-catalog-cta__arrow i,
.hero-catalog-cta__arrow i::after {
  display: block;
  content: "";
}

.hero-catalog-cta__arrow i {
  position: relative;
  width: 17px;
  height: 1px;
  background: #fff;
  transition: transform 240ms var(--ease-standard);
}

.hero-catalog-cta__arrow i::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.hero-catalog-cta:hover .hero-catalog-cta__arrow i,
.hero-catalog-cta:focus-visible .hero-catalog-cta__arrow i {
  transform: translateX(4px);
}

@keyframes heroCtaSweep {
  0%,
  58% {
    transform: translateX(-130%) rotate(18deg);
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  82%,
  100% {
    transform: translateX(750%) rotate(18deg);
    opacity: 0;
  }
}

/* Videos: no filter panel and no floating play buttons. The entire card opens previews. */
body[data-page="videos"] .video-filter-shell,
.video-play {
  display: none !important;
}

body[data-page="videos"] .page-content {
  padding-top: clamp(24px, 4vw, 54px);
}

.video-card {
  cursor: pointer;
}

.video-card::before {
  left: 14%;
  width: 32%;
  opacity: 0.25;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.16);
}

.video-card::after {
  background:
    linear-gradient(180deg, transparent 38%, rgba(2, 2, 2, 0.5) 67%, rgba(2, 2, 2, 0.98)),
    linear-gradient(120deg, transparent 58%, rgba(255, 255, 255, 0.035));
}

.video-card .motion-tag {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(3, 3, 3, 0.64);
  color: rgba(255, 255, 255, 0.86);
}

.video-card:hover .motion-tag,
.video-card:focus-visible .motion-tag {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.video-card:hover::before,
.video-card:focus-visible::before {
  left: 4%;
  width: 92%;
  opacity: 0.58;
}

/* Preview feed: cinematic reveal, one-time scroll guide and no pause icon. */
.preview-feed-modal .preview-feed-shell {
  transform: translateY(28px) scale(0.975);
  clip-path: inset(8% 7% 8% round 28px);
  filter: blur(8px);
  opacity: 0;
  transition:
    clip-path 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms ease,
    opacity 320ms ease;
}

.preview-feed-modal.open .preview-feed-shell {
  transform: none;
  clip-path: inset(0 round 0);
  filter: none;
  opacity: 1;
}

.preview-feed-modal.open .preview-feed-header {
  animation: previewFeedHeaderReveal 700ms 220ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.preview-feed-item.is-paused .preview-feed-video-toggle::before {
  display: none !important;
}

.preview-feed-guide {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 43%;
  width: min(calc(100% - 48px), 300px);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(2, 2, 2, 0.62);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.44),
    inset 0 1px rgba(255, 255, 255, 0.13);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px) saturate(1.14);
  pointer-events: none;
  animation: previewGuideReveal 4.4s 420ms both cubic-bezier(0.16, 1, 0.3, 1);
  transition:
    opacity 280ms ease,
    transform 380ms var(--ease-standard);
}

.preview-feed-guide.is-dismissed {
  animation: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-50% - 30px)) scale(0.94);
}

.preview-feed-guide__gesture {
  position: relative;
  width: 34px;
  height: 48px;
  flex: 0 0 auto;
}

.preview-feed-guide__gesture::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 20px;
  height: 29px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px 12px 9px 9px;
  transform: translateX(-50%);
}

.preview-feed-guide__gesture i {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.65);
  animation: previewGuideFinger 1.65s ease-in-out infinite;
}

.preview-feed-guide__gesture b {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.82));
  transform: translateX(-50%);
  animation: previewGuideTrail 1.65s ease-in-out infinite;
}

.preview-feed-guide__copy {
  display: grid;
  gap: 2px;
}

.preview-feed-guide__copy strong {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-feed-guide__copy small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
}

.preview-feed-end-cue {
  position: absolute;
  z-index: 5;
  right: 16px;
  top: 50%;
  width: 118px;
  padding: 11px 12px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(3, 3, 3, 0.56);
  color: rgba(255, 255, 255, 0.68);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  pointer-events: none;
  animation: previewEndCueFloat 2.4s ease-in-out infinite;
}

.preview-feed-end-cue strong {
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.preview-feed-end-cue small {
  font-size: 7px;
  line-height: 1.4;
}

@keyframes previewEndCueFloat {
  0%,
  100% {
    transform: translateY(-50%);
    opacity: 0.72;
  }
  50% {
    transform: translateY(calc(-50% - 7px));
    opacity: 1;
  }
}

.preview-feed-finale {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 50%;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.72);
  color: #fff;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, -40%);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.preview-feed-item.is-complete .preview-feed-finale {
  animation: previewFinaleReveal 800ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.preview-feed-modal.is-completing .preview-feed-track {
  animation: previewFeedExit 850ms both cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes previewFeedHeaderReveal {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes previewGuideReveal {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translate(-50%, calc(-50% + 25px)) scale(0.9);
  }
  14%,
  72% {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, calc(-50% - 18px)) scale(0.96);
  }
}

@keyframes previewGuideFinger {
  0%,
  20%,
  100% {
    transform: translate(-50%, 8px);
    opacity: 0.42;
  }
  58%,
  72% {
    transform: translate(-50%, -17px);
    opacity: 1;
  }
}

@keyframes previewGuideTrail {
  0%,
  22%,
  100% {
    transform: translate(-50%, 15px) scaleY(0.35);
    opacity: 0;
  }
  55% {
    transform: translate(-50%, 0) scaleY(1);
    opacity: 0.88;
  }
  76% {
    opacity: 0;
  }
}

@keyframes previewFinaleReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -30%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes previewFeedExit {
  to {
    opacity: 0;
    transform: scale(1.035);
    filter: blur(8px);
  }
}

/* VIP library: six locked items per page with animated, touch-friendly pagination. */
.profile-vault {
  scroll-margin-top: 88px;
}

.profile-vault-status {
  margin: -12px 0 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.locked-video-grid {
  transition:
    opacity 160ms ease,
    transform 260ms var(--ease-standard),
    filter 180ms ease;
}

.locked-video-grid.is-changing {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  filter: blur(3px);
}

.profile-pagination {
  width: 100%;
  max-width: 100%;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.profile-pagination > button,
.profile-pagination__pages button {
  min-width: 42px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease-standard);
}

.profile-pagination > button:hover:not(:disabled),
.profile-pagination > button:focus-visible:not(:disabled),
.profile-pagination__pages button:hover,
.profile-pagination__pages button:focus-visible,
.profile-pagination__pages button[aria-current="page"] {
  border-color: rgba(255, 32, 57, 0.72);
  background: rgba(255, 32, 57, 0.14);
  color: #fff;
  outline: none;
  transform: translateY(-2px);
}

.profile-pagination > button:disabled {
  opacity: 0.28;
  cursor: default;
}

.profile-pagination__pages {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.profile-pagination__pages::-webkit-scrollbar {
  display: none;
}

.profile-pagination__pages button {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.profile-pagination__ellipsis {
  width: 16px;
  flex: 0 0 16px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1;
}

/* Plans: Single first, VIP second, consistent card geometry and badge. */
.plan-card {
  min-height: 520px;
}

.plan-card.featured,
.plan-card.featured:hover,
.plan-card.featured:focus-within {
  min-height: 520px;
  transform: none;
}

.plan-card.featured {
  border-color: rgba(255, 32, 57, 0.66);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 32, 57, 0.18), transparent 36%),
    radial-gradient(circle at 100% 0, rgba(94, 0, 13, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(5, 5, 5, 0.98));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.04),
    0 0 32px rgba(255, 32, 57, 0.08);
}

.plan-card.featured .plan-label {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/* Mobile-first cinematic entry: compact, layered and interruptible. */
@media (max-width: 640px) {
  .model-preview-cue {
    bottom: 9px !important;
    min-width: 122px;
    min-height: 33px;
    padding-inline: 9px 11px;
    font-size: 6.5px;
  }

  .model-preview-cue__signal {
    width: 18px;
    height: 18px;
  }

  .hero-actions--solo,
  .hero-catalog-cta {
    max-width: none !important;
  }

  .hero-catalog-cta {
    min-height: 62px;
    border-radius: 13px;
  }

  .hero-catalog-cta__arrow {
    width: 39px;
    height: 39px;
  }

  .preview-feed-guide {
    top: 38%;
    width: min(calc(100% - 36px), 286px);
    padding: 12px 15px;
  }

  .profile-pagination {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 6px;
  }

  .profile-pagination > button,
  .profile-pagination__pages button {
    min-width: 38px;
    height: 42px;
    padding-inline: 8px;
    border-radius: 11px;
  }

  .profile-pagination__pages {
    gap: 5px;
  }

  .profile-pagination__ellipsis {
    width: 12px;
    flex-basis: 12px;
  }

  .preview-feed-end-cue {
    right: 12px;
    top: 42%;
    width: 104px;
    padding: 9px 10px;
  }

  .plans-grid .plan-card:nth-child(1) {
    order: 1;
  }
  .plans-grid .plan-card:nth-child(2) {
    order: 2;
  }
  .plans-grid .plan-card:nth-child(3) {
    order: 3;
  }

  .plans-grid .plan-card,
  .plans-grid .plan-card.featured {
    min-height: 510px;
    padding: 54px 22px 24px;
  }

  .plan-card.featured .plan-label {
    top: 13px;
    left: 50%;
    max-width: calc(100% - 30px);
    transform: translateX(-50%);
  }

  .js body.page-enter .hero-brand,
  .js body.page-enter .hero-title,
  .js body.page-enter .hero-copy > p,
  .js body.page-enter .hero-actions,
  .js body.page-enter .hero-live-carousel,
  .js body.page-enter .inner-hero__content > .eyebrow,
  .js body.page-enter .inner-hero__content > h1,
  .js body.page-enter .inner-hero__content > p {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(6px);
    animation: mobileCinematicRise 760ms both cubic-bezier(0.16, 1, 0.3, 1);
  }

  .js body.page-enter .hero-title,
  .js body.page-enter .inner-hero__content > h1 {
    animation-delay: 90ms;
  }
  .js body.page-enter .hero-copy > p,
  .js body.page-enter .inner-hero__content > p {
    animation-delay: 170ms;
  }
  .js body.page-enter .hero-actions {
    animation-delay: 250ms;
  }
  .js body.page-enter .hero-live-carousel {
    animation-delay: 330ms;
  }
}

@keyframes mobileCinematicRise {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(7px);
  }
  58% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@property --preview-cue-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@media (prefers-reduced-motion: reduce) {
  .model-preview-cue,
  .model-preview-cue::before,
  .model-preview-cue::after,
  .model-preview-cue__signal::before,
  .model-preview-cue__arrow,
  .hero-catalog-cta::before,
  .preview-feed-guide,
  .preview-feed-guide__gesture i,
  .preview-feed-guide__gesture b,
  .preview-feed-modal .preview-feed-shell,
  .preview-feed-modal.open .preview-feed-header,
  .preview-feed-item.is-complete .preview-feed-finale,
  .preview-feed-modal.is-completing .preview-feed-track,
  .js body.page-enter .hero-brand,
  .js body.page-enter .hero-title,
  .js body.page-enter .hero-copy > p,
  .js body.page-enter .hero-actions,
  .js body.page-enter .hero-live-carousel,
  .js body.page-enter .inner-hero__content > .eyebrow,
  .js body.page-enter .inner-hero__content > h1,
  .js body.page-enter .inner-hero__content > p {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (min-width: 720px) {
  .profile-vault .locked-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ==========================================================================
   Catalog continuity, clearer model facts and compact VIP page rail
   ========================================================================== */

/* O rodapé editorial pertence apenas à página inicial. */
body:not([data-page="inicio"]) > .site-footer {
  display: none !important;
}

/* Cidade e idade ganham leitura sem competir com a quantidade de vídeos. */
.model-meta--location {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 580;
  line-height: 1.35;
}

.model-meta--stats {
  flex-wrap: wrap;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(10px, 0.76vw, 11.5px);
  line-height: 1.25;
}

.model-age {
  font-weight: 620;
}

.model-video-count {
  margin-left: auto;
  padding: 4px 7px;
  border: 1px solid rgba(255, 32, 57, 0.26);
  border-radius: 999px;
  background: rgba(255, 32, 57, 0.075);
  color: #fff;
  font-size: clamp(10.5px, 0.82vw, 12.5px);
  font-weight: 800;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

/* A numeração avança de um em um dentro de um trilho que se reposiciona. */
.profile-pagination__pages {
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 3px 5px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 14px,
    #000 calc(100% - 14px),
    transparent 100%
  );
}

.profile-pagination__pages button {
  scroll-snap-align: center;
}

.profile-pagination__ellipsis {
  display: none;
}

@media (max-width: 640px) {
  .model-card--catalog .model-meta--location,
  .model-card--featured .model-meta--location {
    font-size: 11.5px;
  }

  .model-card--catalog .model-meta--stats,
  .model-card--featured .model-meta--stats {
    margin-top: 8px;
    font-size: 11px;
  }

  .model-card--catalog .model-video-count,
  .model-card--featured .model-video-count {
    padding: 4px 6px;
    font-size: 11.5px;
  }

  .profile-pagination {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 5px;
  }

  .profile-pagination__pages {
    gap: 5px;
    padding-inline: 4px;
  }

  .profile-pagination__pages button {
    min-width: 38px;
    padding-inline: 8px;
  }
}

/* ==========================================================================
   Footer original — refinamento premium com movimento e profundidade
   Mantém integralmente a estrutura HTML original do rodapé.
   ========================================================================== */

.site-footer {
  --footer-red: 255, 32, 57;
  --footer-surface: rgba(7, 7, 8, 0.92);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(16px, 2.6vw, 34px);
  border-top: 1px solid rgba(var(--footer-red), 0.28);
  background:
    radial-gradient(circle at 17% 22%, rgba(128, 0, 18, 0.2), transparent 24rem),
    radial-gradient(circle at 84% 72%, rgba(255, 32, 57, 0.1), transparent 29rem),
    linear-gradient(180deg, rgba(9, 9, 10, 0.98), rgba(2, 2, 3, 0.99));
  box-shadow:
    0 -24px 76px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  left: -28%;
  width: 56%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.72),
    rgba(var(--footer-red), 1),
    transparent
  );
  filter: drop-shadow(0 0 10px rgba(var(--footer-red), 0.85));
  animation: footerOriginalBeam 7s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.site-footer::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -13rem;
  bottom: -18rem;
  width: 36rem;
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(var(--footer-red), 0.14), transparent 61%),
    conic-gradient(
      from 180deg,
      transparent 0 22%,
      rgba(var(--footer-red), 0.1) 34%,
      transparent 47% 70%,
      rgba(255, 255, 255, 0.035) 82%,
      transparent 94%
    );
  filter: blur(8px);
  animation: footerOriginalAura 14s ease-in-out infinite alternate;
}

.site-footer .footer-top {
  position: relative;
  z-index: 1;
  min-height: 132px;
  grid-template-columns: minmax(172px, 0.75fr) minmax(360px, 2.25fr) minmax(138px, 0.75fr);
  gap: clamp(18px, 2.4vw, 34px);
  padding: clamp(19px, 2.2vw, 28px) clamp(18px, 2.7vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-bottom-color: rgba(var(--footer-red), 0.2);
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(110deg, rgba(var(--footer-red), 0.055), transparent 31%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.006)),
    var(--footer-surface);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 -1px 0 rgba(var(--footer-red), 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-footer .footer-top::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent 74%);
}

.site-footer .footer-top::after {
  content: "";
  position: absolute;
  top: -110%;
  left: -24%;
  width: 22%;
  height: 320%;
  pointer-events: none;
  opacity: 0.44;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.055),
    rgba(var(--footer-red), 0.08),
    transparent
  );
  transform: rotate(18deg);
  animation: footerOriginalShine 11s ease-in-out infinite;
}

.site-footer .footer-logo {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 8px 18px 8px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer .footer-logo::before,
.site-footer .footer-logo::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-footer .footer-logo::before {
  left: -32px;
  top: 50%;
  width: 180px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--footer-red), 0.16), transparent 68%);
  transform: translateY(-50%);
  filter: blur(6px);
  animation: footerOriginalLogoGlow 4.8s ease-in-out infinite;
}

.site-footer .footer-logo::after {
  right: -2px;
  top: 50%;
  width: 3px;
  height: 28px;
  border-radius: 99px;
  background: linear-gradient(180deg, transparent, var(--red), transparent);
  box-shadow: 0 0 15px rgba(var(--footer-red), 0.65);
  transform: translateY(-50%);
  animation: footerOriginalPulse 2.8s ease-in-out infinite;
}

.site-footer .footer-logo img {
  position: relative;
  z-index: 1;
  width: min(178px, 100%);
  height: 82px;
  filter: drop-shadow(0 0 8px rgba(var(--footer-red), 0.2))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.48));
  transform-origin: left center;
  transition:
    transform 0.7s var(--ease-emphasis),
    filter 0.7s var(--ease-emphasis);
  animation: footerOriginalLogoFloat 6s ease-in-out infinite;
}

.site-footer .footer-logo:hover img {
  filter: drop-shadow(0 0 13px rgba(var(--footer-red), 0.48))
    drop-shadow(0 16px 28px rgba(0, 0, 0, 0.58));
  transform: translate3d(4px, -2px, 0) scale(1.035);
}

.site-footer .footer-nav {
  position: relative;
  align-items: center;
  gap: clamp(6px, 1vw, 13px);
  padding-inline: clamp(2px, 1vw, 12px);
  font-size: 9px;
}

.site-footer .footer-nav a {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.085em;
  transition:
    color var(--duration-base) var(--ease-emphasis),
    border-color var(--duration-base) var(--ease-emphasis),
    background var(--duration-base) var(--ease-emphasis),
    box-shadow var(--duration-base) var(--ease-emphasis),
    transform var(--duration-base) var(--ease-emphasis);
}

.site-footer .footer-nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 11px rgba(var(--footer-red), 0.75);
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.3);
  transition:
    opacity var(--duration-base) var(--ease-emphasis),
    transform var(--duration-base) var(--ease-emphasis);
}

.site-footer .footer-nav a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.09), transparent 74%);
  opacity: 0;
  transform: translateX(-45%);
  transition:
    opacity 0.35s var(--ease-emphasis),
    transform 0.65s var(--ease-emphasis);
}

.site-footer .footer-nav a:hover,
.site-footer .footer-nav a:focus-visible {
  color: #fff;
  border-color: rgba(var(--footer-red), 0.27);
  background: rgba(var(--footer-red), 0.075);
  box-shadow:
    inset 0 0 18px rgba(var(--footer-red), 0.055),
    0 9px 22px rgba(0, 0, 0, 0.26);
  transform: translateY(-3px);
}

.site-footer .footer-nav a:hover::before,
.site-footer .footer-nav a:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.site-footer .footer-nav a:hover::after,
.site-footer .footer-nav a:focus-visible::after {
  opacity: 1;
  transform: translateX(45%);
}

.site-footer .socials {
  position: relative;
  gap: 10px;
  padding-left: clamp(10px, 1.6vw, 22px);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer .socials a {
  position: relative;
  width: 42px;
  height: 42px;
  overflow: visible;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 22px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.45s var(--ease-emphasis),
    border-color 0.45s var(--ease-emphasis),
    background 0.45s var(--ease-emphasis),
    box-shadow 0.45s var(--ease-emphasis);
}

.site-footer .socials a::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(var(--footer-red), 0.24);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 0.45s var(--ease-emphasis),
    transform 0.45s var(--ease-emphasis);
}

.site-footer .socials a::after {
  content: "";
  position: absolute;
  inset: 50%;
  z-index: -2;
  border-radius: 50%;
  background: rgba(var(--footer-red), 0.28);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.45s var(--ease-emphasis);
}

.site-footer .socials a:hover,
.site-footer .socials a:focus-visible {
  border-color: rgba(var(--footer-red), 0.72);
  background: rgba(var(--footer-red), 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(var(--footer-red), 0.12),
    0 0 25px rgba(var(--footer-red), 0.16),
    0 16px 30px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px) rotate(-4deg) scale(1.06);
}

.site-footer .socials a:hover::before,
.site-footer .socials a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.site-footer .socials a:hover::after,
.site-footer .socials a:focus-visible::after {
  opacity: 1;
}

.site-footer .socials img {
  width: 24px;
  height: 24px;
  transition:
    transform 0.45s var(--ease-emphasis),
    filter 0.45s var(--ease-emphasis);
}

.site-footer .socials a:hover img,
.site-footer .socials a:focus-visible img {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.38));
  transform: scale(1.08) rotate(4deg);
}

.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 58px;
  padding-inline: clamp(8px, 1.3vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  background: rgba(2, 2, 3, 0.82);
  color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.site-footer .footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--red), rgba(var(--footer-red), 0.16), transparent);
  box-shadow: 0 0 10px rgba(var(--footer-red), 0.38);
  animation: footerOriginalBottomLine 8s ease-in-out infinite alternate;
}

.site-footer .footer-bottom > span {
  position: relative;
  transition: color var(--duration-base) var(--ease-standard);
}

.site-footer .footer-bottom > span:first-child::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 9px rgba(var(--footer-red), 0.72);
  vertical-align: 1px;
  animation: footerOriginalDotPulse 2.8s ease-in-out infinite;
}

.site-footer .footer-bottom:hover > span {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer .footer-bottom a {
  position: relative;
  color: rgba(255, 255, 255, 0.58);
  transition:
    color var(--duration-base) var(--ease-standard),
    text-shadow var(--duration-base) var(--ease-standard);
}

.site-footer .footer-bottom a:hover,
.site-footer .footer-bottom a:focus-visible {
  color: #fff;
  text-shadow: 0 0 12px rgba(var(--footer-red), 0.46);
}

@keyframes footerOriginalBeam {
  0%,
  12% {
    transform: translateX(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  66% {
    opacity: 0.75;
  }
  82%,
  100% {
    transform: translateX(230%);
    opacity: 0;
  }
}

@keyframes footerOriginalAura {
  from {
    transform: translate3d(-2%, 2%, 0) rotate(-8deg) scale(0.94);
    opacity: 0.52;
  }
  to {
    transform: translate3d(5%, -4%, 0) rotate(16deg) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes footerOriginalShine {
  0%,
  22% {
    left: -28%;
    opacity: 0;
  }
  32% {
    opacity: 0.46;
  }
  58% {
    opacity: 0.22;
  }
  72%,
  100% {
    left: 116%;
    opacity: 0;
  }
}

@keyframes footerOriginalLogoGlow {
  0%,
  100% {
    opacity: 0.52;
    transform: translateY(-50%) scale(0.92);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-50%) scale(1.08);
  }
}

@keyframes footerOriginalLogoFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -3px;
  }
}

@keyframes footerOriginalPulse {
  0%,
  100% {
    opacity: 0.46;
    transform: translateY(-50%) scaleY(0.72);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scaleY(1.18);
  }
}

@keyframes footerOriginalDotPulse {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.78);
    box-shadow: 0 0 5px rgba(var(--footer-red), 0.45);
  }
  50% {
    opacity: 1;
    transform: scale(1.16);
    box-shadow: 0 0 13px rgba(var(--footer-red), 0.86);
  }
}

@keyframes footerOriginalBottomLine {
  from {
    width: 18%;
    opacity: 0.55;
  }
  to {
    width: 76%;
    opacity: 1;
  }
}

@supports (animation-timeline: view()) {
  .site-footer .footer-top,
  .site-footer .footer-bottom {
    animation: footerOriginalReveal linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 31%;
  }

  .site-footer .footer-bottom {
    animation-range: entry 0% cover 18%;
  }
}

@keyframes footerOriginalReveal {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 940px) {
  .site-footer {
    padding-top: 18px;
  }

  .site-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
    border-radius: 20px 20px 0 0;
  }

  .site-footer .footer-logo {
    width: 100%;
    min-height: 72px;
    padding: 0 0 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .site-footer .footer-logo::after {
    top: auto;
    right: auto;
    bottom: -2px;
    left: 0;
    width: 38px;
    height: 3px;
    transform: none;
    background: linear-gradient(90deg, var(--red), transparent);
  }

  .site-footer .footer-nav {
    display: flex;
    justify-content: flex-start;
    gap: 7px;
    padding: 0;
  }

  .site-footer .footer-nav a {
    min-height: 44px;
    padding-inline: 13px;
  }

  .site-footer .socials {
    justify-content: flex-start;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 0;
  }

  .site-footer .footer-bottom {
    padding: 15px 18px 20px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 12px;
  }

  .site-footer::after {
    right: -19rem;
    bottom: -20rem;
  }

  .site-footer .footer-top {
    gap: 14px;
    padding: 18px 16px;
    border-radius: 16px 16px 0 0;
  }

  .site-footer .footer-logo {
    min-height: 65px;
  }

  .site-footer .footer-logo img {
    width: 150px;
    height: 66px;
  }

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

  .site-footer .footer-nav a {
    min-height: 46px;
    justify-content: flex-start;
    padding: 11px 12px;
    border-color: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.018);
  }

  .site-footer .footer-nav a::before {
    left: 12px;
    bottom: 7px;
    transform: translate(0, 7px) scale(0.3);
  }

  .site-footer .footer-nav a:hover::before,
  .site-footer .footer-nav a:focus-visible::before {
    transform: translate(0, 0) scale(1);
  }

  .site-footer .socials a {
    width: 48px;
    height: 48px;
  }

  .site-footer .footer-bottom {
    gap: 8px;
    padding: 15px 16px 22px;
    border-radius: 0 0 14px 14px;
  }
}

@media (max-width: 380px) {
  .site-footer .footer-top {
    padding-inline: 13px;
  }

  .site-footer .footer-nav {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-nav a {
    width: 100%;
  }
}

@media (hover: none) and (pointer: coarse) {
  .site-footer .footer-logo:hover img,
  .site-footer .footer-nav a:hover,
  .site-footer .socials a:hover,
  .site-footer .socials a:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer::before,
  .site-footer::after,
  .site-footer .footer-top::after,
  .site-footer .footer-logo::before,
  .site-footer .footer-logo::after,
  .site-footer .footer-logo img,
  .site-footer .footer-bottom::before,
  .site-footer .footer-bottom > span:first-child::before,
  .site-footer .footer-top,
  .site-footer .footer-bottom {
    animation: none !important;
  }

  .site-footer .footer-logo img,
  .site-footer .footer-nav a,
  .site-footer .footer-nav a::before,
  .site-footer .footer-nav a::after,
  .site-footer .socials a,
  .site-footer .socials a::before,
  .site-footer .socials a::after,
  .site-footer .socials img {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Rodapé original — experiência mobile-first
   Mantém a marcação existente e otimiza leitura, toque, ritmo e desempenho.
   ========================================================================== */
@media (max-width: 760px) {
  .site-footer {
    --footer-mobile-gutter: max(var(--mobile-gutter, 12px), env(safe-area-inset-left));
    padding: 18px 0 max(14px, env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(4, 4, 5, 0.98), rgba(1, 1, 2, 0.995)), #020202;
    contain-intrinsic-size: auto 620px;
  }

  .site-footer::before {
    width: min(52vw, 230px);
    animation-duration: 9s;
  }

  .site-footer::after {
    right: -15rem;
    bottom: -14rem;
    width: 30rem;
    height: 30rem;
    opacity: 0.62;
    animation-duration: 18s;
  }

  .site-footer .footer-top,
  .site-footer .footer-bottom {
    width: min(calc(100% - (var(--footer-mobile-gutter) * 2)), var(--content));
  }

  .site-footer .footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 20px 14px 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-bottom-color: rgba(255, 32, 57, 0.14);
    border-radius: 20px 20px 0 0;
    background:
      linear-gradient(145deg, rgba(255, 32, 57, 0.055), transparent 35%), rgba(7, 7, 8, 0.96);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.055),
      0 18px 42px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
  }

  .site-footer .footer-top::before {
    opacity: 0.42;
    background-size: 28px 28px;
  }

  .site-footer .footer-top::after {
    width: 34%;
    animation-duration: 14s;
  }

  .site-footer .footer-logo {
    width: 100%;
    min-height: 84px;
    display: grid;
    place-items: center;
    padding: 0 0 17px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    isolation: isolate;
  }

  .site-footer .footer-logo::before {
    top: 38%;
    left: 50%;
    width: min(70vw, 270px);
    height: 92px;
    transform: translate(-50%, -50%);
    opacity: 0.66;
    animation-duration: 6.5s;
  }

  .site-footer .footer-logo::after {
    top: auto;
    right: auto;
    bottom: -2px;
    left: 50%;
    width: min(28vw, 92px);
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    box-shadow: 0 0 16px rgba(255, 32, 57, 0.6);
  }

  .site-footer .footer-logo img {
    width: clamp(148px, 47vw, 188px);
    height: auto;
    max-height: 76px;
    object-position: center;
    animation-duration: 7.5s;
  }

  .site-footer .footer-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 17px 0;
    font-size: 10px;
  }

  .site-footer .footer-nav a {
    min-width: 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 11px 12px 11px 28px;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.022);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.2;
    letter-spacing: 0.075em;
    text-align: left;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .site-footer .footer-nav a:nth-child(7) {
    grid-column: 1 / -1;
    justify-content: center;
    padding-inline: 28px;
  }

  .site-footer .footer-nav a::before {
    top: 50%;
    bottom: auto;
    left: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0.48;
    transform: translateY(-50%) scale(0.68);
  }

  .site-footer .footer-nav a::after {
    inset: auto 11px 7px;
    height: 1px;
    transform-origin: left center;
  }

  .site-footer .footer-nav a:nth-child(7)::before {
    left: calc(50% - 45px);
  }

  .site-footer .footer-nav a:active {
    border-color: rgba(255, 32, 57, 0.42);
    background: rgba(255, 32, 57, 0.11);
    color: #fff;
    box-shadow: inset 0 0 18px rgba(255, 32, 57, 0.075);
    transform: scale(0.975);
    transition-duration: 80ms;
  }

  .site-footer .footer-nav a:active::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  .site-footer .socials {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 54px);
    justify-content: center;
    gap: 13px;
    padding: 17px 0 3px;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
    border-left: 0;
  }

  .site-footer .socials a {
    width: 54px;
    height: 54px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.025);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 9px 22px rgba(0, 0, 0, 0.22);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .site-footer .socials a:active {
    border-color: rgba(255, 32, 57, 0.78);
    background: rgba(255, 32, 57, 0.14);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 0 22px rgba(255, 32, 57, 0.18);
    transform: scale(0.92);
    transition-duration: 80ms;
  }

  .site-footer .socials a:active::before,
  .site-footer .socials a:active::after {
    opacity: 1;
  }

  .site-footer .socials a:active::before {
    transform: scale(1);
  }

  .site-footer .socials img {
    width: 25px;
    height: 25px;
  }

  .site-footer .footer-bottom {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 7px;
    padding: 16px 14px max(18px, env(safe-area-inset-bottom));
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    background: rgba(2, 2, 3, 0.96);
    color: rgba(255, 255, 255, 0.46);
    font-size: 9px;
    line-height: 1.65;
    letter-spacing: 0.045em;
    text-align: center;
    text-wrap: balance;
    backdrop-filter: blur(8px);
  }

  .site-footer .footer-bottom::before {
    left: 50%;
    width: 48%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    animation-duration: 10s;
  }

  .site-footer .footer-bottom > span {
    width: 100%;
  }

  .site-footer .footer-bottom > span:first-child {
    color: rgba(255, 255, 255, 0.54);
  }

  .site-footer .footer-bottom > span:first-child::before {
    margin-right: 7px;
  }

  .site-footer .footer-bottom > span:last-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
  }

  .site-footer .footer-bottom a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding-inline: 5px;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: underline;
    text-decoration-color: rgba(255, 32, 57, 0.34);
    text-underline-offset: 4px;
  }

  .site-footer .footer-bottom a:active {
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 32, 57, 0.48);
  }

  @supports (animation-timeline: view()) {
    .site-footer .footer-top,
    .site-footer .footer-bottom {
      animation-range: entry 0% cover 20%;
    }
  }
}

@media (max-width: 420px) {
  .site-footer {
    padding-top: 12px;
  }

  .site-footer .footer-top {
    padding: 17px 11px 13px;
    border-radius: 17px 17px 0 0;
  }

  .site-footer .footer-logo {
    min-height: 76px;
    padding-bottom: 14px;
  }

  .site-footer .footer-nav {
    gap: 7px;
    padding-block: 14px;
  }

  .site-footer .footer-nav a {
    min-height: 50px;
    padding: 10px 9px 10px 25px;
    border-radius: 11px;
    font-size: 9px;
    letter-spacing: 0.065em;
  }

  .site-footer .footer-nav a::before {
    left: 11px;
    width: 5px;
    height: 5px;
  }

  .site-footer .footer-nav a:nth-child(7) {
    padding-inline: 24px;
  }

  .site-footer .footer-nav a:nth-child(7)::before {
    left: calc(50% - 42px);
  }

  .site-footer .socials {
    grid-template-columns: repeat(3, 52px);
    gap: 11px;
    padding-top: 15px;
  }

  .site-footer .socials a {
    width: 52px;
    height: 52px;
  }

  .site-footer .footer-bottom {
    padding-inline: 11px;
    border-radius: 0 0 15px 15px;
    font-size: 8.5px;
  }
}

@media (max-width: 340px) {
  .site-footer .footer-nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer .footer-nav a,
  .site-footer .footer-nav a:nth-child(7) {
    grid-column: auto;
    justify-content: flex-start;
    padding-left: 29px;
  }

  .site-footer .footer-nav a:nth-child(7)::before {
    left: 12px;
  }

  .site-footer .footer-bottom > span:last-child {
    display: block;
  }
}

@media (max-width: 760px) and (hover: none) and (pointer: coarse) {
  .site-footer .footer-logo:hover img,
  .site-footer .footer-nav a:hover,
  .site-footer .socials a:hover,
  .site-footer .socials a:hover img {
    border-color: rgba(255, 255, 255, 0.065);
    background: rgba(255, 255, 255, 0.022);
    color: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    filter: none;
    transform: none;
  }

  .site-footer .socials a:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.025);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 9px 22px rgba(0, 0, 0, 0.22);
  }

  .site-footer .footer-nav a:hover::before,
  .site-footer .footer-nav a:hover::after,
  .site-footer .socials a:hover::before,
  .site-footer .socials a:hover::after {
    opacity: 0.48;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .site-footer .footer-nav a:active,
  .site-footer .socials a:active {
    transform: none;
  }
}

/* ==========================================================================
   Footer final — ajuste mobile, legibilidade e consistência
   Escopo restrito ao rodapé.
   ========================================================================== */
.site-footer .footer-nav {
  justify-items: center;
}

.site-footer .footer-nav a {
  justify-content: center;
  text-align: center;
}

.site-footer .footer-nav a::before,
.site-footer .footer-bottom > span:first-child::before {
  content: none !important;
}

.site-footer .socials a {
  display: grid;
  place-items: center;
}

.site-footer .socials img {
  display: block;
  object-fit: contain;
}

.site-footer .socials a:last-child img {
  width: 26px;
  height: 26px;
}

.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 18px;
  padding-block: 14px;
}

.site-footer .footer-bottom__copyright {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.045em;
}

.site-footer .footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-footer .footer-meta__chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    color var(--duration-base) var(--ease-standard),
    border-color var(--duration-base) var(--ease-standard),
    background var(--duration-base) var(--ease-standard),
    box-shadow var(--duration-base) var(--ease-standard),
    transform var(--duration-base) var(--ease-standard);
}

.site-footer a.footer-meta__chip:hover,
.site-footer a.footer-meta__chip:focus-visible {
  color: #fff;
  border-color: rgba(var(--footer-red), 0.28);
  background: rgba(var(--footer-red), 0.085);
  box-shadow:
    inset 0 0 18px rgba(var(--footer-red), 0.06),
    0 10px 22px rgba(0, 0, 0, 0.22);
  text-shadow: none;
  transform: translateY(-2px);
}

.site-footer .footer-meta__chip--label {
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 760px) {
  .site-footer {
    contain-intrinsic-size: auto 520px;
  }

  .site-footer .footer-top {
    padding: 16px 12px 12px;
  }

  .site-footer .footer-logo {
    min-height: 72px;
    padding-bottom: 12px;
  }

  .site-footer .footer-logo img {
    width: clamp(142px, 42vw, 176px);
    max-height: 70px;
  }

  .site-footer .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 0;
  }

  .site-footer .footer-nav a {
    min-height: 46px;
    padding: 10px 8px;
    border-radius: 12px;
    font-size: 9.5px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-align: center;
  }

  .site-footer .footer-nav a::after {
    inset: auto 14px 7px;
  }

  .site-footer .footer-nav a:nth-child(7) {
    grid-column: 2 / 3;
    padding-inline: 8px;
  }

  .site-footer .socials {
    padding-top: 12px;
    gap: 12px;
  }

  .site-footer .socials a {
    width: 50px;
    height: 50px;
  }

  .site-footer .socials img {
    width: 24px;
    height: 24px;
  }

  .site-footer .socials a:last-child img {
    width: 27px;
    height: 27px;
  }

  .site-footer .footer-bottom {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 10px;
    padding: 12px 12px max(16px, env(safe-area-inset-bottom));
    text-align: center;
  }

  .site-footer .footer-bottom__copyright {
    font-size: 10px;
  }

  .site-footer .footer-meta {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .site-footer .footer-meta__chip {
    min-height: 37px;
    padding: 8px 12px;
    font-size: 9.5px;
    flex: 0 1 auto;
  }

  .site-footer .footer-meta__chip--label {
    flex-basis: 100%;
  }
}

@media (max-width: 420px) {
  .site-footer .footer-top {
    padding: 15px 10px 11px;
  }

  .site-footer .footer-nav {
    gap: 7px;
  }

  .site-footer .footer-nav a {
    min-height: 44px;
    font-size: 8.75px;
    letter-spacing: 0.05em;
  }

  .site-footer .footer-nav a:nth-child(7) {
    grid-column: 2 / 3;
  }

  .site-footer .footer-meta__chip {
    min-height: 36px;
    font-size: 9px;
    padding-inline: 11px;
  }
}

@media (max-width: 340px) {
  .site-footer .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-nav a:nth-child(7) {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer a.footer-meta__chip {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Footer compacto e minimalista
   Preserva a composição aprovada e reduz altura, ruído e custo visual.
   ========================================================================== */
.site-footer {
  padding-top: 10px;
  background: linear-gradient(180deg, #070708, #020203);
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.3);
}

.site-footer::after,
.site-footer .footer-top::before,
.site-footer .footer-top::after {
  display: none;
}

.site-footer::before {
  height: 1px;
  opacity: 0.68;
  filter: drop-shadow(0 0 6px rgba(var(--footer-red), 0.55));
  animation-duration: 10s;
}

.site-footer .footer-top {
  min-height: 0;
  gap: clamp(12px, 1.8vw, 24px);
  padding: 14px clamp(14px, 2vw, 24px);
  border-color: rgba(255, 255, 255, 0.065);
  border-bottom-color: rgba(var(--footer-red), 0.12);
  border-radius: 16px 16px 0 0;
  background: rgba(7, 7, 8, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.site-footer .footer-logo {
  min-height: 56px;
  padding-block: 2px;
}

.site-footer .footer-logo::before {
  opacity: 0.28;
  animation-duration: 8s;
}

.site-footer .footer-logo::after {
  width: 2px;
  height: 20px;
  opacity: 0.58;
}

.site-footer .footer-logo img {
  width: min(150px, 100%);
  height: auto;
  max-height: 58px;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.42));
  animation-duration: 9s;
}

.site-footer .footer-nav {
  gap: 6px;
  padding-inline: 0;
}

.site-footer .footer-nav a {
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 9px;
  letter-spacing: 0.055em;
}

.site-footer .footer-nav a::after {
  display: none;
}

.site-footer .socials {
  gap: 8px;
  padding-left: clamp(8px, 1.2vw, 16px);
}

.site-footer .socials a {
  width: 38px;
  height: 38px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-footer .socials a::before,
.site-footer .socials a::after {
  display: none;
}

.site-footer .socials img,
.site-footer .socials a:last-child img {
  width: 21px;
  height: 21px;
}

.site-footer .footer-bottom {
  min-height: 0;
  gap: 8px 12px;
  padding: 9px 12px;
  border-color: rgba(255, 255, 255, 0.055);
  border-radius: 0 0 13px 13px;
  background: rgba(2, 2, 3, 0.97);
}

.site-footer .footer-bottom::before {
  opacity: 0.5;
  animation-duration: 14s;
}

.site-footer .footer-bottom__copyright {
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.035em;
}

.site-footer .footer-meta {
  gap: 6px;
}

.site-footer .footer-meta__chip {
  min-height: 30px;
  padding: 6px 10px;
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.022);
  font-size: 8.5px;
  letter-spacing: 0.05em;
  box-shadow: none;
}

.site-footer a.footer-meta__chip:hover,
.site-footer a.footer-meta__chip:focus-visible {
  box-shadow: none;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .site-footer {
    padding: 8px 0 max(9px, env(safe-area-inset-bottom));
    contain-intrinsic-size: auto 310px;
  }

  .site-footer .footer-top {
    gap: 0;
    padding: 10px 9px 8px;
    border-radius: 14px 14px 0 0;
  }

  .site-footer .footer-logo {
    min-height: 52px;
    padding: 0 0 8px;
  }

  .site-footer .footer-logo::before {
    width: min(58vw, 220px);
    height: 64px;
    opacity: 0.3;
  }

  .site-footer .footer-logo::after {
    width: min(22vw, 72px);
    height: 2px;
    opacity: 0.55;
  }

  .site-footer .footer-logo img {
    width: clamp(124px, 35vw, 152px);
    max-height: 54px;
  }

  .site-footer .footer-nav {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 6px;
    padding: 8px 0;
  }

  .site-footer .footer-nav a,
  .site-footer .footer-nav a:nth-child(7) {
    grid-column: span 2;
    min-height: 38px;
    padding: 7px 4px;
    border-radius: 9px;
    font-size: 8.25px;
    line-height: 1.1;
    letter-spacing: 0.035em;
  }

  .site-footer .footer-nav a:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .site-footer .footer-nav a:nth-child(6) {
    grid-column: 4 / span 2;
  }

  .site-footer .footer-nav a:nth-child(7) {
    grid-column: 6 / span 2;
  }

  .site-footer .socials {
    grid-template-columns: repeat(3, 42px);
    gap: 10px;
    padding: 8px 0 1px;
  }

  .site-footer .socials a {
    width: 42px;
    height: 42px;
  }

  .site-footer .socials img,
  .site-footer .socials a:last-child img {
    width: 22px;
    height: 22px;
  }

  .site-footer .footer-bottom {
    gap: 7px;
    padding: 8px 8px max(10px, env(safe-area-inset-bottom));
    border-radius: 0 0 12px 12px;
  }

  .site-footer .footer-bottom__copyright {
    font-size: 8.25px;
    line-height: 1.3;
  }

  .site-footer .footer-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .site-footer .footer-meta__chip,
  .site-footer .footer-meta__chip--label {
    min-height: 30px;
    padding: 5px 6px;
    font-size: 8px;
    line-height: 1.1;
    flex-basis: auto;
    white-space: nowrap;
  }
}

@media (max-width: 350px) {
  .site-footer .footer-nav {
    gap: 5px;
  }

  .site-footer .footer-nav a,
  .site-footer .footer-nav a:nth-child(7) {
    min-height: 37px;
    font-size: 7.75px;
  }

  .site-footer .footer-meta {
    gap: 5px;
  }

  .site-footer .footer-meta__chip,
  .site-footer .footer-meta__chip--label {
    padding-inline: 4px;
    font-size: 7.5px;
  }
}

/* ==========================================================================
   Footer essencial — CTA à esquerda e redes à direita
   ========================================================================== */
.site-footer {
  padding: 10px 0 max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background: #030303;
  box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.28);
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 32, 57, 0.55), transparent);
  filter: none;
  opacity: 0.72;
  animation: none;
}

.site-footer::after,
.site-footer .footer-top::before,
.site-footer .footer-top::after,
.site-footer .footer-logo::before,
.site-footer .footer-logo::after {
  content: none !important;
}

.site-footer .footer-top {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), var(--content));
  min-height: 88px;
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 28px);
  padding: 10px 14px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 16px;
  background: rgba(7, 7, 8, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.site-footer .footer-logo {
  width: clamp(168px, 24vw, 240px);
  min-width: 0;
  min-height: 0;
  flex: 0 1 auto;
  display: block;
  padding: 0;
  border: 0;
}

.site-footer .footer-logo img {
  width: 100%;
  height: auto;
  max-height: 76px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
  transform: none;
  animation: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.site-footer .footer-logo:hover img,
.site-footer .footer-logo:focus-visible img {
  opacity: 0.94;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 10px rgba(255, 32, 57, 0.16));
  transform: translateY(-1px);
}

.site-footer .socials {
  width: auto;
  flex: 0 0 auto;
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  padding: 0;
  border: 0;
}

.site-footer .socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transform: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-footer .socials a::before,
.site-footer .socials a::after {
  content: none !important;
}

.site-footer .socials a:hover,
.site-footer .socials a:focus-visible {
  border-color: rgba(255, 32, 57, 0.52);
  background: rgba(255, 32, 57, 0.08);
  box-shadow: none;
  transform: translateY(-2px);
}

.site-footer .socials img,
.site-footer .socials a:last-child img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: none;
  transform: none;
}

.site-footer .socials a:hover img,
.site-footer .socials a:focus-visible img {
  filter: none;
  transform: none;
}

@media (max-width: 760px) {
  .site-footer {
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    contain-intrinsic-size: auto 112px;
  }

  .site-footer .footer-top {
    width: min(calc(100% - 16px), var(--content));
    min-height: 82px;
    display: flex;
    grid-template-columns: none;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .site-footer .footer-logo {
    width: min(46vw, 190px);
    min-height: 0;
    flex: 1 1 auto;
    padding: 0;
    border: 0;
  }

  .site-footer .footer-logo img {
    width: 100%;
    max-height: 68px;
    object-position: left center;
  }

  .site-footer .socials {
    width: auto;
    display: flex;
    grid-template-columns: none;
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 6px;
    padding: 0;
    border: 0;
  }

  .site-footer .socials a {
    width: 40px;
    height: 40px;
  }

  .site-footer .socials img,
  .site-footer .socials a:last-child img {
    width: 21px;
    height: 21px;
  }

  .site-footer .socials a:active {
    border-color: rgba(255, 32, 57, 0.66);
    background: rgba(255, 32, 57, 0.1);
    box-shadow: none;
    transform: scale(0.94);
  }
}

@media (max-width: 360px) {
  .site-footer .footer-top {
    min-height: 76px;
    padding-inline: 8px;
  }

  .site-footer .footer-logo {
    width: min(43vw, 150px);
  }

  .site-footer .socials a {
    width: 38px;
    height: 38px;
  }

  .site-footer .socials img,
  .site-footer .socials a:last-child img {
    width: 20px;
    height: 20px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .site-footer .footer-logo:hover img,
  .site-footer .socials a:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.025);
    filter: none;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer .footer-logo img,
  .site-footer .socials a {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Menu mobile em tela cheia
   Termos e privacidade aparecem apenas no menu acionado pelo botão mobile.
   ========================================================================== */
.main-nav__legal {
  display: none;
}

@media (max-width: 940px) {
  body.menu-open .site-header {
    z-index: 200;
  }

  .main-nav {
    inset: var(--mobile-header) 0 0;
    z-index: 190;
    width: 100%;
    height: calc(100dvh - var(--mobile-header));
    min-height: calc(100svh - var(--mobile-header));
    max-height: none;
    padding: 16px var(--mobile-gutter) calc(22px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    border: 0;
    border-top: 1px solid var(--line-red-soft);
    border-radius: 0;
    background:
      radial-gradient(circle at 88% 6%, rgba(126, 0, 18, 0.16), transparent 32rem),
      linear-gradient(180deg, #050505, #020202 72%);
    box-shadow: none;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 32, 57, 0.42) transparent;
  }

  .main-nav::-webkit-scrollbar {
    width: 4px;
  }

  .main-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 32, 57, 0.42);
  }

  .main-nav__legal {
    display: flex;
  }

  .main-nav a.main-nav__legal {
    border-color: rgba(255, 32, 57, 0.18);
    background: rgba(255, 32, 57, 0.035);
    color: rgba(255, 255, 255, 0.78);
  }

  .main-nav a.main-nav__legal[aria-current="page"] {
    border-color: rgba(255, 32, 57, 0.62);
    background: linear-gradient(135deg, rgba(122, 4, 20, 0.52), rgba(45, 0, 7, 0.42));
    color: #fff;
  }

  .main-nav.open a:nth-child(9) {
    animation-delay: 240ms;
  }

  .main-nav.open a:nth-child(10) {
    animation-delay: 270ms;
  }
}

@media (max-width: 640px) {
  .main-nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding-top: 14px;
  }

  .main-nav a {
    min-height: 54px;
    width: 100%;
    padding-inline: 16px;
  }

  .main-nav a.main-nav__legal:nth-last-child(2) {
    margin-top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav.open a {
    animation: none !important;
  }
}

/* ==========================================================================
   Menu mobile — padronização visual, centralização e movimento coordenado
   ========================================================================== */
@media (max-width: 940px) {
  .main-nav {
    isolation: isolate;
    gap: 10px;
    background:
      radial-gradient(circle at 50% -8%, rgba(255, 32, 57, 0.13), transparent 33rem),
      radial-gradient(circle at 92% 38%, rgba(100, 0, 16, 0.09), transparent 28rem),
      linear-gradient(180deg, #080405 0%, #030303 42%, #010101 100%);
  }

  .main-nav::before,
  .main-nav::after {
    content: "";
    position: fixed;
    z-index: -1;
    pointer-events: none;
  }

  .main-nav::before {
    inset: var(--mobile-header) 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 32, 57, 0.84), transparent);
    box-shadow: 0 0 18px rgba(255, 32, 57, 0.42);
    transform: scaleX(0);
    opacity: 0;
  }

  .main-nav::after {
    top: calc(var(--mobile-header) + 8%);
    left: 50%;
    width: min(86vw, 480px);
    aspect-ratio: 1.2;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 0, 19, 0.11), transparent 66%);
    filter: blur(18px);
    opacity: 0;
    transform: translate(-50%, -8%) scale(0.82);
  }

  .main-nav.open {
    animation: mobileMenuPanelIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .main-nav.open::before {
    animation: mobileMenuLineIn 0.8s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .main-nav.open::after {
    animation: mobileMenuAuraIn 1.1s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .main-nav a,
  .main-nav a.main-nav__legal {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 15px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent), rgba(255, 255, 255, 0.018);
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.055em;
    text-align: center;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.035),
      0 10px 25px rgba(0, 0, 0, 0.14);
    transform-origin: center;
    transition:
      color 0.24s var(--ease),
      border-color 0.24s var(--ease),
      background 0.24s var(--ease),
      box-shadow 0.24s var(--ease),
      transform 0.2s var(--ease);
  }

  .main-nav a.main-nav__legal,
  .main-nav a.main-nav__legal:nth-last-child(2) {
    margin-top: 0;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.main-nav__legal:hover,
  .main-nav a.main-nav__legal:focus-visible {
    color: #fff;
    border-color: rgba(255, 32, 57, 0.4);
    background:
      linear-gradient(135deg, rgba(255, 32, 57, 0.11), rgba(78, 0, 12, 0.08)),
      rgba(255, 255, 255, 0.025);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 0 1px rgba(255, 32, 57, 0.055),
      0 14px 30px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
  }

  .main-nav a[aria-current="page"],
  .main-nav a.main-nav__legal[aria-current="page"] {
    color: #fff;
    border-color: rgba(255, 32, 57, 0.68);
    background:
      linear-gradient(135deg, rgba(137, 0, 20, 0.64), rgba(57, 0, 9, 0.56)),
      rgba(255, 32, 57, 0.045);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      inset 0 0 26px rgba(255, 32, 57, 0.045),
      0 0 24px rgba(255, 32, 57, 0.07);
  }

  .main-nav.open a {
    animation: mobileMenuCardIn 0.54s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .main-nav.open a:nth-child(1) {
    animation-delay: 50ms;
  }
  .main-nav.open a:nth-child(2) {
    animation-delay: 80ms;
  }
  .main-nav.open a:nth-child(3) {
    animation-delay: 110ms;
  }
  .main-nav.open a:nth-child(4) {
    animation-delay: 140ms;
  }
  .main-nav.open a:nth-child(5) {
    animation-delay: 170ms;
  }
  .main-nav.open a:nth-child(6) {
    animation-delay: 200ms;
  }
  .main-nav.open a:nth-child(7) {
    animation-delay: 230ms;
  }
  .main-nav.open a:nth-child(8) {
    animation-delay: 260ms;
  }
  .main-nav.open a:nth-child(9) {
    animation-delay: 290ms;
  }
  .main-nav.open a:nth-child(10) {
    animation-delay: 320ms;
  }
}

@media (max-width: 640px) {
  .main-nav {
    gap: 10px;
    padding: 16px 13px calc(22px + env(safe-area-inset-bottom));
  }

  .main-nav a,
  .main-nav a.main-nav__legal {
    min-height: 62px;
    width: 100%;
    padding-inline: 16px;
    border-radius: 16px;
    font-size: 13px;
    text-align: center;
  }

  .main-nav a:active,
  .main-nav a.main-nav__legal:active {
    border-color: rgba(255, 32, 57, 0.58);
    background: rgba(255, 32, 57, 0.1);
    transform: scale(0.975);
    transition-duration: 80ms;
  }
}

@keyframes mobileMenuPanelIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileMenuLineIn {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0.72;
    transform: scaleX(1);
  }
}

@keyframes mobileMenuAuraIn {
  from {
    opacity: 0;
    transform: translate(-50%, -10%) scale(0.78);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes mobileMenuCardIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(18px) scale(0.975);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@media (hover: none) and (pointer: coarse) and (max-width: 940px) {
  .main-nav a:hover,
  .main-nav a.main-nav__legal:hover {
    color: rgba(255, 255, 255, 0.76);
    border-color: rgba(255, 255, 255, 0.085);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent), rgba(255, 255, 255, 0.018);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.035),
      0 10px 25px rgba(0, 0, 0, 0.14);
    transform: none;
  }

  .main-nav a[aria-current="page"]:hover,
  .main-nav a.main-nav__legal[aria-current="page"]:hover {
    color: #fff;
    border-color: rgba(255, 32, 57, 0.68);
    background:
      linear-gradient(135deg, rgba(137, 0, 20, 0.64), rgba(57, 0, 9, 0.56)),
      rgba(255, 32, 57, 0.045);
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav.open,
  .main-nav.open::before,
  .main-nav.open::after,
  .main-nav.open a {
    animation: none !important;
  }

  .main-nav a,
  .main-nav a.main-nav__legal {
    transition-duration: 0.01ms !important;
  }
}

/* Remove a linha inferior vermelha dos itens do menu mobile. */
@media (max-width: 940px) {
  .main-nav a::after,
  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a[aria-current="page"]::after {
    content: none !important;
    display: none !important;
  }
}

/* Remove definitivamente o feixe horizontal do painel mobile. */
@media (max-width: 940px) {
  .main-nav::before,
  .main-nav.open::before {
    content: none !important;
    display: none !important;
    animation: none !important;
  }
}

/* ==========================================================================
   Acesso da conta no cabeçalho e página de autenticação
   ========================================================================== */
.header-auth-button {
  display: none;
}

@media (max-width: 940px) {
  .header-row {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: clamp(8px, 2.6vw, 14px);
  }

  .logo {
    grid-column: 1;
  }

  .menu-button {
    grid-column: 3;
    margin-left: 0;
  }

  .header-auth-button {
    position: static;
    grid-column: 2;
    z-index: 3;
    min-width: 0;
    min-height: 34px;
    max-width: 132px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 10px;
    background: rgba(2, 2, 3, 0.92);
    color: #fff;
    font-size: 9.25px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.09em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.055),
      0 5px 14px rgba(0, 0, 0, 0.24);
    transform: none;
    transition:
      opacity 180ms var(--ease-standard),
      color 180ms var(--ease-standard),
      border-color 180ms var(--ease-standard),
      background 180ms var(--ease-standard),
      box-shadow 180ms var(--ease-standard),
      transform 180ms var(--ease-standard);
  }

  .header-auth-button:hover,
  .header-auth-button:focus-visible,
  .header-auth-button[aria-current="page"] {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.055);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.09),
      0 7px 18px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.035);
    transform: translateY(-1px);
  }

  .header-auth-button:active {
    background: rgba(255, 255, 255, 0.085);
    transform: scale(0.97);
  }

  .header-auth-button.is-authenticated {
    border-color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.04);
  }

  .header-auth-button__compact {
    display: none;
  }

  body.menu-open .header-auth-button {
    pointer-events: none;
    opacity: 0;
    transform: scale(0.94);
  }
}

@media (max-width: 370px) {
  .logo {
    width: 108px;
  }

  .header-auth-button {
    min-height: 32px;
    max-width: 88px;
    padding-inline: 10px;
    border-radius: 9px;
    font-size: 8.75px;
    letter-spacing: 0.085em;
  }

  .header-auth-button__full {
    display: none;
  }

  .header-auth-button__compact {
    display: inline;
  }
}

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 8%, rgba(148, 0, 22, 0.13), transparent 30rem),
    linear-gradient(180deg, #050304, #010101 72%);
}

.auth-main {
  position: relative;
  min-height: calc(100svh - 64px);
  padding: clamp(44px, 7vw, 86px) 0 clamp(52px, 8vw, 96px);
  overflow: hidden;
}

.auth-main::before,
.auth-main::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(16px);
}

.auth-main::before {
  top: 3rem;
  left: -13rem;
  width: 30rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(132, 0, 19, 0.13), transparent 67%);
}

.auth-main::after {
  right: -15rem;
  bottom: -12rem;
  width: 34rem;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 32, 57, 0.08), transparent 68%);
}

.auth-layout {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.auth-intro {
  max-width: 620px;
  margin: 0 auto clamp(24px, 4vw, 38px);
  text-align: center;
}

.auth-intro h1 {
  margin: 10px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.auth-intro h1 span {
  color: #ff3048;
  font-style: italic;
}

.auth-intro p {
  max-width: 520px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.59);
  font-size: 14px;
  line-height: 1.7;
}

.auth-card {
  position: relative;
  isolation: isolate;
  padding: clamp(18px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 32, 57, 0.045), transparent 38%), rgba(7, 7, 8, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 30px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.auth-card__glow {
  position: absolute;
  z-index: -1;
  top: -13rem;
  left: 50%;
  width: 30rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 0, 26, 0.14), transparent 68%);
  transform: translateX(-50%);
  animation: authGlow 7s ease-in-out infinite alternate;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.42);
}

.auth-tab {
  min-height: 48px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  cursor: pointer;
  transition:
    color 220ms var(--ease-standard),
    background 220ms var(--ease-standard),
    box-shadow 220ms var(--ease-standard),
    transform 180ms var(--ease-standard);
}

.auth-tab.is-active {
  color: #fff;
  background: linear-gradient(180deg, rgba(132, 5, 23, 0.9), rgba(63, 0, 10, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.auth-panel {
  padding-top: clamp(20px, 4vw, 30px);
}

.auth-panel.is-active {
  animation: authPanelIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-form {
  display: grid;
  gap: 17px;
}

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

.auth-field {
  display: grid;
  gap: 8px;
}

.auth-field label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.055em;
}

.auth-field small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  line-height: 1.5;
}

.auth-field input,
.auth-forgot input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: none;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font: inherit;
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard);
}

.auth-field input::placeholder,
.auth-forgot input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.auth-field input:focus,
.auth-forgot input:focus {
  border-color: rgba(255, 44, 67, 0.72);
  background: rgba(23, 0, 4, 0.58);
  box-shadow:
    0 0 0 3px rgba(255, 32, 57, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.auth-password {
  position: relative;
}

.auth-password input {
  padding-right: 78px;
}

.auth-password button {
  position: absolute;
  top: 50%;
  right: 7px;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transform: translateY(-50%);
}

.auth-password button:hover,
.auth-password button:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.auth-check {
  position: relative;
  display: inline-grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.64);
  cursor: pointer;
}

.auth-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.auth-check > span {
  position: relative;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.34);
  transition:
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard);
}

.auth-check > span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transform: rotate(45deg) scale(0.6);
  transition:
    opacity 160ms var(--ease-standard),
    transform 160ms var(--ease-standard);
}

.auth-check input:checked + span {
  border-color: rgba(255, 42, 65, 0.85);
  background: #8c061c;
  box-shadow: 0 0 14px rgba(255, 32, 57, 0.16);
}

.auth-check input:checked + span::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.auth-check input:focus-visible + span {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: 3px;
}

.auth-check b {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
}

.auth-check b a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(255, 32, 57, 0.5);
  text-underline-offset: 3px;
}

.auth-check--terms {
  align-items: start;
}

.auth-text-button {
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.auth-text-button:hover,
.auth-text-button:focus-visible {
  color: #ff5267;
}

.auth-forgot {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  animation: authPanelIn 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-forgot p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.55;
}

.auth-forgot__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.auth-forgot__row input {
  min-height: 44px;
}

.auth-forgot__row button,
.auth-secondary {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.auth-submit {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 61, 83, 0.8);
  border-radius: 13px;
  background: linear-gradient(180deg, #a10722, #59000e);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 13px 30px rgba(76, 0, 11, 0.32);
  transition:
    transform 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard),
    background 180ms var(--ease-standard);
}

.auth-submit:hover,
.auth-submit:focus-visible {
  background: linear-gradient(180deg, #bc0b2a, #6c0012);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 34px rgba(92, 0, 14, 0.4),
    0 0 20px rgba(255, 32, 57, 0.11);
  transform: translateY(-2px);
}

.auth-submit:active,
.auth-secondary:active,
.auth-tab:active {
  transform: scale(0.98);
}

.auth-status {
  margin: 16px 0 0;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.auth-status:empty {
  display: none;
}

.auth-status.error {
  border-color: rgba(255, 65, 86, 0.28);
  background: rgba(107, 0, 16, 0.18);
  color: #ff9aa7;
}

.auth-status.success {
  border-color: rgba(92, 210, 148, 0.25);
  background: rgba(21, 92, 57, 0.16);
  color: #9fe0bd;
}

.auth-security-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}

.auth-security-note strong {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 600;
}

.auth-account {
  padding: clamp(12px, 3vw, 24px) 0;
  text-align: center;
  animation: authPanelIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-account__badge {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(99, 218, 154, 0.22);
  border-radius: 999px;
  background: rgba(33, 114, 70, 0.15);
  color: #a7e5c2;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-account h2 {
  margin: 18px 0 7px;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 600;
}

.auth-account h2 span {
  color: #ff3048;
}

.auth-account > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.auth-account__actions {
  max-width: 420px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

@keyframes authPanelIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes authGlow {
  from {
    opacity: 0.5;
    transform: translateX(-50%) scale(0.9);
  }
  to {
    opacity: 0.95;
    transform: translateX(-50%) scale(1.08);
  }
}

@media (max-width: 940px) {
  .auth-page {
    padding-bottom: 0 !important;
  }

  .auth-page .mobile-dock {
    display: none !important;
  }

  .auth-main {
    min-height: calc(100svh - var(--mobile-header));
    padding: 34px 0 54px;
  }
}

@media (max-width: 640px) {
  .auth-layout {
    width: min(calc(100% - 24px), 760px);
  }

  .auth-intro {
    margin-bottom: 22px;
  }

  .auth-intro h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .auth-intro p {
    font-size: 12px;
    line-height: 1.65;
  }

  .auth-card {
    padding: 14px;
    border-radius: 19px;
    backdrop-filter: none;
  }

  .auth-tab {
    min-height: 46px;
    font-size: 11px;
  }

  .auth-panel {
    padding-top: 18px;
  }

  .auth-form,
  .auth-form__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .auth-field input {
    min-height: 50px;
  }

  .auth-options {
    align-items: flex-start;
  }

  .auth-check b,
  .auth-text-button {
    font-size: 10px;
  }

  .auth-forgot__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .auth-submit {
    width: 100%;
    min-height: 52px;
  }

  .auth-account__actions {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 380px) {
  .auth-options {
    flex-direction: column;
    gap: 7px;
  }

  .auth-text-button {
    min-height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-card__glow,
  .auth-panel.is-active,
  .auth-account {
    animation: none !important;
  }

  .header-auth-button,
  .auth-tab,
  .auth-field input,
  .auth-password button,
  .auth-check > span,
  .auth-check > span::after,
  .auth-submit {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Acesso de conta — versão desktop alinhada ao botão mobile
   Substitui visualmente o antigo CTA vermelho "Acesso VIP".
   ========================================================================== */
@media (min-width: 941px) {
  .header-whatsapp {
    display: none;
  }

  .header-auth-button {
    min-height: 38px;
    min-width: 132px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 10px;
    background: rgba(2, 2, 3, 0.96);
    color: #fff;
    font-size: 9.5px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.055),
      0 6px 16px rgba(0, 0, 0, 0.28);
    transition:
      color 180ms var(--ease-standard),
      border-color 180ms var(--ease-standard),
      background 180ms var(--ease-standard),
      box-shadow 180ms var(--ease-standard),
      transform 180ms var(--ease-standard);
  }

  .header-auth-button:hover,
  .header-auth-button:focus-visible,
  .header-auth-button[aria-current="page"] {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.055);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 8px 20px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
  }

  .header-auth-button:active {
    background: rgba(255, 255, 255, 0.085);
    transform: scale(0.975);
  }

  .header-auth-button.is-authenticated {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.04);
  }

  .header-auth-button__compact {
    display: none;
  }
}

@media (min-width: 941px) and (max-width: 1120px) {
  .header-auth-button {
    min-width: 112px;
    min-height: 36px;
    padding-inline: 12px;
    font-size: 8.75px;
    letter-spacing: 0.085em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-auth-button {
    transition-duration: 0.01ms !important;
  }
}

/* Remove o marcador circular do item ativo apenas na navegação desktop. */
@media (min-width: 941px) {
  .main-nav a::before {
    content: none;
    display: none;
  }
}

/* ==========================================================================
   Refinamento final: acesso da conta e ícones de WhatsApp na página inicial
   ========================================================================== */
.header-auth-button,
.header-auth-button:hover,
.header-auth-button:focus-visible,
.header-auth-button[aria-current="page"],
.header-auth-button.is-authenticated {
  border-color: rgba(255, 32, 57, 0.86);
  background: rgba(2, 2, 3, 0.97);
  color: #fff;
}

.header-auth-button {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 6px 16px rgba(0, 0, 0, 0.27);
}

.header-auth-button:hover,
.header-auth-button:focus-visible,
.header-auth-button[aria-current="page"] {
  border-color: rgb(255, 32, 57);
  background: rgba(2, 2, 3, 0.97);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    0 0 0 1px rgba(255, 32, 57, 0.08),
    0 7px 18px rgba(0, 0, 0, 0.3);
}

.header-auth-button:active {
  border-color: rgb(255, 32, 57);
  background: #020203;
}

body[data-page="inicio"] .whatsapp-panel > img {
  width: 72px;
  height: 72px;
  padding: 16px;
  border: 1px solid rgba(255, 32, 57, 0.36);
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(255, 32, 57, 0.065);
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.12));
}

body[data-page="inicio"] .header-whatsapp img,
body[data-page="inicio"] .site-footer .socials a[href*="wa.me"] img {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

body[data-page="inicio"] .site-footer .socials a[href*="wa.me"] img {
  width: 24px;
  height: 24px;
}

@media (max-width: 760px) {
  body[data-page="inicio"] .whatsapp-panel > img {
    width: 58px;
    height: 58px;
    padding: 13px;
    border-radius: 17px;
  }
}

/* ==========================================================================
   CTA de encontro presencial + acesso de perfil na navegação móvel
   ========================================================================== */
.header-auth-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(255, 32, 57, 0.82) !important;
  background: #020203 !important;
  color: #fff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(255, 32, 57, 0.025),
    0 7px 18px rgba(0, 0, 0, 0.3);
  animation: meetingButtonPulse 2.35s ease-in-out infinite;
}

.header-auth-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -1px;
  padding: 1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    rgba(255, 32, 57, 0.28) 0%,
    rgba(255, 32, 57, 0.72) 24%,
    #ff2039 42%,
    rgba(255, 255, 255, 0.96) 50%,
    #ff2039 58%,
    rgba(255, 32, 57, 0.72) 76%,
    rgba(255, 32, 57, 0.28) 100%
  );
  background-size: 260% 100%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: meetingBorderFlow 2.7s linear infinite;
}

.header-auth-button::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -1px;
  left: -42%;
  width: 38%;
  height: 2px;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #fff, #ff2039, transparent);
  filter: drop-shadow(0 0 7px rgba(255, 32, 57, 0.95));
  animation: meetingBorderSpark 2.7s ease-in-out infinite;
}

.header-auth-button__full,
.header-auth-button__compact {
  position: relative;
  z-index: 1;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.header-auth-button:hover,
.header-auth-button:focus-visible,
.header-auth-button[aria-current="page"],
.header-auth-button.is-authenticated {
  border-color: rgb(255, 32, 57) !important;
  background: #020203 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.085),
    0 0 0 1px rgba(255, 32, 57, 0.14),
    0 0 22px rgba(255, 32, 57, 0.24),
    0 9px 22px rgba(0, 0, 0, 0.34);
}

.header-auth-button:active {
  background: #020203 !important;
}

.mobile-dock__link[href="auth.html"] svg {
  stroke-width: 1.85;
}

@keyframes meetingButtonPulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.055),
      0 0 0 1px rgba(255, 32, 57, 0.025),
      0 7px 18px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(255, 32, 57, 0.12),
      0 0 20px rgba(255, 32, 57, 0.2),
      0 8px 21px rgba(0, 0, 0, 0.34);
  }
}

@keyframes meetingBorderFlow {
  from {
    background-position: 145% 50%;
  }
  to {
    background-position: -145% 50%;
  }
}

@keyframes meetingBorderSpark {
  0%,
  16% {
    left: -42%;
    opacity: 0;
  }
  27% {
    opacity: 1;
  }
  73% {
    opacity: 0.95;
  }
  88%,
  100% {
    left: 110%;
    opacity: 0;
  }
}

@media (max-width: 940px) {
  .header-auth-button {
    max-width: 154px;
    padding-inline: 11px;
    font-size: 8.8px;
    letter-spacing: 0.075em;
  }
}

@media (min-width: 941px) {
  .header-auth-button {
    min-width: 154px;
    padding-inline: 15px;
    font-size: 9px;
    letter-spacing: 0.085em;
  }
}

@media (max-width: 370px) {
  .header-auth-button {
    max-width: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-auth-button,
  .header-auth-button::before,
  .header-auth-button::after {
    animation: none !important;
  }
}

/* ==========================================================================
   Meu perfil — painel completo da conta
   ========================================================================== */
body.is-profile-active .auth-layout {
  max-width: 1180px;
}

body.is-profile-active .auth-intro {
  max-width: 760px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

body.is-profile-active .auth-card {
  padding: clamp(16px, 2.5vw, 28px);
}

.profile-dashboard.auth-account {
  padding: 0;
  text-align: left;
}

.profile-dashboard__hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 4px 2px 22px;
}

.profile-avatar {
  width: clamp(58px, 7vw, 72px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 49, 73, 0.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(128, 4, 22, 0.95), rgba(35, 0, 7, 0.96));
  color: #fff;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 30px rgba(64, 0, 10, 0.28);
}

.profile-dashboard__identity {
  min-width: 0;
}

.profile-dashboard__identity .auth-account__badge {
  padding: 6px 10px;
}

.profile-dashboard__identity h2 {
  margin: 10px 0 3px;
  font-size: clamp(27px, 4.4vw, 42px);
  line-height: 1;
}

.profile-dashboard__identity > p {
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-plan-pill {
  min-width: 154px;
  display: grid;
  gap: 4px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 50, 74, 0.28);
  border-radius: 14px;
  background: rgba(76, 0, 12, 0.16);
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
  transition:
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    transform 180ms var(--ease-standard);
}

.profile-plan-pill span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-plan-pill strong {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.profile-plan-pill:hover,
.profile-plan-pill:focus-visible {
  border-color: rgba(255, 50, 74, 0.58);
  background: rgba(112, 0, 18, 0.24);
  transform: translateY(-2px);
}

.profile-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.44);
}

.profile-tab {
  min-height: 45px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.045em;
  cursor: pointer;
  transition:
    color 180ms var(--ease-standard),
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    transform 180ms var(--ease-standard);
}

.profile-tab:hover,
.profile-tab:focus-visible {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.035);
}

.profile-tab.is-active {
  border-color: rgba(255, 45, 69, 0.32);
  background: linear-gradient(180deg, rgba(110, 2, 19, 0.72), rgba(46, 0, 8, 0.82));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.profile-panel {
  padding-top: clamp(20px, 3vw, 30px);
}

.profile-panel.is-active {
  animation: authPanelIn 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.profile-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.profile-stat {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent 62%), rgba(0, 0, 0, 0.25);
}

.profile-stat > span,
.profile-kicker {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-stat strong {
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-stat small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  line-height: 1.45;
}

.profile-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.profile-section-card {
  padding: clamp(17px, 2.4vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.27);
}

.profile-section-card--featured {
  border-color: rgba(255, 45, 69, 0.2);
  background:
    radial-gradient(circle at 90% 0%, rgba(142, 0, 23, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(87, 0, 14, 0.16), rgba(0, 0, 0, 0.3));
}

.profile-section-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.profile-section-card h3,
.profile-panel-heading h3 {
  margin: 6px 0 0;
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(24px, 3.8vw, 34px);
  font-weight: 600;
  line-height: 1;
}

.profile-price {
  flex: 0 0 auto;
  color: #ff6b7d;
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.profile-section-card > p,
.profile-panel-heading p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.65;
}

.profile-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.profile-benefits span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
}

.profile-upgrade-button {
  width: fit-content;
  min-height: 46px;
  margin-top: 20px;
  padding-inline: 18px;
  font-size: 10px;
}

.profile-activity-card {
  max-width: 760px;
}

.profile-activity {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-activity li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.profile-activity li:last-child {
  border-bottom: 0;
}

.profile-activity div {
  display: grid;
  gap: 3px;
}

.profile-activity strong {
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 600;
}

.profile-activity span,
.profile-activity small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 8.5px;
}

.profile-activity small {
  text-align: right;
}

.profile-panel-heading {
  max-width: 680px;
  margin-bottom: 20px;
}

.profile-form {
  display: grid;
  gap: 16px;
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.25);
}

.profile-form .auth-submit {
  width: fit-content;
  min-width: 190px;
}

.profile-optional {
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
  font-weight: 500;
}

.auth-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 42px 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: none;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.5) 50%) calc(100% - 18px) 22px /
      5px 5px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 50%, transparent 50%) calc(100% - 13px) 22px /
      5px 5px no-repeat,
    rgba(0, 0, 0, 0.42);
  color: #fff;
  font: inherit;
  font-size: 14px;
  appearance: none;
}

.auth-field select:focus {
  border-color: rgba(255, 44, 67, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 32, 57, 0.09);
}

.auth-field select option {
  background: #090909;
  color: #fff;
}

.profile-security-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 10px;
  margin-bottom: 12px;
}

.profile-security-summary > div,
.profile-session-toggle {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
}

.profile-security-summary > div {
  display: grid;
  align-content: center;
  gap: 5px;
}

.profile-security-summary > div span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile-security-summary > div strong {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.profile-security-summary > div small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.profile-session-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.profile-session-toggle input,
.profile-preference input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.profile-session-toggle > span,
.profile-preference > i {
  position: relative;
  width: 42px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  transition:
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard);
}

.profile-session-toggle > span::after,
.profile-preference > i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 180ms var(--ease-standard),
    background 180ms var(--ease-standard);
}

.profile-session-toggle input:checked + span,
.profile-preference input:checked + i {
  border-color: rgba(255, 42, 65, 0.7);
  background: rgba(122, 2, 20, 0.82);
  box-shadow: 0 0 16px rgba(255, 32, 57, 0.11);
}

.profile-session-toggle input:checked + span::after,
.profile-preference input:checked + i::after {
  background: #fff;
  transform: translateX(18px);
}

.profile-session-toggle input:focus-visible + span,
.profile-preference input:focus-visible + i {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.profile-session-toggle b {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 600;
}

.profile-session-toggle b small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 8.5px;
  font-weight: 400;
  line-height: 1.4;
}

.profile-form--security {
  margin-bottom: 12px;
}

.profile-danger-row,
.profile-privacy-actions article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
}

.profile-danger-row strong,
.profile-privacy-actions strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 600;
}

.profile-danger-row p,
.profile-privacy-actions p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  line-height: 1.5;
}

.profile-current-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(18px, 3vw, 27px);
  border: 1px solid rgba(255, 48, 72, 0.22);
  border-radius: 19px;
  background:
    radial-gradient(circle at 90% 10%, rgba(150, 0, 24, 0.15), transparent 18rem),
    rgba(0, 0, 0, 0.28);
}

.profile-current-plan span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-current-plan h4 {
  margin: 6px 0;
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
}

.profile-current-plan p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  line-height: 1.6;
}

.profile-current-plan > strong {
  color: #ff6b7d;
  font-size: clamp(14px, 2vw, 19px);
  font-weight: 650;
  white-space: nowrap;
}

.profile-plan-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0;
}

.profile-plan-progress::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.profile-plan-progress span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  text-transform: uppercase;
}

.profile-plan-progress span::before {
  content: "";
  z-index: 1;
  width: 17px;
  height: 17px;
  border: 3px solid #090909;
  border-radius: 50%;
  background: #242426;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.profile-plan-progress span.is-reached::before {
  background: #8e061e;
  box-shadow:
    0 0 0 1px rgba(255, 54, 78, 0.5),
    0 0 13px rgba(255, 32, 57, 0.13);
}

.profile-plan-progress span.is-current {
  color: #fff;
}

.profile-plan-progress span.is-current::before {
  background: #ff3048;
}

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

.profile-plan-option {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
}

.profile-plan-option.is-recommended {
  border-color: rgba(255, 48, 72, 0.3);
  background: linear-gradient(145deg, rgba(87, 0, 14, 0.2), rgba(0, 0, 0, 0.28));
}

.profile-plan-option > span {
  color: #ff6b7d;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.profile-plan-option h4 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.profile-plan-option > strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.profile-plan-option p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  line-height: 1.55;
}

.profile-plan-option ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-plan-option li {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  line-height: 1.45;
}

.profile-plan-option li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff3048;
}

.profile-plan-option__button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.profile-plan-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 8.5px;
  line-height: 1.55;
  text-align: center;
}

.profile-preferences {
  display: grid;
  gap: 8px;
}

.profile-preference {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.profile-preference > span {
  display: grid;
  gap: 4px;
}

.profile-preference strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 600;
}

.profile-preference small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 8.5px;
  line-height: 1.45;
}

.profile-preferences .auth-submit {
  width: fit-content;
  min-width: 190px;
  margin-top: 8px;
}

.profile-privacy-actions {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.profile-danger-row--delete {
  border-color: rgba(255, 50, 73, 0.14) !important;
  background: rgba(73, 0, 11, 0.11) !important;
}

.profile-danger-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 62, 83, 0.35);
  border-radius: 10px;
  background: transparent;
  color: #ff8392;
  font: inherit;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
}

.profile-danger-button:hover,
.profile-danger-button:focus-visible {
  border-color: rgba(255, 62, 83, 0.7);
  background: rgba(117, 0, 18, 0.25);
  color: #fff;
}

@media (max-width: 900px) {
  .profile-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-overview-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 640px) {
  body.is-profile-active .auth-layout {
    width: min(calc(100% - 18px), 1180px);
  }

  body.is-profile-active .auth-intro {
    margin-bottom: 17px;
  }

  body.is-profile-active .auth-intro h1 {
    font-size: clamp(31px, 10vw, 42px);
  }

  body.is-profile-active .auth-card {
    padding: 11px;
    border-radius: 18px;
  }

  .profile-dashboard__hero {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    padding: 3px 2px 15px;
  }

  .profile-avatar {
    width: 54px;
    border-radius: 16px;
    font-size: 17px;
  }

  .profile-dashboard__identity h2 {
    margin-top: 8px;
    font-size: clamp(25px, 8vw, 34px);
  }

  .profile-dashboard__identity > p {
    font-size: 10px;
  }

  .profile-plan-pill {
    grid-column: 1 / -1;
    min-width: 0;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 10px 12px;
    text-align: left;
  }

  .profile-plan-pill strong {
    justify-self: end;
  }

  .profile-tabs {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .profile-tabs::-webkit-scrollbar {
    display: none;
  }

  .profile-tab {
    min-width: max-content;
    min-height: 42px;
    padding-inline: 13px;
    scroll-snap-align: start;
    font-size: 9px;
  }

  .profile-panel {
    padding-top: 17px;
  }

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

  .profile-stat {
    padding: 12px;
    border-radius: 13px;
  }

  .profile-stat strong {
    font-size: 12px;
  }

  .profile-overview-grid {
    gap: 8px;
    margin-top: 8px;
  }

  .profile-section-card,
  .profile-form {
    padding: 14px;
    border-radius: 15px;
  }

  .profile-section-card__heading {
    display: grid;
    gap: 8px;
  }

  .profile-section-card h3,
  .profile-panel-heading h3 {
    font-size: clamp(23px, 8vw, 30px);
  }

  .profile-price {
    justify-self: start;
  }

  .profile-upgrade-button,
  .profile-form .auth-submit,
  .profile-preferences .auth-submit {
    width: 100%;
  }

  .profile-activity li {
    align-items: flex-start;
  }

  .profile-security-summary {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .profile-current-plan {
    display: grid;
    gap: 13px;
    padding: 16px;
  }

  .profile-current-plan > strong {
    justify-self: start;
  }

  .profile-plan-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .profile-plan-option {
    padding: 15px;
  }

  .profile-danger-row,
  .profile-privacy-actions article {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .profile-danger-row .auth-secondary,
  .profile-privacy-actions .auth-secondary,
  .profile-danger-button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .profile-stat-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-plan-progress span {
    font-size: 7px;
  }

  .profile-preference {
    padding: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-panel.is-active {
    animation: none !important;
  }

  .profile-tab,
  .profile-plan-pill,
  .profile-session-toggle > span,
  .profile-session-toggle > span::after,
  .profile-preference > i,
  .profile-preference > i::after,
  .profile-danger-button {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Meu perfil — correção da dock e orientação das abas móveis
   ========================================================================== */
@media (max-width: 940px) {
  .mobile-dock {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.profile-tabs-shell {
  position: relative;
  min-width: 0;
}

.profile-tabs-hint {
  display: none;
}

@media (max-width: 760px) {
  .profile-tabs-shell::before,
  .profile-tabs-shell::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 5px;
    width: 28px;
    height: 42px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 220ms var(--ease-standard);
  }

  .profile-tabs-shell::before {
    left: 1px;
    border-radius: 13px 0 0 13px;
    background: linear-gradient(90deg, rgba(1, 1, 2, 0.96), rgba(1, 1, 2, 0));
  }

  .profile-tabs-shell::after {
    right: 1px;
    border-radius: 0 13px 13px 0;
    background: linear-gradient(270deg, rgba(1, 1, 2, 0.96), rgba(1, 1, 2, 0));
  }

  .profile-tabs-shell.can-scroll-left::before,
  .profile-tabs-shell.can-scroll-right::after {
    opacity: 1;
  }

  .profile-tabs {
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .profile-tabs-hint {
    max-height: 24px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 7px auto 0;
    padding: 3px 9px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.018);
    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-3px);
    transition:
      max-height 260ms var(--ease-standard),
      margin 260ms var(--ease-standard),
      padding 260ms var(--ease-standard),
      opacity 260ms var(--ease-standard),
      transform 260ms var(--ease-standard);
  }

  .profile-tabs-shell.is-scrollable:not(.has-interacted) .profile-tabs-hint {
    opacity: 1;
    transform: translateY(0);
  }

  .profile-tabs-shell.has-interacted .profile-tabs-hint,
  .profile-tabs-shell:not(.is-scrollable) .profile-tabs-hint {
    max-height: 0;
    margin-top: 0;
    padding-block: 0;
    border-color: transparent;
    opacity: 0;
  }

  .profile-tabs-hint__arrow {
    display: inline-block;
    color: rgba(255, 45, 69, 0.72);
    font-size: 14px;
    font-weight: 400;
    line-height: 0.7;
  }

  .profile-tabs-hint__arrow:first-child {
    animation: profileTabsHintLeft 1.8s ease-in-out infinite;
  }

  .profile-tabs-hint__arrow:last-child {
    animation: profileTabsHintRight 1.8s ease-in-out infinite;
  }
}

@keyframes profileTabsHintLeft {
  0%,
  100% {
    transform: translateX(1px);
    opacity: 0.42;
  }
  50% {
    transform: translateX(-3px);
    opacity: 1;
  }
}

@keyframes profileTabsHintRight {
  0%,
  100% {
    transform: translateX(-1px);
    opacity: 0.42;
  }
  50% {
    transform: translateX(3px);
    opacity: 1;
  }
}

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

  .profile-tabs-hint__arrow {
    animation: none !important;
  }
}

/* ==========================================================================
   Meu perfil — correção estrutural e ações rápidas
   ========================================================================== */
.auth-page,
.auth-page body {
  max-width: 100%;
  overflow-x: clip;
}

body.is-profile-active .auth-main {
  overflow-x: clip;
}

body.is-profile-active .auth-layout,
body.is-profile-active .auth-card,
.profile-dashboard,
.profile-dashboard > *,
.profile-panel,
.profile-form,
.profile-section-card,
.profile-tabs-shell {
  min-width: 0;
  max-width: 100%;
}

body.is-profile-active .auth-layout {
  width: min(calc(100% - 32px), 1180px);
  margin-inline: auto;
}

body.is-profile-active .auth-card {
  width: 100%;
  overflow: clip;
}

.profile-tabs {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.profile-quick-actions {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto clamp(20px, 3vw, 30px);
}

.profile-quick-action {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 42, 65, 0.78);
  border-radius: 13px;
  outline: none;
  background: rgba(2, 2, 3, 0.94);
  color: #fff;
  font: inherit;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: 0.085em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 10px 24px rgba(0, 0, 0, 0.28);
  transition:
    color 180ms var(--ease-standard),
    border-color 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard),
    transform 180ms var(--ease-standard);
}

.profile-quick-action span {
  position: relative;
  z-index: 2;
}

.profile-quick-action::before,
.profile-quick-action::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.profile-quick-action--home::before {
  z-index: 0;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0 26%,
    rgba(255, 255, 255, 0.92) 32%,
    rgba(255, 32, 57, 1) 38%,
    transparent 45% 100%
  );
  opacity: 0.8;
  animation: profileQuickActionOrbit 3.4s linear infinite;
}

.profile-quick-action--home::after {
  z-index: 1;
  inset: 1px;
  border-radius: 11px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 32, 57, 0.12), transparent 68%), #030304;
}

.profile-quick-action--home {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.065),
    0 0 0 1px rgba(255, 32, 57, 0.08),
    0 0 22px rgba(255, 32, 57, 0.13),
    0 12px 26px rgba(0, 0, 0, 0.3);
  animation: profileQuickActionPulse 2.8s ease-in-out infinite;
}

.profile-quick-action--logout {
  border-color: rgba(255, 44, 67, 0.42);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(4, 4, 5, 0.9);
}

.profile-quick-action--logout::after {
  inset: 0;
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.055), transparent 72%);
  opacity: 0;
  transform: translateX(-65%);
  transition:
    opacity 220ms var(--ease-standard),
    transform 520ms var(--ease-standard);
}

.profile-quick-action:hover,
.profile-quick-action:focus-visible {
  border-color: rgba(255, 62, 84, 1);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 32, 57, 0.1),
    0 0 26px rgba(255, 32, 57, 0.15),
    0 14px 28px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.profile-quick-action--logout:hover::after,
.profile-quick-action--logout:focus-visible::after {
  opacity: 1;
  transform: translateX(65%);
}

.profile-quick-action:active {
  transform: scale(0.98);
}

@keyframes profileQuickActionOrbit {
  to {
    transform: rotate(1turn);
  }
}

@keyframes profileQuickActionPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 32, 57, 0));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(255, 32, 57, 0.24));
  }
}

@media (max-width: 760px) {
  body.is-profile-active .auth-layout {
    width: min(calc(100% - 24px), 1180px);
  }

  body.is-profile-active .auth-card {
    padding-inline: 12px;
  }

  .profile-quick-actions {
    width: 100%;
    gap: 10px;
    margin-bottom: 18px;
  }

  .profile-quick-action {
    min-height: 46px;
    padding-inline: 10px;
    border-radius: 12px;
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .profile-quick-action--home::after {
    border-radius: 10px;
  }

  .profile-tabs-shell {
    width: 100%;
    overflow: hidden;
  }

  .profile-tabs {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .profile-panel-heading,
  .profile-form,
  .profile-section-card,
  .profile-stat-grid,
  .profile-overview-grid,
  .profile-security-summary,
  .profile-current-plan,
  .profile-plan-grid,
  .profile-preferences,
  .profile-privacy-actions {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .auth-form__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .auth-field,
  .auth-field input,
  .auth-field select,
  .auth-password {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  body.is-profile-active .auth-layout {
    width: min(calc(100% - 18px), 1180px);
  }

  .profile-quick-actions {
    gap: 7px;
  }

  .profile-quick-action {
    min-height: 44px;
    padding-inline: 7px;
    font-size: 8px;
    letter-spacing: 0.055em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-quick-action--home,
  .profile-quick-action--home::before {
    animation: none !important;
  }

  .profile-quick-action {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Meu perfil — navegação consolidada e ações fixas
   ========================================================================== */
.profile-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.is-profile-active .auth-intro .eyebrow {
  width: min(100%, 390px);
  justify-content: center;
  gap: 13px;
  margin-inline: auto;
}

body.is-profile-active .auth-intro .eyebrow::before,
body.is-profile-active .auth-intro .eyebrow::after {
  content: "";
  width: auto;
  height: 1px;
  flex: 1 1 76px;
  background: linear-gradient(90deg, transparent, var(--red));
  box-shadow: 0 0 8px rgba(255, 32, 57, 0.48);
  transform-origin: center;
  animation: profileEyebrowLineReveal 850ms var(--ease-emphasis) both;
}

body.is-profile-active .auth-intro .eyebrow::after {
  background: linear-gradient(90deg, var(--red), transparent);
}

.profile-security-section {
  margin-top: clamp(26px, 4vw, 38px);
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.profile-security-section .profile-panel-heading--subsection {
  margin-bottom: 16px;
}

.profile-security-section .profile-panel-heading--subsection h3 {
  font-size: clamp(25px, 4vw, 36px);
}

.profile-security-section--activity .profile-activity-card,
.profile-security-section--preferences .profile-preferences,
.profile-security-section--preferences .profile-privacy-actions {
  width: 100%;
  max-width: 100%;
}

.profile-quick-actions {
  position: fixed;
  z-index: 245;
  left: 50%;
  bottom: 18px;
  width: min(calc(100% - 32px), 620px);
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 32, 57, 0.24);
  border-radius: 18px;
  background: rgba(3, 3, 4, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 -10px 36px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(255, 32, 57, 0.07);
  backdrop-filter: blur(18px) saturate(1.08);
  transform: translateX(-50%);
  transition:
    opacity 180ms var(--ease-standard),
    transform 220ms var(--ease-standard);
}

.profile-quick-actions[hidden] {
  display: none !important;
}

body.is-profile-active .auth-main {
  padding-bottom: clamp(132px, 12vw, 160px);
}

body.menu-open .profile-quick-actions {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
}

@keyframes profileEyebrowLineReveal {
  from {
    opacity: 0;
    transform: scaleX(0.18);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 940px) {
  .profile-quick-actions {
    left: 0;
    bottom: 0;
    width: 100%;
    gap: 8px;
    padding: 8px 10px max(8px, env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;
    background: rgba(3, 3, 3, 0.985);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.045),
      0 -18px 42px rgba(0, 0, 0, 0.68);
    transform: none;
  }

  body.menu-open .profile-quick-actions {
    transform: translateY(100%);
  }

  .profile-quick-action {
    min-height: 52px;
    border-radius: 13px;
  }

  .profile-quick-action--home::after {
    border-radius: 11px;
  }

  body.is-profile-active .auth-main {
    padding-bottom: calc(118px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 640px) {
  body.is-profile-active .auth-intro .eyebrow {
    width: min(100%, 310px);
    gap: 10px;
  }

  body.is-profile-active .auth-intro .eyebrow::before,
  body.is-profile-active .auth-intro .eyebrow::after {
    flex-basis: 48px;
  }

  .profile-security-section {
    margin-top: 24px;
    padding-top: 20px;
  }

  .profile-security-section .profile-panel-heading--subsection h3 {
    font-size: clamp(24px, 8vw, 31px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-profile-active .auth-intro .eyebrow::before,
  body.is-profile-active .auth-intro .eyebrow::after {
    animation: none !important;
  }

  .profile-quick-actions {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Meu perfil — cabeçalho compacto e Segurança em acordeão
   ========================================================================== */
body.is-profile-active .auth-main {
  padding-top: 10px;
}

body.is-profile-active .auth-intro {
  margin-top: 0;
  margin-bottom: clamp(14px, 2vw, 22px);
}

body.is-profile-active .auth-intro .eyebrow {
  margin-top: 0;
}

.profile-security-accordion {
  display: grid;
  gap: 10px;
}

.profile-security-disclosure {
  position: relative;
  overflow: clip;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background:
    linear-gradient(130deg, rgba(255, 32, 57, 0.025), transparent 42%), rgba(2, 2, 3, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    border-color 220ms var(--ease-standard),
    background 220ms var(--ease-standard),
    box-shadow 220ms var(--ease-standard);
}

.profile-security-disclosure[open] {
  border-color: rgba(255, 32, 57, 0.32);
  background:
    linear-gradient(130deg, rgba(255, 32, 57, 0.07), transparent 42%), rgba(3, 3, 4, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 16px 34px rgba(0, 0, 0, 0.22);
}

.profile-security-disclosure > summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.profile-security-disclosure > summary::-webkit-details-marker {
  display: none;
}

.profile-security-disclosure > summary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: -4px;
  border-radius: 16px;
}

.profile-security-disclosure__number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    color 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard),
    background 220ms var(--ease-standard),
    box-shadow 220ms var(--ease-standard);
}

.profile-security-disclosure[open] .profile-security-disclosure__number {
  border-color: rgba(255, 32, 57, 0.42);
  background: rgba(111, 0, 17, 0.42);
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 32, 57, 0.1);
}

.profile-security-disclosure__title {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.profile-security-disclosure__title strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.profile-security-disclosure__title small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9.5px;
  line-height: 1.5;
}

.profile-security-disclosure__chevron {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.018);
  transition:
    border-color 220ms var(--ease-standard),
    background 220ms var(--ease-standard),
    transform 300ms var(--ease-emphasis);
}

.profile-security-disclosure__chevron::before,
.profile-security-disclosure__chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
}

.profile-security-disclosure__chevron::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 180ms var(--ease-standard);
}

.profile-security-disclosure[open] .profile-security-disclosure__chevron {
  border-color: rgba(255, 32, 57, 0.38);
  background: rgba(255, 32, 57, 0.075);
  transform: rotate(180deg);
}

.profile-security-disclosure[open] .profile-security-disclosure__chevron::after {
  opacity: 0;
}

.profile-security-disclosure__content {
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  animation: profileSecurityDisclosureIn 360ms var(--ease-emphasis) both;
}

.profile-security-disclosure__content > :first-child {
  margin-top: 16px;
}

.profile-security-disclosure__content .profile-security-summary,
.profile-security-disclosure__content .profile-form--security {
  margin-bottom: 10px;
}

.profile-security-disclosure__content .profile-form--security:last-child,
.profile-security-disclosure__content .profile-activity-card,
.profile-security-disclosure__content .profile-privacy-actions:last-child {
  margin-bottom: 0;
}

@keyframes profileSecurityDisclosureIn {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  body.is-profile-active .auth-main {
    padding-top: 6px;
  }
}

@media (max-width: 640px) {
  body.is-profile-active .auth-intro {
    margin-bottom: 14px;
  }

  .profile-security-accordion {
    gap: 8px;
  }

  .profile-security-disclosure {
    border-radius: 15px;
  }

  .profile-security-disclosure > summary {
    min-height: 70px;
    grid-template-columns: 30px minmax(0, 1fr) 26px;
    gap: 10px;
    padding: 12px;
  }

  .profile-security-disclosure__number {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 8px;
  }

  .profile-security-disclosure__title strong {
    font-size: 11px;
  }

  .profile-security-disclosure__title small {
    font-size: 8.5px;
    line-height: 1.4;
  }

  .profile-security-disclosure__chevron {
    width: 26px;
    height: 26px;
  }

  .profile-security-disclosure__content {
    padding: 0 10px 10px;
  }

  .profile-security-disclosure__content > :first-child {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-security-disclosure,
  .profile-security-disclosure__number,
  .profile-security-disclosure__chevron,
  .profile-security-disclosure__chevron::after {
    transition-duration: 0.01ms !important;
  }

  .profile-security-disclosure__content {
    animation: none !important;
  }
}

/* ==========================================================================
   Cabeçalho desktop — acesso ao perfil e logo sem fundo
   ========================================================================== */
.logo img {
  mix-blend-mode: normal;
  background: transparent;
}

.header-profile-button {
  display: none;
}

@media (min-width: 941px) {
  .header-profile-button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    background: rgba(2, 2, 3, 0.94);
    color: rgba(255, 255, 255, 0.86);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.045),
      0 6px 16px rgba(0, 0, 0, 0.25);
    transition:
      color 180ms var(--ease-standard),
      border-color 180ms var(--ease-standard),
      background 180ms var(--ease-standard),
      box-shadow 180ms var(--ease-standard),
      transform 180ms var(--ease-standard);
  }

  .header-profile-button img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
    opacity: 0.9;
    transition:
      opacity 180ms var(--ease-standard),
      transform 180ms var(--ease-standard);
  }

  .header-profile-button:hover,
  .header-profile-button:focus-visible,
  .header-profile-button[aria-current="page"] {
    color: #fff;
    border-color: rgba(255, 32, 57, 0.78);
    background: rgba(255, 32, 57, 0.045);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.065),
      0 0 0 1px rgba(255, 32, 57, 0.055),
      0 8px 18px rgba(0, 0, 0, 0.29);
    transform: translateY(-1px);
  }

  .header-profile-button:hover img,
  .header-profile-button:focus-visible img,
  .header-profile-button[aria-current="page"] img {
    opacity: 1;
    transform: scale(1.04);
  }

  .header-profile-button:active {
    transform: scale(0.975);
  }
}

@media (min-width: 941px) and (max-width: 1210px) {
  .header-profile-button {
    width: 38px;
    min-width: 38px;
    padding: 0;
  }

  .header-profile-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-profile-button,
  .header-profile-button img {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Meu perfil no desktop — ação contextual no cabeçalho
   ========================================================================== */
@media (min-width: 941px) {
  /* A dock de ações pertence somente à experiência móvel. */
  .profile-quick-actions {
    display: none !important;
  }

  body.is-profile-active .auth-main {
    padding-bottom: clamp(48px, 5vw, 72px);
  }

  /* O botão fica imediatamente à direita de Encontro presencial pela ordem do HTML. */
  .header-profile-button.is-logout-mode {
    border-color: rgba(255, 32, 57, 0.76);
    color: #fff;
    background: rgba(2, 2, 3, 0.96);
  }

  .header-profile-button.is-logout-mode:hover,
  .header-profile-button.is-logout-mode:focus-visible {
    border-color: rgb(255, 32, 57);
    background: rgba(255, 32, 57, 0.055);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 0 0 1px rgba(255, 32, 57, 0.08),
      0 8px 18px rgba(0, 0, 0, 0.3);
  }
}

/* ==========================================================================
   Carteira de créditos — conta gratuita e navegação móvel
   ========================================================================== */
.profile-credit-wallet {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: stretch;
  gap: 7px;
  margin-top: 11px;
}

.profile-credit-wallet__balance,
.profile-credit-wallet__buy {
  min-height: 40px;
  border: 1px solid rgba(255, 41, 65, 0.28);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.profile-credit-wallet__balance {
  min-width: 126px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
}

.profile-credit-wallet__balance svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: rgba(255, 32, 57, 0.1);
  stroke: #ff3d56;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-credit-wallet__balance span {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.profile-credit-wallet__balance small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile-credit-wallet__balance strong {
  color: #fff;
  font-size: 11px;
  font-weight: 620;
  white-space: nowrap;
}

.profile-credit-wallet__balance b {
  color: #ff435a;
  font-size: 13px;
}

.profile-credit-wallet__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard),
    transform 180ms var(--ease-standard);
}

.profile-credit-wallet__buy:hover,
.profile-credit-wallet__buy:focus-visible {
  border-color: rgba(255, 41, 65, 0.72);
  background: rgba(255, 32, 57, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 18px rgba(255, 32, 57, 0.12);
  transform: translateY(-1px);
}

.credit-store[hidden] {
  display: none !important;
}

.credit-store {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) 14px max(16px, env(safe-area-inset-bottom));
}

.credit-store__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.credit-store__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(720px, calc(100dvh - 32px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 35, 61, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 0%, rgba(142, 0, 23, 0.2), transparent 18rem),
    linear-gradient(145deg, rgba(20, 5, 8, 0.985), rgba(3, 3, 4, 0.995));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.credit-store__dialog h2 {
  margin: 7px 0 0;
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1;
}

.credit-store__dialog > p:not(.credit-store__note) {
  max-width: 470px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.65;
}

.credit-store__close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.54);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.credit-store__balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.3);
}

.credit-store__balance span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credit-store__balance strong {
  color: #fff;
  font-size: 13px;
}

.credit-store__balance b {
  color: #ff4058;
  font-size: 17px;
}

.credit-store__packs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.credit-store__packs button {
  min-width: 0;
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 15px 12px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    transform 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard);
}

.credit-store__packs button:nth-child(2) {
  border-color: rgba(255, 41, 65, 0.38);
  background: rgba(86, 0, 14, 0.22);
}

.credit-store__packs button:hover,
.credit-store__packs button:focus-visible,
.credit-store__packs button.is-confirmed {
  border-color: rgba(255, 41, 65, 0.72);
  background: rgba(255, 32, 57, 0.085);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.credit-store__packs span {
  color: #ff5368;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credit-store__packs strong {
  font-size: 15px;
  font-weight: 650;
}

.credit-store__packs small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  line-height: 1.45;
}

.credit-store__note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 8.5px;
  line-height: 1.55;
}

body.credit-store-open {
  overflow: hidden;
}

.mobile-dock__credits[hidden] {
  display: none !important;
}

@media (max-width: 940px) {
  .mobile-dock__credits {
    position: absolute;
    left: 50%;
    bottom: 3px;
    min-width: 25px;
    height: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0 4px;
    border: 1px solid rgba(255, 47, 71, 0.34);
    border-radius: 999px;
    background: #100206;
    color: rgba(255, 255, 255, 0.76);
    font-size: 6.5px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(255, 32, 57, 0.08);
  }

  .mobile-dock__credits b {
    color: #fff;
    font-size: 7px;
  }

  .mobile-dock__credits span {
    color: #ff5368;
    font-size: 6px;
    text-transform: uppercase;
  }

  body.has-visible-credits .mobile-dock__link[href="videos.html"] {
    gap: 1px;
    padding-top: 4px;
    padding-bottom: 13px;
  }

  body.has-visible-credits .mobile-dock__link[href="videos.html"] svg {
    width: 20px;
    height: 20px;
  }
}

.locked-video-card {
  width: 100%;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.locked-video-card.is-credit-unlocked {
  border-color: rgba(255, 49, 73, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 49, 73, 0.055);
}

.locked-video-card.is-credit-unlocked .locked-video-thumb img {
  filter: blur(3px) brightness(0.72) saturate(0.9);
  transform: scale(1.04);
}

.locked-video-card.is-credit-unlocked .locked-video-overlay i::before {
  top: 18px;
  left: 14px;
  width: 24px;
  height: 12px;
  border: 0;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  border-radius: 0;
  transform: rotate(-45deg);
}

.locked-video-card.is-credit-unlocked .locked-video-overlay i::after {
  display: none;
}

.locked-video-card.is-credit-unlocked .locked-video-overlay b {
  border-color: rgba(255, 60, 82, 0.68);
  background: rgba(112, 0, 18, 0.72);
}

.locked-video-card.is-coming-soon {
  cursor: default;
  opacity: 0.62;
}

.locked-video-card.is-coming-soon .locked-video-overlay b {
  background: rgba(30, 30, 34, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
}

.video-player-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-player-modal[hidden] {
  display: none;
}

.video-player-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(6, 4, 8, 0.86);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.video-player-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 420px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #0c0a0e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.video-player-modal__title {
  margin: 0;
  padding-right: 32px;
  font-size: 15px;
  color: #fff;
}

.video-player-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.video-player-modal__video {
  width: 100%;
  max-height: 78vh;
  border-radius: 10px;
  background: #000;
}

body.video-player-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .profile-credit-wallet {
    width: 100%;
    gap: 6px;
  }

  .profile-credit-wallet__balance {
    min-width: 0;
    flex: 1 1 auto;
  }

  .profile-credit-wallet__buy {
    flex: 0 0 auto;
    padding-inline: 10px;
    font-size: 7.5px;
  }

  .credit-store__dialog {
    padding: 22px 15px 17px;
    border-radius: 20px;
  }

  .credit-store__packs {
    grid-template-columns: 1fr;
  }

  .credit-store__packs button {
    min-height: 86px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    text-align: left;
  }

  .credit-store__packs button small {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-credit-wallet__buy,
  .credit-store__packs button {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Créditos — refinamento da barra, página de planos e checkout seguro
   ========================================================================== */
.profile-credit-wallet__buy {
  text-decoration: none;
}

.credit-store__packs a {
  min-width: 0;
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 15px 12px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  text-align: left;
  text-decoration: none;
  transition:
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    transform 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard);
}

.credit-store__packs a:nth-child(2) {
  border-color: rgba(255, 41, 65, 0.38);
  background: rgba(86, 0, 14, 0.22);
}

.credit-store__packs a:hover,
.credit-store__packs a:focus-visible {
  border-color: rgba(255, 41, 65, 0.72);
  background: rgba(255, 32, 57, 0.085);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.credit-store__packs a span {
  color: #ff5368;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credit-store__packs a strong {
  font-size: 15px;
  font-weight: 650;
}

.credit-store__packs a small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  line-height: 1.45;
}

@media (max-width: 940px) {
  .mobile-dock__credits {
    min-width: 31px;
    height: 12px;
    gap: 3px;
    padding-inline: 6px;
  }

  .mobile-dock__credits b {
    font-size: 7.2px;
  }

  .mobile-dock__credits span {
    font-size: 6.4px;
  }

  .mobile-dock__link[href="modelos.html"] svg {
    fill: currentColor;
    stroke: none;
  }
}

.credit-plans {
  position: relative;
  isolation: isolate;
  margin: clamp(52px, 8vw, 92px) 0 clamp(48px, 7vw, 82px);
  padding: clamp(26px, 4.5vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 39, 63, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(148, 0, 25, 0.22), transparent 25rem),
    linear-gradient(145deg, rgba(17, 4, 7, 0.95), rgba(3, 3, 4, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 30px 70px rgba(0, 0, 0, 0.3);
}

.credit-plans::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.credit-plans__intro {
  max-width: 700px;
}

.credit-plans__intro h2 {
  margin: 8px 0 0;
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(31px, 5vw, 58px);
  line-height: 1.02;
}

.credit-plans__intro h2 span {
  color: #ff354f;
  font-style: italic;
}

.credit-plans__intro p {
  max-width: 590px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.7;
}

.credit-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.credit-plan-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 220ms var(--ease-emphasis),
    border-color 220ms var(--ease-emphasis),
    background 220ms var(--ease-emphasis),
    box-shadow 220ms var(--ease-emphasis);
}

.credit-plan-card:hover,
.credit-plan-card:focus-visible {
  border-color: rgba(255, 43, 66, 0.55);
  background: rgba(75, 0, 13, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 34px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.credit-plan-card--featured {
  border-color: rgba(255, 43, 66, 0.44);
  background: linear-gradient(145deg, rgba(102, 0, 18, 0.32), rgba(0, 0, 0, 0.4));
}

.credit-plan-card em {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 52, 75, 0.42);
  border-radius: 999px;
  color: #ff6073;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.credit-plan-card > span {
  color: rgba(255, 255, 255, 0.47);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credit-plan-card > strong {
  margin-top: 7px;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 55px);
  line-height: 1;
}

.credit-plan-card > small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.credit-plan-card > b {
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 49, 72, 0.58);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credit-plans__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.credit-plans__trust span::before {
  content: "✓";
  margin-right: 6px;
  color: #ff3c55;
}

/* Checkout */
.checkout-page {
  min-height: 100vh;
  padding: clamp(36px, 6vw, 78px) 0 calc(100px + env(safe-area-inset-bottom));
  overflow-x: clip;
  background:
    radial-gradient(circle at 88% 5%, rgba(143, 0, 24, 0.2), transparent 30rem),
    radial-gradient(circle at 3% 45%, rgba(72, 0, 13, 0.12), transparent 26rem), #030304;
}

.checkout-shell {
  display: grid;
  gap: clamp(26px, 4vw, 42px);
}

.checkout-intro {
  max-width: 850px;
}

.checkout-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.checkout-intro h1 {
  margin: 8px 0 0;
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
}

.checkout-intro h1 em {
  color: #ff304b;
  font-weight: inherit;
}

.checkout-intro > p {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 13px;
  line-height: 1.75;
}

.checkout-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.checkout-trust-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  font-weight: 600;
}

.checkout-trust-row svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #ff435a;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  align-items: start;
  gap: 14px;
}

.checkout-order,
.checkout-payment {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(6, 6, 7, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 28px 65px rgba(0, 0, 0, 0.28);
}

.checkout-order {
  position: sticky;
  top: calc(var(--header-height, 78px) + 16px);
  padding: clamp(20px, 3vw, 28px);
}

.checkout-order__heading,
.checkout-payment__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.checkout-order__heading span,
.checkout-payment__heading span:not(.checkout-payment__secure) {
  color: #ff465e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-order__heading strong {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}

.checkout-packages {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.checkout-packages button {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2px 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms var(--ease-standard),
    background 180ms var(--ease-standard),
    box-shadow 180ms var(--ease-standard),
    transform 180ms var(--ease-standard);
}

.checkout-packages button:hover,
.checkout-packages button:focus-visible,
.checkout-packages button.is-selected {
  border-color: rgba(255, 44, 68, 0.55);
  background: rgba(88, 0, 16, 0.25);
  box-shadow: inset 0 0 18px rgba(255, 32, 57, 0.04);
}

.checkout-packages button.is-selected {
  transform: translateX(3px);
}

.checkout-packages span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-packages strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.checkout-packages small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 600;
}

.checkout-summary {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.checkout-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.checkout-summary strong {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.checkout-summary__total {
  margin-top: 4px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px !important;
}

.checkout-summary__total strong {
  color: #fff;
  font-size: 17px;
}

.checkout-order__note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 8.5px;
  line-height: 1.55;
}

.checkout-payment {
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
}

.checkout-payment__heading h2 {
  margin: 5px 0 0;
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(25px, 3.5vw, 38px);
}

.checkout-payment__secure {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(63, 173, 102, 0.28);
  border-radius: 999px;
  background: rgba(39, 120, 70, 0.1);
  color: #9ad9ac;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-account-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 9px;
}

.checkout-account-context span {
  color: rgba(255, 255, 255, 0.38);
}

.checkout-account-context strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#paymentBrick_container {
  margin-top: 18px;
  min-height: 250px;
}

.checkout-brick-loading {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  margin-top: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.checkout-brick-loading[hidden] {
  display: none;
}

.checkout-brick-loading span {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: #ff344f;
  border-radius: 50%;
  animation: checkoutSpin 0.8s linear infinite;
}

.checkout-brick-loading p {
  margin: 0;
}

.checkout-setup {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 46, 70, 0.23);
  border-radius: 16px;
  background: rgba(74, 0, 13, 0.16);
}

.checkout-setup strong {
  color: #fff;
  font-size: 13px;
}

.checkout-setup p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.6;
}

.checkout-setup code {
  display: block;
  margin-top: 13px;
  padding: 11px;
  border-radius: 10px;
  background: #020203;
  color: #ff7182;
  font-size: 9px;
  line-height: 1.7;
}

.checkout-result {
  margin-top: 16px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  animation: cardEnter 0.4s var(--ease-emphasis) both;
}

.checkout-result strong {
  display: flex;
  align-items: center;
  gap: 9px;
}

.checkout-result__spinner {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: checkoutSpin 0.8s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .checkout-result {
    animation: none;
  }
  .checkout-result__spinner {
    animation: none;
  }
}

.checkout-result strong {
  color: #fff;
  font-size: 12px;
}

.checkout-result p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  line-height: 1.55;
}

.checkout-result--success {
  border-color: rgba(61, 187, 105, 0.32);
  background: rgba(26, 105, 57, 0.12);
}
.checkout-result--pending {
  border-color: rgba(233, 177, 59, 0.3);
  background: rgba(114, 75, 0, 0.11);
}
.checkout-result--error {
  border-color: rgba(255, 50, 73, 0.34);
  background: rgba(111, 0, 18, 0.15);
}
.checkout-result--info {
  border-color: rgba(119, 150, 255, 0.25);
  background: rgba(45, 60, 115, 0.11);
}

.checkout-pix {
  margin-top: 16px;
  padding: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  border: 1px solid rgba(233, 177, 59, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(120% 140% at 50% -10%, rgba(233, 177, 59, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.015);
  animation: cardEnter 0.5s var(--ease-emphasis) both;
}

.checkout-pix__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border: 1px solid rgba(233, 177, 59, 0.32);
  border-radius: 999px;
  background: rgba(114, 75, 0, 0.16);
  color: #f0c878;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-pix__status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f0c878;
  box-shadow: 0 0 9px rgba(240, 200, 120, 0.85);
  animation: livePulse 1.4s ease-in-out infinite;
}

.checkout-pix__qr-frame {
  position: relative;
  width: 190px;
  max-width: 68vw;
  aspect-ratio: 1;
  padding: 14px;
  border-radius: 18px;
  animation:
    cardEnter 0.5s var(--ease-emphasis) 0.08s both,
    checkoutPixGlow 2.6s ease-in-out 0.6s infinite;
}

.checkout-pix__qr-frame::before,
.checkout-pix__qr-frame::after,
.checkout-pix__qr-frame span,
.checkout-pix__qr-frame b {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(233, 177, 59, 0.75);
}
.checkout-pix__qr-frame::before {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 8px;
}
.checkout-pix__qr-frame::after {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: 8px;
}
.checkout-pix__qr-frame span {
  bottom: 0;
  left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-left-radius: 8px;
}
.checkout-pix__qr-frame b {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 8px;
}

.checkout-pix__qr {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.checkout-pix__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8.5px;
}

.checkout-pix__code {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: stretch;
  animation: cardEnter 0.5s var(--ease-emphasis) 0.16s both;
}

.checkout-pix__code code {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #020203;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.checkout-pix__copy {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border: 1px solid rgba(255, 59, 79, 0.9);
  border-radius: 12px;
  background: linear-gradient(180deg, #8b0d1d, #4f0008);
  box-shadow:
    0 0 9px rgba(255, 32, 57, 0.4),
    inset 0 1px rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.22s var(--ease),
    filter 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.checkout-pix__copy::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-160%) skewX(-18deg);
  pointer-events: none;
}

.checkout-pix__copy:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow:
    0 0 14px rgba(255, 32, 57, 0.65),
    0 8px 22px rgba(255, 32, 57, 0.24);
}

.checkout-pix__copy:hover::after {
  animation: shine 0.9s var(--ease);
}

.checkout-pix__copy:active {
  transform: translateY(0) scale(0.98);
}

.checkout-pix__copy svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.checkout-pix__copy .checkout-pix__check {
  display: none;
}

.checkout-pix__copy.is-copied {
  border-color: rgba(98, 255, 137, 0.55);
  background: linear-gradient(180deg, #1d6a34, #0d3a1c);
  box-shadow: 0 0 12px rgba(98, 255, 137, 0.35);
  animation: checkoutPixCopiedPop 0.32s var(--ease-emphasis);
}

.checkout-pix__copy.is-copied .checkout-pix__copy-icon {
  display: none;
}

.checkout-pix__copy.is-copied .checkout-pix__check {
  display: block;
}

@keyframes checkoutPixGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(233, 177, 59, 0);
  }
  50% {
    box-shadow: 0 0 26px rgba(233, 177, 59, 0.28);
  }
}

@keyframes checkoutPixCopiedPop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 420px) {
  .checkout-pix__code {
    flex-direction: column;
  }

  .checkout-pix__copy {
    min-height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-pix,
  .checkout-pix__qr-frame,
  .checkout-pix__status-dot,
  .checkout-pix__code,
  .checkout-pix__copy.is-copied {
    animation: none;
  }
}

.checkout-payment__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 15px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.33);
  font-size: 8px;
}

.checkout-payment__footer strong {
  color: rgba(255, 255, 255, 0.66);
}

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

.checkout-confidence article {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
}

.checkout-confidence strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
}

.checkout-confidence p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8.5px;
  line-height: 1.55;
}

@keyframes checkoutSpin {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-order {
    position: static;
  }
}

@media (max-width: 720px) {
  .credit-plans {
    margin-block: 42px 54px;
    padding: 22px 13px;
    border-radius: 21px;
  }

  .credit-plans__grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .credit-plan-card {
    min-height: 112px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-content: center;
    padding: 16px;
  }

  .credit-plan-card > strong {
    grid-row: 1 / span 2;
    grid-column: 2;
    align-self: center;
    font-size: 39px;
  }

  .credit-plan-card > small,
  .credit-plan-card > b {
    grid-column: 1;
  }

  .credit-plan-card > b {
    width: fit-content;
    margin-top: 10px;
  }

  .credit-plan-card em {
    top: 10px;
    right: 75px;
  }

  .checkout-page {
    padding-top: 23px;
  }

  .checkout-intro h1 {
    font-size: clamp(39px, 13vw, 58px);
  }

  .checkout-intro > p {
    font-size: 11px;
  }

  .checkout-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .checkout-trust-row span {
    min-width: 0;
    min-height: 51px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 7px 5px;
    border-radius: 13px;
    font-size: 7px;
    text-align: center;
  }

  .checkout-order,
  .checkout-payment {
    border-radius: 19px;
  }

  .checkout-payment__heading {
    align-items: flex-start;
  }

  .checkout-account-context {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .checkout-confidence {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .credit-store__packs a {
    min-height: 86px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .credit-store__packs a small {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-brick-loading span {
    animation: none;
  }

  .credit-plan-card,
  .checkout-packages button,
  .credit-store__packs a {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Planos por modalidade, créditos proporcionais e confirmação de idade
   ========================================================================== */
.plans-commerce {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.plans-commerce__tabs {
  position: sticky;
  z-index: 8;
  top: calc(var(--header-height, 76px) + 10px);
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0 auto;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(3, 3, 4, 0.94);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.plans-commerce__tabs button {
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  font: 650 11px/1.2 var(--font-sans, "Manrope", sans-serif);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.plans-commerce__tabs button.is-active {
  border-color: rgba(255, 40, 65, 0.68);
  background: linear-gradient(135deg, rgba(112, 0, 18, 0.58), rgba(42, 0, 8, 0.42));
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 22px rgba(255, 32, 57, 0.12);
}

.plans-commerce__tabs button:active {
  transform: scale(0.98);
}

[data-plans-panel][hidden] {
  display: none !important;
}

.plans-commerce .credit-plans {
  margin-block: 0;
}

.plan-card .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.credit-plan-card > strong {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.checkout-intro__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.checkout-intro__top .profile-kicker {
  margin-left: auto;
  text-align: right;
}

.checkout-trust-row i {
  font: inherit;
  font-style: normal;
}

.checkout-packages--single {
  display: block;
}

.checkout-plan-selected {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(255, 41, 65, 0.35);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(88, 0, 14, 0.24), rgba(255, 255, 255, 0.02));
}

.checkout-plan-selected span {
  color: #ff5368;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.checkout-plan-selected strong {
  color: #fff;
  font: 600 clamp(22px, 3vw, 34px)/1.05 var(--font-serif, "Playfair Display", serif);
}

.checkout-plan-selected small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

@media (max-width: 940px) {
  .mobile-dock__credits {
    min-width: 48px;
    height: 14px;
    padding-inline: 8px;
    border-color: rgba(255, 47, 71, 0.46);
    font-variant-numeric: tabular-nums;
    box-shadow: 0 0 10px rgba(255, 32, 57, 0.12);
  }

  .mobile-dock__credits b {
    max-width: 36px;
    overflow: hidden;
    color: #fff;
    font-size: 7.6px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dock__credits span {
    font-size: 6.8px;
  }

  .plans-commerce__tabs {
    top: calc(var(--mobile-header-height, 78px) + 8px);
    width: 100%;
    border-radius: 15px;
  }

  .plans-commerce__tabs button {
    min-height: 46px;
    padding-inline: 8px;
    font-size: 9.5px;
  }

  .checkout-intro__top {
    gap: 10px;
    margin-bottom: 14px;
  }

  .checkout-intro__top .profile-kicker {
    flex: 0 0 auto;
    font-size: 8px;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .mobile-dock__credits {
    min-width: 44px;
    padding-inline: 6px;
  }

  .mobile-dock__credits b {
    font-size: 7px;
  }

  .checkout-intro__top .checkout-back {
    font-size: 8px;
  }
}

body.age-gate-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}

.age-gate {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  place-items: center;
  /* Sem isso, em viewports baixos (celular com barra de endereço visível,
     landscape etc.) o painel fica mais alto que a tela — como o body trava
     o scroll enquanto o gate está aberto, o botão "Sim, tenho 18+" acaba
     inacessível: nem toque nem teclado alcançam, sem nenhuma forma de rolar. */
  overflow-y: auto;
  padding: max(18px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
    max(18px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  opacity: 1;
  transition: opacity 240ms ease;
}

.age-gate.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(118, 0, 18, 0.25), transparent 34rem),
    rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(18px);
}

.age-gate__panel {
  position: relative;
  width: min(430px, 100%);
  padding: clamp(28px, 6vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255, 42, 66, 0.38);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(38, 3, 9, 0.98), rgba(5, 5, 6, 0.99) 62%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
  animation: ageGateEnter 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.age-gate__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff2947, transparent);
  box-shadow: 0 0 18px rgba(255, 32, 57, 0.8);
}

.age-gate__eyebrow {
  color: #ff5368;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.age-gate h2 {
  margin: 13px 0 9px;
  color: #fff;
  font: 600 clamp(29px, 7vw, 42px)/1.08 var(--font-serif, "Playfair Display", serif);
}

.age-gate p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.65;
}

.age-gate__actions {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.8fr);
  gap: 10px;
  margin-top: 24px;
}

.age-gate__actions button {
  min-height: 50px;
  border-radius: 13px;
  color: #fff;
  font: 650 11px/1 var(--font-sans, "Manrope", sans-serif);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.age-gate__yes {
  border: 1px solid #ff2947;
  background: linear-gradient(135deg, #8a0016, #52000d);
  box-shadow:
    0 12px 28px rgba(117, 0, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.age-gate__no {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
}

.age-gate__actions button:hover,
.age-gate__actions button:focus-visible {
  transform: translateY(-2px);
}

.age-gate__yes:hover,
.age-gate__yes:focus-visible {
  box-shadow:
    0 0 0 1px rgba(255, 41, 71, 0.28),
    0 16px 34px rgba(117, 0, 18, 0.4);
}

@keyframes ageGateEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 420px) {
  .age-gate__panel {
    padding: 28px 18px 20px;
    border-radius: 20px;
  }

  .age-gate__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .age-gate__panel,
  .age-gate,
  .plans-commerce__tabs button {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Revisão mobile-first das últimas entregas
   Planos, créditos, checkout e confirmação de idade.
   ========================================================================== */
.plans-commerce__mobile-note {
  display: none;
}

@media (max-width: 940px) {
  /* O saldo continua dentro da altura existente da dock, mas agora é legível. */
  .mobile-dock__credits {
    bottom: 2px;
    min-width: 58px;
    max-width: 66px;
    height: 16px;
    gap: 3px;
    padding-inline: 8px;
    border-color: rgba(255, 47, 71, 0.52);
    background: rgba(20, 1, 6, 0.98);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 12px rgba(255, 32, 57, 0.14);
  }

  .mobile-dock__credits b {
    max-width: 48px;
    color: #fff;
    font-size: 8.4px;
    font-variant-numeric: tabular-nums;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dock__credits span {
    font-size: 7.2px;
  }

  body.has-visible-credits .mobile-dock__link[href="videos.html"] {
    padding-top: 3px;
    padding-bottom: 15px;
  }

  /* Carteira no perfil: alvos de toque confortáveis sem ocupar outra linha. */
  .profile-credit-wallet {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
  }

  .profile-credit-wallet__balance,
  .profile-credit-wallet__buy {
    min-height: 44px;
  }

  .profile-credit-wallet__buy {
    padding-inline: 13px;
    font-size: 8px;
    white-space: nowrap;
  }

  /* Abas de Planos sempre acessíveis abaixo do cabeçalho móvel. */
  .plans-commerce {
    gap: 17px;
  }

  .plans-commerce__tabs {
    top: calc(var(--mobile-header) + 6px);
    width: 100%;
    gap: 4px;
    padding: 4px;
    border-radius: 15px;
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .plans-commerce__tabs button {
    min-height: 48px;
    padding: 9px 7px;
    border-radius: 11px;
    font-size: 9.5px;
    line-height: 1.15;
  }

  .plans-commerce__mobile-note {
    display: block;
    margin: -8px 4px 1px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 8.5px;
    line-height: 1.45;
    text-align: center;
  }

  [data-plans-panel] {
    min-width: 0;
  }

  /* Assinaturas permanecem deslizáveis, mas deixam de ocupar quase uma tela inteira. */
  .plans-grid {
    gap: 10px;
    padding-bottom: 11px;
  }

  .plans-grid .plan-card,
  .plans-grid .plan-card.featured {
    flex-basis: min(84vw, 350px);
    min-height: 420px;
    padding: 47px 19px 20px;
    border-radius: 20px;
  }

  .plan-card h2 {
    font-size: clamp(27px, 8vw, 35px);
  }

  .plan-card .btn-primary {
    min-height: 48px;
    width: 100%;
  }

  /* Créditos avulsos: cartões compactos e inteiramente legíveis. */
  .plans-commerce .credit-plans {
    padding: 19px 12px 15px;
    border-radius: 20px;
  }

  .credit-plans__intro h2 {
    font-size: clamp(29px, 9.5vw, 39px);
    line-height: 1.04;
  }

  .credit-plans__intro p {
    margin-top: 10px;
    font-size: 10.5px;
    line-height: 1.6;
  }

  .credit-plans__grid {
    gap: 8px;
    margin-top: 17px;
  }

  .credit-plan-card {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 5px 12px;
    padding: 15px;
    border-radius: 15px;
  }

  .credit-plan-card > span {
    grid-column: 1;
    grid-row: 1;
  }

  .credit-plan-card > small {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 12px;
  }

  .credit-plan-card > strong {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 2px;
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.08;
  }

  .credit-plan-card > b {
    grid-column: 1 / -1;
    grid-row: 3;
    width: fit-content;
    margin-top: 5px;
  }

  .credit-plan-card em {
    top: 10px;
    right: 10px;
  }

  .credit-plan-card--featured > span {
    padding-right: 82px;
  }

  .credit-plans__trust {
    gap: 7px 11px;
    margin-top: 14px;
    font-size: 7.5px;
    line-height: 1.45;
  }

  /* Checkout: leitura e toque antes de densidade visual. */
  .checkout-page {
    padding: 18px 0 calc(var(--mobile-dock) + 28px + env(safe-area-inset-bottom));
  }

  .checkout-shell {
    gap: 19px;
  }

  .checkout-intro__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
  }

  .checkout-intro__top .checkout-back {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    font-size: 8.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .checkout-intro__top .profile-kicker {
    justify-self: end;
    margin: 0;
    font-size: 7.5px;
    white-space: nowrap;
  }

  .checkout-intro h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1;
  }

  .checkout-intro > p {
    margin-top: 12px;
    font-size: 10.5px;
    line-height: 1.65;
  }

  .checkout-trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 15px;
  }

  .checkout-trust-row span {
    min-width: 0;
    min-height: 45px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 7px;
    padding: 8px 9px;
    border-radius: 12px;
    font-size: 8px;
    line-height: 1.25;
    text-align: left;
  }

  .checkout-trust-row span:last-child {
    grid-column: 1 / -1;
  }

  .checkout-trust-row svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }

  .checkout-layout {
    gap: 10px;
  }

  .checkout-order,
  .checkout-payment {
    padding: 16px;
    border-radius: 18px;
  }

  .checkout-packages:not(.checkout-packages--single) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .checkout-packages:not(.checkout-packages--single) button {
    min-height: 94px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 10px 8px;
    border-radius: 12px;
  }

  .checkout-packages:not(.checkout-packages--single) button.is-selected {
    transform: none;
  }

  .checkout-packages:not(.checkout-packages--single) span {
    font-size: 6.8px;
    line-height: 1.25;
  }

  .checkout-packages:not(.checkout-packages--single) strong {
    grid-area: auto;
    font-family: var(--font-sans, "Manrope", sans-serif);
    font-size: 13px;
    line-height: 1.15;
  }

  .checkout-packages:not(.checkout-packages--single) small {
    font-size: 9.5px;
  }

  .checkout-summary > div {
    align-items: flex-start;
  }

  .checkout-summary strong {
    max-width: 62%;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-align: right;
  }

  .checkout-payment__heading {
    gap: 9px;
  }

  .checkout-payment__heading h2 {
    font-size: clamp(24px, 8vw, 32px);
    line-height: 1.05;
  }

  .checkout-payment__secure {
    padding: 6px 8px;
    font-size: 6.5px;
  }

  .checkout-account-context strong {
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  #paymentBrick_container {
    max-width: 100%;
    overflow: hidden;
  }

  .checkout-payment__footer {
    display: grid;
    gap: 6px;
    line-height: 1.45;
  }

  .checkout-confidence {
    display: flex;
    gap: 8px;
    margin-inline: calc(var(--mobile-gutter) * -1);
    padding: 1px calc(var(--mobile-gutter) + 18px) 8px var(--mobile-gutter);
    overflow-x: auto;
    scroll-padding-inline: var(--mobile-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .checkout-confidence::-webkit-scrollbar {
    display: none;
  }

  .checkout-confidence article {
    flex: 0 0 min(78vw, 290px);
    min-height: 108px;
    scroll-snap-align: start;
  }

  /* A confirmação de idade cabe por inteiro até mesmo em telas de 320 px. */
  .age-gate {
    padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right))
      max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  }

  .age-gate__panel {
    width: min(410px, 100%);
    max-height: calc(100dvh - 24px);
    padding: 25px 17px 17px;
    border-radius: 19px;
    overflow-y: auto;
  }

  .age-gate h2 {
    margin-top: 10px;
    font-size: clamp(28px, 9vw, 38px);
  }

  .age-gate p {
    font-size: 11px;
    line-height: 1.55;
  }

  .age-gate__actions {
    grid-template-columns: minmax(0, 1.45fr) minmax(92px, 0.75fr);
    gap: 8px;
    margin-top: 18px;
  }

  .age-gate__actions button {
    min-height: 50px;
    padding-inline: 9px;
    font-size: 9.5px;
  }
}

@media (max-width: 350px) {
  .mobile-dock__credits {
    min-width: 52px;
    padding-inline: 6px;
  }

  .mobile-dock__credits b {
    font-size: 7.8px;
  }

  .profile-credit-wallet {
    grid-template-columns: 1fr;
  }

  .profile-credit-wallet__buy {
    width: 100%;
  }

  .checkout-packages:not(.checkout-packages--single) {
    display: flex;
    gap: 7px;
    margin-inline: -4px;
    padding: 0 4px 5px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .checkout-packages:not(.checkout-packages--single)::-webkit-scrollbar {
    display: none;
  }

  .checkout-packages:not(.checkout-packages--single) button {
    flex: 0 0 112px;
    scroll-snap-align: center;
  }

  .age-gate__actions {
    grid-template-columns: 1fr 92px;
  }
}

/* ==========================================================================
   Indicações, contador dinâmico e planos recorrentes
   ========================================================================== */
.auth-field--referral input {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.profile-referral-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 42, 65, 0.2);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 36, 61, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.025);
}

.profile-referral-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -72px;
  width: 180px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 49, 72, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.profile-referral-card__count {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.profile-referral-card__count b {
  color: #fff;
  font-size: 13px;
}

.profile-referral-code {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 17px;
  padding: 12px 15px;
  border: 1px dashed rgba(255, 50, 73, 0.36);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.32);
}

.profile-referral-code span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile-referral-code strong {
  color: #fff;
  font-size: clamp(16px, 3vw, 21px);
  letter-spacing: 0.13em;
  text-align: right;
}

.profile-referral-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 9px;
  margin-top: 11px;
}

.profile-referral-actions button {
  min-height: 45px;
}

.referral-welcome[hidden] {
  display: none;
}

.referral-welcome {
  position: fixed;
  z-index: 1600;
  inset: 0;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}

.referral-welcome__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(13px);
}

.referral-welcome__dialog {
  position: relative;
  width: min(470px, 100%);
  overflow: hidden;
  padding: clamp(25px, 5vw, 42px);
  border: 1px solid rgba(255, 47, 70, 0.32);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 0, rgba(255, 36, 61, 0.17), transparent 42%),
    linear-gradient(150deg, rgba(18, 18, 20, 0.99), rgba(3, 3, 4, 0.99));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  animation: referralWelcomeIn 480ms var(--ease-emphasis) both;
}

.referral-welcome__dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff2d4d, transparent);
  box-shadow: 0 0 18px rgba(255, 45, 77, 0.72);
}

.referral-welcome__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 22px;
}

.referral-welcome h2 {
  max-width: 360px;
  margin: 10px 0 10px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(31px, 7vw, 47px);
  line-height: 1.02;
}

.referral-welcome p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.7;
}

.referral-welcome__code {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 16px;
  border: 1px dashed rgba(255, 51, 74, 0.42);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.34);
  text-align: center;
}

.referral-welcome__code span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.referral-welcome__code strong {
  color: #fff;
  font-size: clamp(22px, 6vw, 32px);
  letter-spacing: 0.14em;
}

.referral-welcome__actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9px;
  margin-top: 12px;
}

.referral-welcome__actions button {
  min-height: 48px;
}

.referral-welcome__continue {
  width: 100%;
  margin-top: 12px;
  padding: 9px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.referral-welcome-open {
  overflow: hidden;
}

/* O selo fica reservado no topo do card, sem invadir título ou preço. */
.plans-grid .plan-card {
  padding-top: 58px;
}

.plans-grid .plan-card .plan-label {
  top: 16px;
  left: 50%;
  right: auto;
  z-index: 2;
  max-width: calc(100% - 32px);
  transform: translateX(-50%);
  white-space: nowrap;
}

.credit-plan-card--featured {
  padding-top: 58px;
}

.credit-plan-card--featured em {
  top: 14px;
  right: 14px;
  z-index: 2;
  max-width: calc(100% - 28px);
  white-space: nowrap;
}

@keyframes referralWelcomeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 760px) {
  .profile-referral-actions,
  .referral-welcome__actions {
    grid-template-columns: 1fr 1.15fr;
  }

  .profile-referral-code {
    min-height: 54px;
  }

  .plans-grid .plan-card,
  .plans-grid .plan-card.featured {
    padding-top: 56px;
  }

  .credit-plan-card--featured {
    padding-top: 49px;
  }

  .credit-plan-card--featured em {
    top: 11px;
    left: 14px;
    right: auto;
  }

  .credit-plan-card--featured > span {
    padding-right: 0;
  }
}

@media (max-width: 380px) {
  .profile-referral-actions,
  .referral-welcome__actions {
    grid-template-columns: 1fr;
  }

  .referral-welcome__dialog {
    padding: 28px 16px 18px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .referral-welcome__dialog {
    animation: none;
  }
}

/* ==========================================================================
   Navegação imersiva das prévias + modelos seguidas
   ========================================================================== */
.preview-feed-track {
  transform: translateX(var(--preview-swipe-x, 0));
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 180ms ease,
    filter 180ms ease;
  will-change: transform, opacity, filter;
}

.preview-feed-modal.is-model-switching .preview-feed-track {
  opacity: 0;
  filter: blur(7px);
}

.preview-feed-modal.is-model-switching.is-model-next .preview-feed-track {
  transform: translateX(15%) scale(0.985);
}

.preview-feed-modal.is-model-switching.is-model-previous .preview-feed-track {
  transform: translateX(-15%) scale(0.985);
}

.preview-feed-modal.is-model-arriving .preview-feed-track {
  animation: previewModelArrive 300ms both cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes previewModelArrive {
  from {
    opacity: 0;
    transform: scale(1.025);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.preview-feed-guide--discovery {
  top: 42%;
  width: min(calc(100% - 36px), 360px);
  padding: 10px;
  display: grid;
  gap: 8px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 0, rgba(255, 32, 57, 0.16), transparent 42%), rgba(5, 5, 5, 0.68);
}

.preview-feed-tip {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.preview-feed-tip > span:last-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.preview-feed-tip strong {
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-feed-tip small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 7.5px;
  line-height: 1.35;
}

.preview-feed-tip__gesture {
  position: relative;
  width: 48px;
  height: 34px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-style: normal;
}

.preview-feed-tip__gesture::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 9px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.12);
  animation: previewHorizontalFinger 1.8s ease-in-out infinite;
}

.preview-feed-tip__gesture i,
.preview-feed-tip__gesture b {
  font: inherit;
  font-weight: 400;
  opacity: 0.7;
  animation: previewHorizontalArrow 1.8s ease-in-out infinite;
}

.preview-feed-tip__gesture b {
  animation-delay: 0.9s;
}

@keyframes previewHorizontalFinger {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  32% {
    transform: translate(calc(-50% + 9px), -50%);
  }
  68% {
    transform: translate(calc(-50% - 9px), -50%);
  }
}

@keyframes previewHorizontalArrow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.profile-title-toolbar {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.profile-title-toolbar > .eyebrow {
  min-width: 0;
}

.profile-follow-control {
  position: relative;
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.profile-follow-button {
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 40, 65, 0.58);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255, 35, 60, 0.12), rgba(255, 255, 255, 0.02)), rgba(7, 7, 7, 0.72);
  color: #fff;
  font: inherit;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms var(--ease-standard),
    border-color 180ms ease,
    background 180ms ease;
}

.profile-follow-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.profile-follow-button:hover,
.profile-follow-button:focus-visible,
.profile-follow-button.is-following {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(177, 0, 27, 0.92), rgba(72, 0, 12, 0.94));
  outline: none;
  transform: translateY(-1px);
}

.profile-follow-button.is-following svg {
  fill: currentColor;
}

.profile-follow-popover {
  position: absolute;
  z-index: 15;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(278px, calc(100vw - 34px));
  padding: 15px 15px 14px;
  border: 1px solid rgba(255, 45, 69, 0.5);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 32, 57, 0.16), transparent 42%), rgba(7, 7, 7, 0.96);
  color: #fff;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
  animation: followPopoverIn 220ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-follow-popover[hidden] {
  display: none;
}

.profile-follow-popover::after {
  content: "";
  position: absolute;
  right: 23px;
  bottom: -6px;
  width: 11px;
  height: 11px;
  border-right: 1px solid rgba(255, 45, 69, 0.5);
  border-bottom: 1px solid rgba(255, 45, 69, 0.5);
  background: #090909;
  transform: rotate(45deg);
}

.profile-follow-popover > button {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 20px;
  cursor: pointer;
}

.profile-follow-popover strong {
  display: block;
  padding-right: 24px;
  font-size: 11px;
}

.profile-follow-popover p {
  margin: 6px 0 11px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  line-height: 1.5;
}

.profile-follow-popover a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: #ff6b7e;
  font-size: 9px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes followPopoverIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.profile-avatar-column {
  align-self: start;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.profile-following {
  width: 76px;
  padding: 7px 6px 6px;
  border: 1px solid rgba(255, 45, 69, 0.26);
  border-radius: 14px;
  background: rgba(60, 0, 10, 0.16);
}

.profile-following[hidden] {
  display: none;
}

.profile-following > span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 6.5px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.profile-following__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.profile-following__model,
.profile-following__more {
  min-width: 0;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: #0a0a0a;
  color: #fff;
}

.profile-following__model img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-following__model small {
  display: none;
}

.profile-following__more {
  font-size: 8px;
  font-weight: 750;
}

@media (max-width: 640px) {
  .preview-feed-guide--discovery {
    top: 39%;
    width: min(calc(100% - 24px), 340px);
    padding: 8px;
    gap: 6px;
  }

  .preview-feed-tip {
    min-height: 58px;
    padding: 8px 10px;
  }

  .preview-feed-tip strong {
    font-size: 8px;
  }

  .preview-feed-tip small {
    font-size: 7px;
  }

  .profile-title-toolbar {
    align-items: center;
  }

  .profile-follow-control {
    align-self: center;
  }

  .profile-follow-button {
    min-height: 42px;
    padding-inline: 11px;
    font-size: 8px;
  }

  .profile-follow-button span {
    max-width: 78px;
    line-height: 1.2;
  }

  .profile-follow-popover {
    position: fixed;
    right: 12px;
    bottom: calc(104px + env(safe-area-inset-bottom));
    width: min(284px, calc(100vw - 24px));
  }

  .profile-follow-popover::after {
    display: none;
  }

  .profile-avatar-column {
    width: 58px;
  }

  .profile-following {
    width: 58px;
    padding: 6px 5px 5px;
    border-radius: 12px;
  }

  .profile-following__list {
    gap: 4px;
  }

  .profile-following__model,
  .profile-following__more {
    border-radius: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preview-feed-modal.is-model-arriving .preview-feed-track,
  .preview-feed-tip__gesture::after,
  .preview-feed-tip__gesture i,
  .preview-feed-tip__gesture b,
  .profile-follow-popover {
    animation: none !important;
  }
}

.profile-avatar-column + .profile-dashboard__identity {
  align-self: start;
}

@media (max-width: 640px) {
  .profile-follow-popover {
    position: absolute;
    right: 0;
    bottom: calc(100% + 11px);
    width: min(284px, calc(100vw - 28px));
  }

  .profile-follow-popover::after {
    display: block;
  }
}

/* ==========================================================
   Convite de assinatura ao seguir + lista de modelos seguidas
   ========================================================== */
.profile-follow-popover {
  width: min(372px, calc(100vw - 24px));
  padding: 22px;
  border-radius: 24px;
  border-color: rgba(255, 45, 69, 0.72);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 38, 66, 0.25), transparent 38%),
    radial-gradient(circle at 0 100%, rgba(123, 0, 24, 0.22), transparent 46%),
    linear-gradient(155deg, rgba(22, 4, 8, 0.99), rgba(5, 5, 5, 0.99));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.72),
    0 0 38px rgba(206, 0, 34, 0.16);
}

.profile-follow-popover > button {
  top: 10px;
  right: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
}

.profile-follow-popover__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 55, 80, 0.46);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(203, 0, 34, 0.88), rgba(78, 0, 14, 0.88));
  box-shadow: 0 12px 30px rgba(177, 0, 27, 0.25);
}

.profile-follow-popover__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}

.profile-follow-popover__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #ff536b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-follow-popover strong {
  max-width: 285px;
  padding-right: 22px;
  color: #fff;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(20px, 4.7vw, 27px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.profile-follow-popover p {
  margin: 12px 0 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.58;
}

.profile-follow-popover__benefits {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.profile-follow-popover__benefits span {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 650;
}

.profile-follow-popover__benefits span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #ff405b;
  font-weight: 900;
}

.profile-follow-popover a.profile-follow-popover__cta {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 90, 108, 0.7);
  border-radius: 15px;
  background: linear-gradient(135deg, #c50025, #790018 62%, #51000f);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(177, 0, 27, 0.3);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.profile-follow-popover a.profile-follow-popover__cta:hover,
.profile-follow-popover a.profile-follow-popover__cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 16px 38px rgba(220, 0, 40, 0.38);
  outline: 2px solid rgba(255, 255, 255, 0.28);
  outline-offset: 2px;
}

.profile-follow-popover__cta b {
  font-size: 19px;
  line-height: 1;
}

.profile-follow-popover > small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  text-align: center;
}

.profile-avatar-column {
  width: 76px;
}

.profile-following-trigger {
  width: 76px;
  min-height: 54px;
  padding: 7px 6px 6px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "icon count"
    "label label";
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  row-gap: 3px;
  border: 1px solid rgba(255, 45, 69, 0.32);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(112, 0, 20, 0.22), rgba(5, 5, 5, 0.76));
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.profile-following-trigger:hover,
.profile-following-trigger:focus-visible,
.profile-following-trigger.has-following {
  border-color: rgba(255, 45, 69, 0.72);
  background: linear-gradient(145deg, rgba(149, 0, 27, 0.34), rgba(8, 8, 8, 0.88));
}

.profile-following-trigger:hover,
.profile-following-trigger:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.profile-following-trigger svg {
  grid-area: icon;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.profile-following-trigger.has-following svg {
  fill: #e80032;
  stroke: #ff6a80;
}

.profile-following-trigger span {
  grid-area: label;
  color: rgba(255, 255, 255, 0.62);
  font-size: 6.7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.profile-following-trigger b {
  grid-area: count;
  min-width: 21px;
  height: 18px;
  padding-inline: 5px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 55, 79, 0.38);
  border-radius: 999px;
  background: rgba(121, 0, 22, 0.42);
  color: #fff;
  font-size: 8px;
  line-height: 1;
}

.following-models-modal[hidden],
.following-models-modal__list[hidden] {
  display: none;
}

.following-models-modal {
  position: fixed;
  z-index: 2200;
  inset: 0;
  padding: 18px;
  display: grid;
  place-items: center;
}

.following-models-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  cursor: default;
}

.following-models-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(760px, calc(100dvh - 36px));
  padding: clamp(22px, 4vw, 34px);
  overflow: auto;
  border: 1px solid rgba(255, 45, 69, 0.48);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 0, rgba(205, 0, 36, 0.19), transparent 38%),
    linear-gradient(150deg, #160408, #070707 44%, #050505);
  color: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.75);
  animation: followingModalIn 220ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.following-models-modal__dialog h2 {
  max-width: 430px;
  margin: 7px 42px 8px 0;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.following-models-modal__dialog > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.55;
}

.following-models-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 23px;
  cursor: pointer;
}

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

.following-model-card {
  min-width: 0;
  padding: 9px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.following-model-card:hover,
.following-model-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 69, 0.58);
  background: rgba(118, 0, 22, 0.16);
  outline: none;
}

.following-model-card img {
  width: 58px;
  height: 66px;
  border-radius: 12px;
  object-fit: cover;
  background: #101010;
}

.following-model-card span {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.following-model-card strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.following-model-card small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.following-model-card > b {
  color: #ff405b;
  font-size: 18px;
}

.following-models-modal__empty {
  padding: 26px 18px 8px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.following-models-modal__empty[hidden] {
  display: none;
}

.following-models-modal__empty > span {
  width: 58px;
  height: 58px;
  margin-bottom: 13px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 45, 69, 0.36);
  border-radius: 18px;
  background: rgba(120, 0, 22, 0.19);
  color: #ff536b;
  font-size: 28px;
}

.following-models-modal__empty strong {
  font-size: 14px;
}

.following-models-modal__empty p {
  max-width: 340px;
  margin: 8px 0 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.55;
}

.following-models-modal__empty a {
  min-height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 68, 91, 0.62);
  border-radius: 13px;
  background: linear-gradient(135deg, #a90020, #620012);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

body.following-models-open {
  overflow: hidden;
}

@keyframes followingModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .profile-follow-popover {
    right: -2px;
    width: min(352px, calc(100vw - 20px));
    padding: 20px;
    border-radius: 22px;
  }

  .profile-follow-popover strong {
    font-size: clamp(22px, 7.2vw, 28px);
  }

  .profile-follow-popover p {
    font-size: 10px;
  }

  .profile-follow-popover a.profile-follow-popover__cta {
    min-height: 54px;
    font-size: 9.5px;
  }

  .profile-avatar-column {
    width: 64px;
  }

  .profile-following-trigger {
    width: 64px;
    min-height: 52px;
    border-radius: 13px;
  }

  .following-models-modal {
    padding: 8px;
    place-items: end center;
  }

  .following-models-modal__dialog {
    width: 100%;
    max-height: min(82dvh, 720px);
    padding: 24px 17px calc(22px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 18px 18px;
  }

  .following-models-modal__dialog h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .following-models-modal__list {
    grid-template-columns: 1fr;
  }

  .following-model-card {
    min-height: 76px;
    grid-template-columns: 56px minmax(0, 1fr) auto;
  }

  .following-model-card img {
    width: 56px;
    height: 60px;
  }
}

@media (max-width: 340px) {
  .profile-follow-popover {
    width: calc(100vw - 16px);
    padding: 17px;
  }

  .profile-follow-popover__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }

  .profile-follow-popover__benefits {
    gap: 6px;
  }

  .following-models-modal__dialog {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .following-models-modal__dialog {
    animation: none;
  }
}

/* ==========================================================
   Prévias: seguir modelo + tutorial persistente por sessão/conta
   ========================================================== */
.preview-feed-header {
  grid-template-columns: minmax(0, 1fr) auto auto;
  justify-content: initial;
}

.preview-feed-heading {
  min-width: 0;
  max-width: 190px;
}

.preview-feed-heading strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-feed-follow {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.preview-feed-follow[hidden] {
  display: none;
}

.preview-feed-follow-button {
  min-width: 92px;
  min-height: 42px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font: inherit;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.preview-feed-follow-button:hover,
.preview-feed-follow-button:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: 2px solid rgba(255, 255, 255, 0.26);
  outline-offset: 2px;
  transform: translateY(-1px);
}

.preview-feed-follow-button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preview-feed-follow-check {
  display: none;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
}

.preview-feed-follow-button.is-following {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.17);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.preview-feed-follow-button.is-following .preview-feed-follow-heart {
  display: none;
}

.preview-feed-follow-button.is-following .preview-feed-follow-check {
  display: block;
  stroke-dashoffset: 0;
}

.preview-feed-follow-button.is-confirming {
  animation: previewFollowConfirm 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.preview-feed-follow-button.is-confirming .preview-feed-follow-check {
  animation: previewFollowCheck 520ms 70ms both ease-out;
}

@keyframes previewFollowConfirm {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(0.91);
  }
  68% {
    transform: scale(1.08);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes previewFollowCheck {
  from {
    stroke-dashoffset: 20;
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

.preview-feed-follow-popover[hidden] {
  display: none;
}

.preview-feed-follow-popover {
  position: absolute;
  z-index: 14;
  top: max(76px, calc(env(safe-area-inset-top) + 66px));
  left: 50%;
  width: min(390px, calc(100% - 24px));
  max-height: calc(100dvh - 98px - env(safe-area-inset-bottom));
  padding: 22px;
  overflow: auto;
  border: 1px solid rgba(255, 77, 96, 0.72);
  border-radius: 23px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 38, 66, 0.25), transparent 40%),
    radial-gradient(circle at 0 100%, rgba(116, 0, 22, 0.23), transparent 46%),
    linear-gradient(155deg, rgba(24, 4, 9, 0.99), rgba(4, 4, 4, 0.99));
  color: #fff;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.78),
    0 0 45px rgba(201, 0, 35, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
  animation: previewFollowPopoverIn 220ms both cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  box-sizing: border-box;
}

.preview-feed-follow-popover > button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  cursor: pointer;
}

.preview-feed-follow-popover__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 13px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 74, 96, 0.5);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(203, 0, 34, 0.9), rgba(77, 0, 14, 0.9));
  font-size: 20px;
  box-shadow: 0 12px 30px rgba(177, 0, 27, 0.25);
}

.preview-feed-follow-popover__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #ff5c73;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-feed-follow-popover strong {
  display: block;
  max-width: 300px;
  padding-right: 28px;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(22px, 5.4vw, 29px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.preview-feed-follow-popover p {
  margin: 12px 0 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1.58;
}

.preview-feed-follow-popover__benefits {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.preview-feed-follow-popover__benefits span {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  font-weight: 700;
}

.preview-feed-follow-popover__benefits span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff536b;
  font-weight: 900;
}

.preview-feed-follow-popover > a {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 90, 108, 0.72);
  border-radius: 15px;
  background: linear-gradient(135deg, #c50025, #790018 62%, #51000f);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(177, 0, 27, 0.3);
}

.preview-feed-follow-popover > a b {
  font-size: 19px;
}

@keyframes previewFollowPopoverIn {
  from {
    opacity: 0;
    transform: translate(-50%, -10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

.preview-feed-guide--tutorial {
  visibility: visible;
  opacity: 1;
  animation: previewTutorialEnter 280ms both cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.preview-feed-guide--tutorial.is-dismissed {
  animation: none !important;
}

.preview-feed-guide--tutorial.is-back-step {
  width: min(calc(100% - 36px), 330px);
}

.preview-feed-tip.is-forward-step .preview-feed-tip__gesture::after {
  animation: previewTutorialFingerRight 1.45s ease-in-out infinite;
}

.preview-feed-tip.is-back-step .preview-feed-tip__gesture::after {
  animation: previewTutorialFingerLeft 1.45s ease-in-out infinite;
}

.preview-feed-tip.is-forward-step .preview-feed-tip__gesture i,
.preview-feed-tip.is-back-step .preview-feed-tip__gesture b {
  opacity: 0;
  animation: none;
}

.preview-feed-tip.is-forward-step .preview-feed-tip__gesture b,
.preview-feed-tip.is-back-step .preview-feed-tip__gesture i {
  opacity: 1;
  animation: previewHorizontalArrow 1.45s ease-in-out infinite;
}

@keyframes previewTutorialEnter {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 14px)) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes previewTutorialFingerRight {
  0%,
  22% {
    transform: translate(calc(-50% - 10px), -50%);
    opacity: 0.45;
  }
  70%,
  100% {
    transform: translate(calc(-50% + 10px), -50%);
    opacity: 1;
  }
}

@keyframes previewTutorialFingerLeft {
  0%,
  22% {
    transform: translate(calc(-50% + 10px), -50%);
    opacity: 0.45;
  }
  70%,
  100% {
    transform: translate(calc(-50% - 10px), -50%);
    opacity: 1;
  }
}

/* Evita que o convite do perfil ultrapasse a largura útil do aparelho. */
.profile-follow-popover {
  max-width: calc(100vw - 20px);
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .preview-feed-header {
    min-height: 70px;
    padding: max(9px, env(safe-area-inset-top)) 8px 10px;
    grid-template-columns: minmax(70px, 1fr) auto auto;
    gap: 6px;
  }

  .preview-feed-heading {
    max-width: 98px;
  }

  .preview-feed-heading strong {
    font-size: 12px;
  }

  .preview-feed-follow-button {
    min-width: 82px;
    min-height: 40px;
    padding-inline: 9px;
    border-radius: 13px;
    font-size: 7.5px;
  }

  .preview-feed-follow-button svg {
    width: 15px;
    height: 15px;
  }

  .preview-feed-tools {
    gap: 4px;
  }

  .preview-feed-sound {
    width: 40px;
    min-height: 40px;
  }

  .preview-feed-counter {
    min-width: 28px;
    font-size: 7px;
  }

  .preview-feed-close {
    width: 40px;
    height: 40px;
  }

  .preview-feed-follow-popover {
    top: max(70px, calc(env(safe-area-inset-top) + 61px));
    width: calc(100% - 18px);
    max-height: calc(100dvh - 84px - env(safe-area-inset-bottom));
    padding: 19px;
    border-radius: 21px;
  }

  .preview-feed-follow-popover strong {
    font-size: clamp(22px, 7.2vw, 28px);
  }

  .preview-feed-guide--tutorial {
    top: 41%;
  }

  .profile-follow-popover {
    position: fixed !important;
    left: max(10px, env(safe-area-inset-left)) !important;
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: calc(92px + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100dvh - 112px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    overflow-y: auto;
  }

  .profile-follow-popover::after {
    display: none !important;
  }
}

@media (max-width: 350px) {
  .preview-feed-header {
    padding-inline: 6px;
    grid-template-columns: minmax(62px, 1fr) auto auto;
    gap: 4px;
  }

  .preview-feed-heading {
    max-width: 82px;
  }

  .preview-feed-heading span {
    font-size: 6.5px;
  }

  .preview-feed-heading strong {
    font-size: 10.5px;
  }

  .preview-feed-follow-button {
    min-width: 72px;
    padding-inline: 7px;
    gap: 5px;
    font-size: 7px;
  }

  .preview-feed-follow-button svg {
    width: 14px;
    height: 14px;
  }

  .preview-feed-counter {
    min-width: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preview-feed-follow-button,
  .preview-feed-follow-button.is-confirming,
  .preview-feed-follow-button.is-confirming .preview-feed-follow-check,
  .preview-feed-follow-popover,
  .preview-feed-guide--tutorial,
  .preview-feed-tip.is-forward-step .preview-feed-tip__gesture::after,
  .preview-feed-tip.is-back-step .preview-feed-tip__gesture::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================
   Refinamento final: barra superior das prévias + convite VIP
   ========================================================== */
.preview-feed-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.preview-feed-heading {
  max-width: 180px;
}

.preview-feed-tools {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.preview-feed-follow {
  display: flex;
  align-items: center;
}

.preview-feed-follow-button,
.preview-feed-sound,
.preview-feed-close {
  min-height: 44px;
  height: 44px;
}

.preview-feed-follow-button {
  min-width: 96px;
  padding-inline: 14px;
  border-radius: 999px;
  font-size: 8.5px;
  letter-spacing: 0.065em;
}

.preview-feed-sound,
.preview-feed-close {
  width: 44px;
  flex: 0 0 44px;
}

.preview-feed-counter {
  min-width: 31px;
  padding-inline: 2px;
  font-size: 8px;
}

@media (max-width: 640px) {
  .preview-feed-header {
    min-height: 68px;
    padding: max(8px, env(safe-area-inset-top)) 8px 9px;
    grid-template-columns: minmax(72px, 1fr) auto;
    gap: 7px;
  }

  .preview-feed-heading {
    max-width: 102px;
  }

  .preview-feed-heading span {
    font-size: 7px;
  }

  .preview-feed-heading strong {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.08;
  }

  .preview-feed-tools {
    gap: 5px;
  }

  .preview-feed-follow-button {
    min-width: 88px;
    min-height: 44px;
    height: 44px;
    padding-inline: 11px;
    gap: 7px;
    font-size: 8px;
  }

  .preview-feed-follow-button svg {
    width: 16px;
    height: 16px;
  }

  .preview-feed-sound,
  .preview-feed-close {
    width: 44px;
    min-height: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .preview-feed-counter {
    min-width: 27px;
    font-size: 7.5px;
  }

  body.profile-follow-popover-open {
    overflow: hidden;
  }

  body.profile-follow-popover-open::before {
    content: "";
    position: fixed;
    z-index: 1198;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: profileFollowBackdropIn 180ms both ease;
  }

  .profile-follow-control.is-explaining {
    z-index: 1200;
  }

  .profile-follow-popover {
    position: fixed !important;
    z-index: 1201 !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: min(362px, calc(100vw - 24px)) !important;
    max-width: calc(100vw - 24px) !important;
    max-height: calc(
      100dvh - 132px - env(safe-area-inset-top) - env(safe-area-inset-bottom)
    ) !important;
    margin: 0 !important;
    padding: 20px !important;
    overflow-y: auto;
    border-radius: 22px;
    transform: translate(-50%, -50%) !important;
    box-sizing: border-box;
    overscroll-behavior: contain;
    animation: profileFollowModalIn 220ms both cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .profile-follow-popover::after {
    display: none !important;
  }

  .profile-follow-popover strong {
    max-width: 270px;
    font-size: clamp(22px, 7vw, 28px);
  }

  .profile-follow-popover p {
    margin-block: 11px 14px;
    font-size: 10px;
  }

  .profile-follow-popover__benefits {
    margin-bottom: 14px;
  }

  .profile-follow-popover a.profile-follow-popover__cta {
    min-height: 54px;
  }
}

@media (max-width: 370px) {
  .preview-feed-header {
    grid-template-columns: minmax(62px, 1fr) auto;
    padding-inline: 6px;
    gap: 4px;
  }

  .preview-feed-heading {
    max-width: 76px;
  }

  .preview-feed-heading span {
    font-size: 6px;
  }

  .preview-feed-heading strong {
    font-size: 10px;
  }

  .preview-feed-tools {
    gap: 3px;
  }

  .preview-feed-follow-button {
    min-width: 76px;
    padding-inline: 8px;
    gap: 5px;
    font-size: 7px;
  }

  .preview-feed-follow-button svg {
    width: 14px;
    height: 14px;
  }

  .preview-feed-sound,
  .preview-feed-close {
    width: 40px;
    min-height: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .preview-feed-counter {
    min-width: 23px;
    font-size: 6.5px;
  }

  .profile-follow-popover {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    padding: 17px !important;
  }
}

@keyframes profileFollowBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes profileFollowModalIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 18px)) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.profile-follow-popover-open::before,
  .profile-follow-popover {
    animation: none !important;
  }
}

/* ==========================================================
   Correção de posição: convite VIP acima do botão Seguir
   ========================================================== */
.profile-follow-zone {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.profile-follow-zone > .profile-title-toolbar {
  width: 100%;
  order: 2;
}

.profile-follow-zone > .profile-follow-popover {
  position: relative !important;
  z-index: 18 !important;
  inset: auto !important;
  order: 1;
  align-self: flex-end;
  width: min(372px, 100%) !important;
  max-width: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  overflow: visible !important;
  transform: none !important;
  animation: followPopoverIn 220ms both cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.profile-follow-zone > .profile-follow-popover::after {
  display: block !important;
  right: 44px;
  bottom: -6px;
}

.profile-follow-zone.is-explaining {
  position: relative;
  z-index: 20;
}

body.profile-follow-popover-open {
  overflow: auto !important;
}

body.profile-follow-popover-open::before {
  display: none !important;
}

@media (max-width: 640px) {
  .profile-follow-zone {
    gap: 10px;
  }

  .profile-follow-zone > .profile-follow-popover {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px !important;
    border-radius: 21px;
  }

  .profile-follow-zone > .profile-follow-popover::after {
    right: 45px;
  }
}

@media (max-width: 370px) {
  .profile-follow-zone > .profile-follow-popover {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
  }
}

/* ==========================================================
   Âncora exata do convite VIP: imediatamente acima de Seguir
   ========================================================== */
.profile-follow-zone {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}

.profile-follow-zone > .profile-title-toolbar {
  order: initial;
}

.profile-follow-control {
  position: relative;
  isolation: isolate;
}

.profile-follow-control.is-explaining {
  z-index: 80;
}

.profile-follow-control > .profile-follow-popover {
  position: absolute !important;
  z-index: 90 !important;
  top: auto !important;
  right: 0 !important;
  bottom: calc(100% + 13px) !important;
  left: auto !important;
  width: min(372px, calc(100vw - 28px)) !important;
  max-width: calc(100vw - 28px) !important;
  max-height: min(560px, var(--follow-popover-max-height, 520px)) !important;
  margin: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  transform: none !important;
  box-sizing: border-box;
  overscroll-behavior: contain;
  animation: followPopoverIn 220ms both cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.profile-follow-control > .profile-follow-popover::after {
  display: block !important;
  right: 34px !important;
  bottom: -6px !important;
}

.profile-follow-zone > .profile-follow-popover {
  position: absolute !important;
}

body.profile-follow-popover-open {
  overflow: auto !important;
}

body.profile-follow-popover-open::before {
  display: none !important;
}

@media (max-width: 719px) {
  .profile-follow-control > .profile-follow-popover {
    width: min(360px, calc(100vw - 28px)) !important;
    max-width: calc(100vw - 28px) !important;
    padding: 18px !important;
    border-radius: 21px;
  }

  .profile-follow-control > .profile-follow-popover::after {
    right: 36px !important;
  }
}

@media (max-width: 370px) {
  .profile-follow-control > .profile-follow-popover {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    padding: 16px !important;
  }
}

/* ==========================================================
   Controles nativos no tema escuro
   Evita listas brancas, texto invisível e autofill claro.
   ========================================================== */
:where(input, select, textarea) {
  color-scheme: dark;
  caret-color: var(--red);
}

:where(select.field-control, .auth-field select) {
  color-scheme: dark;
  background-color: #090909;
  color: #fff;
}

select.field-control:not(.custom-select__native) {
  padding-right: 42px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

:where(select option, select optgroup) {
  color-scheme: dark;
  background-color: #090909 !important;
  color: #f4f4f4 !important;
}

select option:checked {
  background-color: #6f0010 !important;
  color: #fff !important;
}

select option:disabled {
  color: #747474 !important;
}

:where(input, textarea, select):-webkit-autofill,
:where(input, textarea, select):-webkit-autofill:hover,
:where(input, textarea, select):-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  box-shadow: 0 0 0 1000px #090909 inset !important;
  -webkit-box-shadow: 0 0 0 1000px #090909 inset !important;
  transition: background-color 9999s ease-out 0s;
}

input[type="file"] {
  color: #bdbdbd;
}

input[type="file"]::file-selector-button {
  min-height: 40px;
  margin-right: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255, 32, 57, 0.48);
  border-radius: 10px;
  background: rgba(94, 0, 14, 0.42);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

input[type="file"]::file-selector-button:hover,
input[type="file"]::file-selector-button:focus-visible {
  border-color: var(--red);
  background: rgba(132, 0, 19, 0.55);
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  filter: invert(1) opacity(0.72);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 0.58;
}

@media (forced-colors: active) {
  :where(select option, select optgroup) {
    forced-color-adjust: auto;
  }
}

:where(input, select, textarea):disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

:where(
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"],
  input[type="week"]
)::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.72);
  cursor: pointer;
}

/* ==========================================================================
   Meu perfil — avatar e atalho de modelos seguidas (refino visual)
   ========================================================================== */
.profile-avatar-column {
  width: 86px;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.profile-avatar-column .profile-avatar {
  width: 70px;
  border-radius: 19px;
}

.profile-following-trigger {
  width: 86px;
  min-height: 36px;
  box-sizing: border-box;
  padding: 0 8px;
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr) 19px;
  grid-template-areas: "icon label count";
  align-items: center;
  justify-content: stretch;
  gap: 5px;
  border: 1px solid rgba(255, 58, 82, 0.36);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(116, 0, 21, 0.28), rgba(12, 5, 7, 0.96));
  color: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 9px 24px rgba(0, 0, 0, 0.22);
}

.profile-following-trigger svg {
  width: 15px;
  height: 15px;
}

.profile-following-trigger span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 7px;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.profile-following-trigger b {
  min-width: 19px;
  width: 19px;
  height: 19px;
  padding: 0;
  border-color: rgba(255, 69, 91, 0.46);
  background: rgba(145, 0, 27, 0.52);
  font-size: 8px;
}

.profile-following-trigger:hover,
.profile-following-trigger:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 65, 88, 0.8);
  background: linear-gradient(135deg, rgba(153, 0, 28, 0.42), rgba(13, 6, 8, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 28px rgba(64, 0, 12, 0.3);
}

.profile-following-trigger.has-following {
  border-color: rgba(255, 72, 94, 0.72);
}

@media (max-width: 640px) {
  .profile-dashboard__hero {
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: start;
    column-gap: 12px;
  }

  .profile-avatar-column {
    width: 78px;
    gap: 6px;
  }

  .profile-avatar-column .profile-avatar {
    width: 62px;
    border-radius: 17px;
  }

  .profile-following-trigger {
    width: 78px;
    min-height: 34px;
    padding-inline: 7px;
    grid-template-columns: 14px minmax(0, 1fr) 18px;
    gap: 4px;
    border-radius: 11px;
  }

  .profile-following-trigger svg {
    width: 14px;
    height: 14px;
  }

  .profile-following-trigger span {
    font-size: 6.7px;
    letter-spacing: 0.035em;
  }

  .profile-following-trigger b {
    min-width: 18px;
    width: 18px;
    height: 18px;
    font-size: 7.5px;
  }
}

@media (max-width: 350px) {
  .profile-dashboard__hero {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 9px;
  }

  .profile-avatar-column,
  .profile-following-trigger {
    width: 72px;
  }

  .profile-avatar-column .profile-avatar {
    width: 58px;
  }

  .profile-following-trigger {
    grid-template-columns: 13px minmax(0, 1fr) 17px;
    padding-inline: 6px;
    gap: 3px;
  }

  .profile-following-trigger span {
    font-size: 6.2px;
  }
}

/* ==========================================================================
   Meu perfil — composição premium do resumo da conta
   ========================================================================== */
.profile-dashboard__hero {
  grid-template-columns: 82px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 18px;
  row-gap: 12px;
  padding: 6px 4px 24px;
}

.profile-avatar-column {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 82px;
  align-self: center;
  gap: 8px;
}

.profile-avatar-column .profile-avatar {
  width: 72px;
  border-radius: 21px;
}

.profile-following-trigger {
  width: 72px;
  min-height: 45px;
  padding: 7px 8px 6px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "icon count"
    "label label";
  place-content: center;
  align-items: center;
  justify-items: center;
  gap: 3px 5px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 24% 0%, rgba(255, 255, 255, 0.055), transparent 48%),
    linear-gradient(145deg, rgba(92, 0, 17, 0.3), rgba(8, 4, 5, 0.96));
}

.profile-following-trigger svg {
  grid-area: icon;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.76);
  stroke-width: 1.65;
}

.profile-following-trigger span {
  grid-area: label;
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.profile-following-trigger b {
  grid-area: count;
  min-width: 0;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff455d;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
}

.profile-dashboard__identity {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.profile-dashboard__identity h2 {
  max-width: 100%;
}

.profile-dashboard__identity h2 span {
  overflow-wrap: anywhere;
}

.profile-credit-wallet {
  grid-column: 2;
  grid-row: 2;
  width: min(100%, 370px);
  margin-top: 0;
  align-self: start;
}

.profile-plan-pill {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
}

@media (max-width: 640px) {
  .profile-dashboard__hero {
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-items: start;
    column-gap: 13px;
    row-gap: 12px;
    padding: 5px 3px 17px;
  }

  .profile-avatar-column {
    grid-column: 1;
    grid-row: 1;
    width: 76px;
    align-self: start;
    gap: 7px;
  }

  .profile-avatar-column .profile-avatar {
    width: 70px;
    border-radius: 20px;
    font-size: 19px;
  }

  .profile-following-trigger {
    width: 70px;
    min-height: 44px;
    padding: 7px 8px 6px;
    grid-template-columns: auto auto;
    gap: 3px 5px;
    border-radius: 13px;
  }

  .profile-following-trigger svg {
    width: 15px;
    height: 15px;
  }

  .profile-following-trigger span {
    font-size: 6.8px;
    letter-spacing: 0.08em;
  }

  .profile-following-trigger b {
    width: auto;
    min-width: 0;
    height: auto;
    font-size: 11px;
  }

  .profile-dashboard__identity {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    padding-top: 1px;
  }

  .profile-dashboard__identity .auth-account__badge {
    padding: 5px 9px;
    font-size: 7.5px;
  }

  .profile-dashboard__identity h2 {
    margin: 8px 0 3px;
    font-size: clamp(26px, 8.4vw, 35px);
    line-height: 0.96;
  }

  .profile-dashboard__identity h2 span {
    display: block;
    margin-top: 3px;
    line-height: 0.94;
  }

  .profile-dashboard__identity > p {
    max-width: 100%;
    font-size: 9.5px;
  }

  .profile-credit-wallet {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(132px, 0.9fr);
    gap: 8px;
  }

  .profile-credit-wallet__balance,
  .profile-credit-wallet__buy {
    min-height: 50px;
    border-radius: 14px;
  }

  .profile-credit-wallet__balance {
    min-width: 0;
    padding-inline: 13px;
  }

  .profile-credit-wallet__balance small {
    font-size: 7.2px;
  }

  .profile-credit-wallet__balance strong {
    font-size: 11.5px;
  }

  .profile-credit-wallet__balance b {
    font-size: 14px;
  }

  .profile-credit-wallet__buy {
    padding-inline: 12px;
    font-size: 8px;
    letter-spacing: 0.065em;
  }

  .profile-plan-pill {
    grid-column: 1 / -1;
    grid-row: 3;
    min-width: 0;
    min-height: 46px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    padding: 11px 14px;
    border-radius: 14px;
    text-align: left;
  }

  .profile-plan-pill strong {
    justify-self: end;
    text-align: right;
  }
}

@media (max-width: 350px) {
  .profile-dashboard__hero {
    grid-template-columns: 68px minmax(0, 1fr);
    column-gap: 10px;
  }

  .profile-avatar-column,
  .profile-avatar-column .profile-avatar,
  .profile-following-trigger {
    width: 64px;
  }

  .profile-avatar-column .profile-avatar {
    border-radius: 18px;
  }

  .profile-dashboard__identity h2 {
    font-size: clamp(24px, 8.1vw, 30px);
  }

  .profile-credit-wallet {
    grid-template-columns: 1fr;
  }

  .profile-credit-wallet__buy {
    width: 100%;
  }
}

/* ==========================================================================
   Auditoria visual final — correções aprovadas V1 a V10
   ========================================================================== */

/* V4 — piso tipográfico real para microtextos e metadados. */
.hero-live-card__label,
.model-preview-cue__label,
.profile-kicker,
.auth-account__badge,
.checkout-order__heading span,
.checkout-payment__heading span:not(.checkout-payment__secure),
.checkout-payment__secure,
.checkout-packages span,
.checkout-order__note,
.checkout-payment__footer,
.checkout-confidence p,
.mobile-dock__credits b,
.mobile-dock__credits span {
  font-size: max(10px, 0.625rem);
  line-height: 1.25;
}

.model-preview-cue__label,
.hero-live-card__label {
  letter-spacing: 0.055em;
}

/* V5 — áreas de toque confortáveis, sem inflar desnecessariamente o visual. */
.header-auth-button,
.checkout-back,
.admin-body .btn-outline,
.admin-body .btn-primary,
.admin-nav button,
.admin-file-button {
  min-height: 44px;
}

.checkout-back {
  align-items: center;
  margin-bottom: 0;
  padding-block: 12px;
  font-size: 10px;
}

/* V10 — densidade desktop compatível com o restante da identidade editorial. */
@media (min-width: 1200px) {
  .site-header .header-row {
    min-height: 82px;
  }

  .site-header .logo img {
    width: 174px;
    height: 68px;
  }

  .main-nav {
    gap: clamp(18px, 1.65vw, 30px);
    font-size: 10px;
  }

  .header-auth-button,
  .header-profile-button {
    min-height: 44px;
    padding-inline: 17px;
    font-size: 9.5px;
  }

  .checkout-order__heading span,
  .checkout-payment__heading span:not(.checkout-payment__secure),
  .checkout-packages span,
  .checkout-order__note,
  .checkout-payment__footer,
  .checkout-confidence p {
    font-size: 10px;
  }

  .checkout-payment__secure {
    font-size: 9px;
  }

  .admin-main {
    font-size: 14px;
  }

  .admin-panel-head h2 {
    font-size: 32px;
  }

  .admin-table th {
    font-size: 10px;
  }

  .admin-table td {
    font-size: 12px;
  }
}

/* V1 — checkout sem largura mínima herdada e sem corte em telas estreitas. */
.checkout-shell,
.checkout-intro,
.checkout-layout,
.checkout-order,
.checkout-payment,
.checkout-confidence,
.checkout-packages,
.checkout-packages button,
.checkout-account-context,
.checkout-setup,
#paymentBrick_container {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 760px) {
  .checkout-page {
    padding-top: 24px;
  }

  .checkout-shell {
    width: min(calc(100% - 28px), var(--content));
    gap: 22px;
  }

  .checkout-intro {
    width: 100%;
  }

  .checkout-intro__top {
    width: 100%;
  }

  .checkout-intro h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 58px);
    overflow-wrap: anywhere;
  }

  .checkout-layout {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-order {
    position: static;
    width: 100%;
  }

  .checkout-payment {
    width: 100%;
  }

  .checkout-confidence {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 350px) {
  .checkout-shell {
    width: calc(100% - 20px);
  }

  .checkout-intro__top {
    align-items: center;
    gap: 8px;
  }

  .checkout-intro__top .profile-kicker {
    max-width: 42%;
    white-space: normal;
  }

  .checkout-intro h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  .checkout-intro > p {
    font-size: 12px;
    line-height: 1.62;
  }

  .checkout-trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .checkout-trust-row span {
    width: 100%;
    min-height: 44px;
  }

  .checkout-order,
  .checkout-payment {
    padding: 16px;
    border-radius: 18px;
  }

  .checkout-packages button {
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px;
  }

  .checkout-packages strong {
    font-size: 21px;
  }

  .checkout-summary > div {
    align-items: flex-start;
  }

  .checkout-summary strong {
    max-width: 58%;
    text-align: right;
    overflow-wrap: anywhere;
  }

  .checkout-payment__heading {
    align-items: flex-start;
  }

  .checkout-payment__heading h2 {
    font-size: 27px;
  }
}

/* V2 — hero de Anunciar legível até 320 px. */
@media (max-width: 350px) {
  body[data-page="anunciar"] .inner-hero__content {
    padding-inline: 15px;
  }

  body[data-page="anunciar"] .inner-hero .eyebrow {
    max-width: 100%;
    display: block;
    padding-left: 0;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.09em;
    overflow-wrap: anywhere;
  }

  body[data-page="anunciar"] .inner-hero .eyebrow::before {
    display: none;
  }

  body[data-page="anunciar"] .inner-hero h1 {
    max-width: 100%;
    font-size: 37px;
    line-height: 0.96;
    letter-spacing: -0.035em;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  body[data-page="anunciar"] .inner-hero p {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.55;
  }
}

/* V3 — cards e cabeçalho do feed de prévias contidos na viewport útil. */
@media (max-width: 640px) {
  body[data-page="videos"] .page-content {
    width: 100%;
    padding-inline: max(10px, env(safe-area-inset-left));
  }

  body[data-page="videos"] .video-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  body[data-page="videos"] .video-card {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    box-sizing: border-box;
  }

  .preview-feed-shell,
  .preview-feed-track,
  .preview-feed-item {
    width: 100dvw;
    max-width: 100dvw;
  }

  .preview-feed-header {
    width: 100%;
    grid-template-columns: minmax(62px, 1fr) auto;
    padding-inline: max(6px, env(safe-area-inset-left)) max(6px, env(safe-area-inset-right));
    box-sizing: border-box;
  }

  .preview-feed-heading {
    max-width: none;
  }

  .preview-feed-tools {
    gap: 4px;
  }

  .preview-feed-follow-button {
    min-width: 78px;
    padding-inline: 9px;
  }

  .preview-feed-sound,
  .preview-feed-close {
    width: 42px;
    min-width: 42px;
    flex-basis: 42px;
  }

  .preview-feed-counter {
    min-width: 27px;
    font-size: 9px;
  }
}

@media (max-width: 340px) {
  .preview-feed-heading span {
    font-size: 8px;
  }

  .preview-feed-heading strong {
    font-size: 11px;
  }

  .preview-feed-follow-button {
    min-width: 72px;
    min-height: 42px;
    height: 42px;
    gap: 4px;
    padding-inline: 7px;
    font-size: 8px;
  }

  .preview-feed-follow-button svg {
    width: 14px;
    height: 14px;
  }

  .preview-feed-sound,
  .preview-feed-close {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    flex-basis: 40px;
  }
}

/* V4/V5 — saldo na dock legível sem alterar a altura da barra. */
@media (max-width: 940px) {
  .mobile-dock__credits {
    min-width: 62px;
    max-width: 68px;
    height: 18px;
    padding-inline: 8px;
  }

  .mobile-dock__credits b {
    max-width: 49px;
    font-size: 9.5px;
  }

  .mobile-dock__credits span {
    font-size: 8.5px;
  }

  .header-auth-button {
    min-height: 44px;
  }
}

/* V6 — data completa sem elipse no perfil. */
.profile-stat strong[data-last-login] {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
}

@media (max-width: 420px) {
  .profile-stat strong[data-last-login] {
    font-size: 11px;
    line-height: 1.35;
  }
}

/* V7 — linhas editoriais sempre começam dentro da área útil. */
@media (max-width: 940px) {
  .inner-hero .eyebrow,
  .section-heading .eyebrow,
  .legal-panel .eyebrow {
    max-width: 100%;
    margin-left: 0;
  }

  .inner-hero .eyebrow::before,
  .section-heading .eyebrow::before {
    transform: none;
  }
}

@media (max-width: 420px) {
  .inner-hero .eyebrow::before,
  .section-heading .eyebrow::before {
    width: 18px;
    margin-right: 8px;
  }
}

/* V8 — painel administrativo convertido em cards operáveis no celular. */
@media (max-width: 760px) {
  .admin-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .admin-header-actions {
    gap: 8px;
  }

  .admin-header-actions .btn-outline,
  .admin-header-actions .btn-primary {
    padding-inline: 12px;
  }

  .admin-main {
    padding: 18px 12px 32px;
  }

  .admin-panel-head {
    align-items: stretch;
  }

  .admin-panel-head > .btn-primary,
  .admin-panel-head > .btn-outline {
    width: 100%;
  }

  .admin-tools,
  .admin-data-tools {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .admin-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .admin-table,
  .admin-table tbody,
  .admin-table tr,
  .admin-table td {
    display: block;
    width: 100%;
  }

  .admin-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .admin-table tbody {
    display: grid;
    gap: 12px;
  }

  .admin-table tr {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 17px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.026), rgba(5, 5, 5, 0.96));
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  }

  .admin-table td {
    min-height: 44px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border: 0;
    font-size: 12px;
  }

  .admin-table td::before {
    content: attr(data-label);
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .admin-table td:first-child {
    display: block;
    padding-top: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .admin-table td:first-child::before {
    display: none;
  }

  .admin-model-cell img {
    width: 58px;
    height: 70px;
  }

  .admin-actions {
    grid-template-columns: 1fr !important;
  }

  .admin-actions::before {
    margin-bottom: 2px;
  }

  .admin-actions .btn-outline,
  .admin-actions a.btn-outline {
    width: 100%;
    min-height: 44px;
  }
}

/* Complemento de legibilidade identificado na varredura em 320 px. */
.hero-catalog-cta__copy small,
.model-profile-link span,
.credit-plan-card em,
.credit-plans__trust span,
.profile-following-trigger span,
.profile-credit-wallet__balance small,
.preview-feed-tip small,
.preview-feed-guide__copy small {
  font-size: 10px;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .model-card--catalog .model-profile-link {
    font-size: 10px;
  }

  .profile-following-trigger {
    min-height: 44px;
  }

  .profile-following-trigger b {
    min-width: 20px;
    min-height: 20px;
    display: inline-grid;
    place-items: center;
    font-size: 10px;
  }
}

/* Correção isolada do ícone do WhatsApp no rodapé. */
.site-footer .socials .footer-whatsapp-icon {
  display: block;
  width: 22px;
  height: 22px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: none;
}

.site-footer .socials a[href*="wa.me"] {
  line-height: 0;
}

@media (max-width: 760px) {
  .site-footer .socials .footer-whatsapp-icon {
    width: 23px;
    height: 23px;
  }
}
