:root {
  --navy: #16204d;
  --ink: #2b3155;
  --muted: #69708e;
  --purple: #4b4ecf;
  --purple-dark: #393cad;
  --purple-pale: #eeeefb;
  --mint: #1f9d88;
  --mint-pale: #e7f7f3;
  --line: #e7e7f1;
  --surface: #fff;
  --background: #fbfbfe;
  --shadow: 0 24px 70px rgba(22, 32, 77, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Quicksand, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  border-radius: 9px;
  background: #fff;
  padding: 10px 14px;
}

.skip:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 70px;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(231, 231, 241, 0.92);
  background: rgba(251, 251, 254, 0.9);
  backdrop-filter: blur(16px) saturate(140%);
}

.brand {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
}

.brand strong {
  font-size: 19px;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-header nav a,
.site-footer a {
  color: #42496f;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer a:hover {
  color: var(--purple);
}

.header-action {
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 8px 22px rgba(75, 78, 207, 0.24);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 18px;
  text-decoration: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  padding: clamp(70px, 9vw, 120px) clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  filter: blur(15px);
}

.hero::before {
  top: -180px;
  left: -170px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(75, 78, 207, 0.16), transparent 68%);
}

.hero::after {
  right: -130px;
  bottom: -180px;
  width: 530px;
  height: 530px;
  background: radial-gradient(circle, rgba(31, 157, 136, 0.14), transparent 68%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0 20px;
  max-width: 18ch;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero h1 em {
  display: block;
  color: var(--purple);
  font-style: normal;
}

.hero-copy > p:not(.direct-note) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 25px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--purple), #6c57d6);
  box-shadow: 0 13px 30px rgba(75, 78, 207, 0.28);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
}

.direct-note {
  margin: 19px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.direct-note span {
  color: var(--mint);
  font-weight: 700;
}

.partner-shortcut {
  margin-top: 13px;
  display: inline-block;
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  text-underline-offset: 3px;
}

.directory-preview {
  position: relative;
  border: 1px solid #e2e0f3;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.5vw, 28px);
  transform: rotate(1.4deg);
  backdrop-filter: blur(14px);
}

.directory-preview::before {
  position: absolute;
  inset: -12px 30px auto;
  z-index: -1;
  height: 45px;
  border-radius: 28px;
  background: #e6e2fb;
  content: "";
}

.preview-filter {
  margin-bottom: 13px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  padding: 10px 13px;
}

.preview-filter span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.preview-filter strong {
  color: var(--navy);
  font-size: 13px;
}

.preview-filter i {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--purple);
  font-style: normal;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(22, 32, 77, 0.06);
  padding: 14px;
}

.profile-card img {
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: cover;
}

.profile-card > div {
  min-width: 0;
}

.profile-card small {
  color: var(--purple);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-card h2 {
  margin: 4px 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}

.profile-card p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
}

.profile-card span {
  display: inline-block;
  margin: 2px 4px 0 0;
  border-radius: 999px;
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 9.5px;
  font-weight: 700;
  padding: 4px 7px;
}

.profile-pair {
  margin-top: 11px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.profile-card.compact {
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
}

.profile-card.compact h2 {
  font-size: 12px;
}

.trust-strip {
  padding: 24px clamp(22px, 7vw, 110px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: #fff;
}

.trust-strip span {
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
}

.trust-strip b {
  color: var(--navy);
}

.section {
  padding: clamp(76px, 9vw, 112px) clamp(22px, 7vw, 110px);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.specialties-copy h2,
.boundaries-card h2,
.final-cta h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(29px, 4vw, 43px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-heading p,
.specialties-copy p,
.boundaries-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.steps {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 24px 21px;
}

.steps article > b {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 12px;
}

.steps h3 {
  margin: 17px 0 7px;
  color: var(--navy);
  font-size: 17px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.specialties-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
  background: var(--navy);
}

.specialties-section .eyebrow {
  color: #7bd8c6;
}

.specialties-copy h2 {
  color: #fff;
}

.specialties-copy p {
  color: #c6cbe4;
}

.specialties-copy a {
  margin-top: 22px;
  display: inline-flex;
  gap: 8px;
  color: #7bd8c6;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.specialty-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.specialty-cloud span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 600;
  padding: 12px 17px;
}

.specialty-cloud span:nth-child(3n + 1) {
  background: rgba(95, 201, 180, 0.15);
  color: #a2e6d9;
}

.boundaries-section {
  padding-bottom: 35px;
}

.boundaries-card {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  border: 1px solid #dbd8f2;
  border-radius: 25px;
  background: linear-gradient(145deg, #f7f5ff, #fff);
  padding: clamp(27px, 5vw, 48px);
}

.boundaries-card h2 {
  font-size: clamp(25px, 3vw, 35px);
}

.boundaries-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: var(--mint-pale);
  color: var(--mint);
  font-size: 22px;
  font-weight: 700;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  align-items: start;
  gap: clamp(45px, 7vw, 100px);
  background:
    radial-gradient(circle at 8% 18%, rgba(75, 78, 207, 0.12), transparent 28%),
    #f4f3fb;
}

.partner-copy {
  position: sticky;
  top: 105px;
}

.partner-copy h2 {
  margin: 11px 0 15px;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.partner-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.partner-copy ul {
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.partner-copy li {
  position: relative;
  padding-left: 27px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.partner-copy li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-pale);
  color: var(--mint);
  content: "✓";
  font-size: 11px;
}

.partner-form {
  border: 1px solid #dedcf0;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(22, 32, 77, 0.1);
  padding: clamp(24px, 4vw, 39px);
}

.form-heading {
  margin-bottom: 25px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.form-heading strong {
  color: var(--navy);
  font-size: 20px;
}

.form-heading span,
.form-grid small {
  color: var(--muted);
  font-size: 11px;
}

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

.form-grid label:not(.remote-check),
.form-grid label:not(.remote-check) > span {
  display: grid;
}

.form-grid label > span {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #dcddea;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  padding: 11px 12px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-grid textarea {
  resize: vertical;
  line-height: 1.5;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(75, 78, 207, 0.12);
}

.form-grid label.span-2 {
  grid-column: 1 / -1;
}

.form-grid small {
  margin-top: 5px;
}

.remote-check {
  align-self: end;
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.remote-check input,
.partner-consents input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  accent-color: var(--purple);
}

.remote-check span {
  margin: 0 !important;
}

.bot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.partner-consents {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 21px;
}

.partner-consents label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #555c7a;
  font-size: 12px;
  line-height: 1.5;
}

.partner-consents input {
  margin-top: 1px;
}

.privacy-note {
  margin: 17px 0;
  color: var(--muted);
  font-size: 11.5px;
}

.privacy-note a {
  color: var(--purple);
  font-weight: 700;
}

.partner-submit {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.partner-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
}

.form-status.success {
  color: #127665;
}

.form-status.error {
  color: #b43c45;
}

.final-cta {
  margin: clamp(40px, 6vw, 75px) clamp(22px, 7vw, 110px) clamp(75px, 9vw, 110px);
  padding: clamp(32px, 5vw, 55px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0, rgba(129, 105, 225, 0.45), transparent 32%),
    var(--navy);
}

.final-cta h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(27px, 3.5vw, 40px);
}

.final-cta .eyebrow {
  color: #9be4d6;
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 34px clamp(22px, 6vw, 90px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 30px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer b {
  color: var(--navy);
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero,
  .specialties-section,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    max-width: none;
  }

  .directory-preview {
    width: min(600px, 100%);
    justify-self: center;
    transform: none;
  }

  .trust-strip,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .specialties-section {
    gap: 45px;
  }

  .partner-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 64px;
    gap: 14px;
  }

  .header-action {
    padding: 10px 13px;
    font-size: 12px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .profile-pair,
  .trust-strip,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid label.span-2 {
    grid-column: auto;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-submit {
    width: 100%;
  }

  .trust-strip span {
    text-align: left;
  }

  .boundaries-card {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .button {
    transition: none;
  }
}

/* ============================================================
   Diretório público mascarado (prova de conceito antes do cadastro)
   ============================================================ */
.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;
}

/* Prévia ao vivo no hero (reaproveita o cartão .directory-preview) */
.directory-preview {
  transform: none;
  display: grid;
  gap: 10px;
}
.hh-preview-skeleton {
  display: grid;
  gap: 10px;
}
.hh-preview-skeleton span {
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(100deg, #eeeefb 30%, #f7f7fe 50%, #eeeefb 70%);
  background-size: 200% 100%;
  animation: hh-shimmer 1.3s ease-in-out infinite;
}
@keyframes hh-shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}
.hh-preview-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.hh-preview-head strong { color: var(--navy); font-size: 15px; }
.hh-preview-head span { color: var(--muted); font-size: 11.5px; }
.hh-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}
.hh-mini:hover, .hh-mini:focus-visible {
  border-color: var(--purple);
  transform: translateY(-2px);
  outline: none;
}
.hh-mini > div { display: grid; gap: 1px; flex: 1; min-width: 0; }
.hh-mini strong {
  color: var(--navy);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hh-mini span { color: var(--muted); font-size: 12px; }
.hh-mini-lock { color: var(--purple); font-size: 15px; }
.hh-preview-more {
  justify-self: start;
  color: var(--purple);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  margin-top: 2px;
}
.hh-avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--purple), #6d6fe0);
  color: #fff;
  font-weight: 700;
  font-size: 19px;
}
.hh-avatar.sm { width: 40px; height: 40px; border-radius: 12px; font-size: 16px; }

/* Seção de busca */
.directory-section { display: grid; gap: 22px; }
.hh-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(22, 32, 77, 0.06);
}
.hh-filters .hh-search { flex: 1 1 240px; }
.hh-filters input[type="text"],
.hh-filters #hh-query,
.hh-filters select {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.hh-filters select { flex: 1 1 150px; cursor: pointer; }
.hh-filters #hh-query:focus,
.hh-filters select:focus {
  outline: 2px solid var(--purple);
  outline-offset: 1px;
}
.hh-remote {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.hh-count { color: var(--muted); font-size: 14px; font-weight: 600; margin: 0; }

.hh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.hh-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 14px 44px rgba(22, 32, 77, 0.07);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.hh-card:hover, .hh-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--purple);
  box-shadow: 0 22px 60px rgba(75, 78, 207, 0.16);
  outline: none;
}
.hh-card-top { display: flex; align-items: flex-start; gap: 12px; }
.hh-card-top > div { flex: 1; min-width: 0; }
.hh-card-top h3 {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
}
.hh-kind {
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hh-verified {
  flex: none;
  align-self: flex-start;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--mint-pale);
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
}
.hh-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  color: var(--muted);
  font-size: 13px;
}
.hh-meta span { position: relative; }
.hh-meta span + span::before {
  content: "·";
  position: absolute;
  left: -9px;
  color: #c7c9dc;
}
.hh-summary {
  margin: 0;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hh-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.hh-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--purple-pale);
  color: var(--purple-dark);
  font-size: 12px;
  font-weight: 600;
}
.hh-seniorities { color: var(--muted); font-size: 12.5px; }
.hh-seniorities small { color: var(--ink); font-weight: 700; }
.hh-locked {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px dashed #cfd0e6;
  background: #f7f7fd;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}
.hh-lock { font-size: 14px; }
.hh-card-cta {
  margin-top: auto;
  color: var(--purple);
  font-weight: 700;
  font-size: 14px;
}
.hh-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

/* Modal de gate */
.hh-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}
.hh-modal[hidden] { display: none; }
.hh-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 46, 0.55);
  backdrop-filter: blur(3px);
}
.hh-modal-card {
  position: relative;
  width: min(460px, 100%);
  padding: 30px;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 40px 90px rgba(15, 20, 46, 0.35);
  animation: hh-pop 180ms ease;
}
@keyframes hh-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.hh-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #f0f0f8;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.hh-modal-close:hover { background: #e6e6f2; color: var(--navy); }
.hh-modal-lock {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--purple-pale);
  font-size: 22px;
  margin-bottom: 10px;
}
.hh-modal-card h2 {
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}
.hh-modal-card > p { margin: 0 0 16px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.hh-modal-benefits {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 9px;
}
.hh-modal-benefits li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: 14px;
}
.hh-modal-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint-pale);
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
}
.hh-modal-card .button.primary { width: 100%; }
.hh-modal-login {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.hh-modal-login:hover { color: var(--purple); }

@media (max-width: 720px) {
  .hh-grid { grid-template-columns: 1fr; }
  .hh-filters { flex-direction: column; align-items: stretch; }
}
