/* Golden Minas — componentes adicionais de conteúdo, SEO e conversão */
:root {
  --gold-ink: #b77a11;
  --gold-pale: #fff0c4;
}

/* Header accommodates the complete desktop navigation without sacrificing mobile use.
   Breakpoint harmonizado com o site.css (980px) para evitar conflito de estilos. */
@media (min-width: 981px) {
  .header__inner {
    gap: 14px;
  }
  .main-nav {
    flex: 1;
    justify-content: flex-end;
  }
  .main-nav__links {
    gap: clamp(9px, 1.25vw, 18px);
  }
  .main-nav__links > a {
    font-size: clamp(0.68rem, 0.78vw, 0.8rem);
  }
  .header__cta {
    display: none;
  }
}
@media (max-width: 980px) {
  .menu-button {
    display: block;
  }
  /* O posicionamento do painel fixo pertence ao site.css; aqui só o conforto do toque. */
  .main-nav__links > a {
    min-height: 52px;
    padding: 16px 3px;
    font-size: 1.05rem;
  }
  .header__cta {
    display: none;
  }
}

/* Small utility lines and source cards */
.notice-panel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(228, 179, 75, 0.32);
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(228, 179, 75, 0.13),
    rgba(228, 179, 75, 0.03)
  );
}
.notice-panel__mark {
  flex: 0 0 auto;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 231, 164, 0.4);
  border-radius: 50%;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  font-weight: 700;
}
.notice-panel h2,
.notice-panel h3 {
  color: var(--gold-pale);
  font-family: var(--font);
  font-size: 1rem;
  letter-spacing: 0;
}
.notice-panel p {
  margin-top: 5px;
  color: var(--white-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}
.notice-panel a {
  color: var(--gold-light);
  border-bottom: 1px solid currentColor;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 920px;
  margin: 42px auto 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(228, 179, 75, 0.08));
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 0 0 27px;
}
.timeline__item:last-child {
  padding-bottom: 0;
}
.timeline__step {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #271a03;
  border: 1px solid #ffe8a2;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe9a5, #cf9021);
  font-size: 0.82rem;
  font-weight: 900;
}
.timeline__body {
  padding: 17px 20px;
  border: 1px solid rgba(228, 179, 75, 0.25);
  border-radius: 14px;
  background: #111718;
}
.timeline__body h3 {
  color: var(--white);
  font-size: 1.08rem;
}
.timeline__body p {
  margin-top: 6px;
  color: var(--white-muted);
  font-size: 0.88rem;
  line-height: 1.63;
}
.timeline__arrow {
  position: absolute;
  bottom: -3px;
  left: 21px;
  z-index: 2;
  color: var(--gold);
  font-size: 1.3rem;
}

.service-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.service-pillar {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(228, 179, 75, 0.2);
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(145deg, #181e1f, #0c1011);
}
.service-pillar__tag {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-pillar h3 {
  margin-top: 10px;
  color: var(--white);
  font-size: 1.1rem;
}
.service-pillar p {
  margin-top: 8px;
  color: var(--white-muted);
  font-size: 0.83rem;
  line-height: 1.57;
}
.service-pillar a {
  width: max-content;
  margin-top: auto;
  padding-top: 16px;
  color: var(--gold-light);
  border-bottom: 1px solid currentColor;
  font-size: 0.81rem;
  font-weight: 800;
}
.service-pillar:hover {
  border-color: rgba(228, 179, 75, 0.72);
  transform: translateY(-3px);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.reference-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}
.reference-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(228, 179, 75, 0.2);
  border-radius: 13px;
  background: #111617;
}
.reference-link__number {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #2b1d03;
  border-radius: 50%;
  background: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
}
.reference-link strong {
  display: block;
  color: var(--gold-pale);
  font-size: 0.9rem;
}
.reference-link span {
  display: block;
  margin-top: 3px;
  color: var(--white-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.reference-link:hover {
  border-color: var(--gold);
}

.link-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.link-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--gold-pale);
  border: 1px solid rgba(228, 179, 75, 0.35);
  border-radius: 999px;
  background: rgba(228, 179, 75, 0.075);
  font-size: 0.77rem;
  font-weight: 800;
}
.link-chip::after {
  content: "↗";
  font-size: 0.83rem;
}
.link-chip:hover {
  color: #201504;
  background: var(--gold);
}

.home-problem {
  background: linear-gradient(180deg, #0b0f10, #141a1b);
}
.home-problem__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
}
.home-problem__statement {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(228, 179, 75, 0.32);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(228, 179, 75, 0.18),
      transparent 40%
    ),
    #101516;
}
.home-problem__statement h2 {
  margin-top: 16px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}
.home-problem__statement p {
  margin-top: 18px;
  color: var(--white-muted);
  line-height: 1.75;
}
.home-problem__statement .button {
  margin-top: 26px;
}
.home-problem__points {
  display: grid;
  gap: 13px;
}
.home-point {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 15px;
  align-items: start;
  padding: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.home-point:last-child {
  border-bottom: 0;
}
.home-point__number {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(228, 179, 75, 0.4);
  border-radius: 50%;
  background: rgba(228, 179, 75, 0.08);
  font-family: Georgia, serif;
  font-size: 0.9rem;
}
.home-point h3 {
  color: var(--white);
  font-size: 1rem;
}
.home-point p {
  margin-top: 3px;
  color: var(--white-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.authority-item {
  padding: 24px;
  border: 1px solid rgba(228, 179, 75, 0.21);
  border-radius: 15px;
  background: #111617;
}
.authority-item h3 {
  color: var(--gold-pale);
  font-size: 1.08rem;
}
.authority-item p {
  margin-top: 8px;
  color: var(--white-muted);
  font-size: 0.86rem;
  line-height: 1.62;
}

/* --- Prova social: cartão de depoimento autorizado (arte do cliente) --- */
.depoimento-card {
  position: relative;
  margin: 44px auto 40px;
  max-width: 860px;
  padding: clamp(28px, 5vw, 56px);
  background: #f5f6f8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: #3e4754;
  overflow: hidden;
}
.depoimento-card__aspas {
  position: absolute;
  top: clamp(14px, 3.4vw, 40px);
  right: clamp(18px, 4vw, 48px);
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 104px);
  line-height: 1;
  color: #e8ddc7;
  pointer-events: none;
  user-select: none;
}
.depoimento-card__topo {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 26px);
  margin-bottom: clamp(20px, 3.4vw, 34px);
}
.depoimento-card__foto {
  flex: 0 0 auto;
  width: clamp(72px, 12vw, 108px);
  height: clamp(72px, 12vw, 108px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(11, 14, 16, 0.2);
}
.depoimento-card__nome {
  font-style: normal;
  font-weight: 800;
  font-size: clamp(1.35rem, 3.4vw, 2.05rem);
  letter-spacing: -0.01em;
  color: #1c2530;
}
.depoimento-card__texto {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.85;
}
.depoimento-card__rodape {
  margin-top: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.depoimento-card__contexto {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b8494;
}
.depoimento-card__barra {
  display: block;
  width: 58px;
  height: 4px;
  border-radius: 2px;
  background: var(--gold);
}

.depoimento-card__texto p {
  margin: 0;
}
.depoimento-card__texto p + p {
  margin-top: 0.9em;
}

/* Grade de depoimentos (home: 3 destaques · página: todos) */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
  align-items: stretch;
}
.depoimentos-grid .depoimento-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: none;
}
.depoimentos-grid .depoimento-card__texto {
  flex: 1;
}
.depoimentos-grid--page {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1040px;
  margin-inline: auto;
}
.depoimentos-vermais {
  margin: 36px 0 6px;
  text-align: center;
}
@media (max-width: 980px) {
  .depoimentos-grid,
  .depoimentos-grid--page {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }
  .depoimentos-grid {
    margin-top: 34px;
  }
}

.content-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.content-feature {
  padding: 22px;
  border: 1px solid rgba(228, 179, 75, 0.2);
  border-radius: 15px;
  background: #13191a;
}
.content-feature__category {
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.content-feature h3 {
  margin-top: 9px;
  color: var(--white);
  font-size: 1.12rem;
}
.content-feature p {
  margin-top: 8px;
  color: var(--white-muted);
  font-size: 0.83rem;
  line-height: 1.58;
}
.content-feature a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-light);
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
}

.faq-intro {
  margin: 16px auto 0;
  max-width: 700px;
  color: var(--white-muted);
  text-align: center;
}
.footer-company-line {
  max-width: 300px;
  margin-top: 9px;
  color: var(--gold-pale);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}
.footer-col [hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .service-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-problem__inner {
    grid-template-columns: 1fr;
  }
  .authority-grid,
  .content-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .timeline__item {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding-bottom: 19px;
  }
  .timeline__step {
    width: 46px;
    height: 46px;
  }
  .timeline::before {
    left: 22px;
  }
  .timeline__body {
    padding: 15px;
  }
  .service-pillar-grid,
  .authority-grid,
  .content-feature-grid {
    grid-template-columns: 1fr;
  }
  .home-problem__statement {
    padding: 25px 20px;
  }
  .reference-link {
    padding: 15px;
  }
}

/* Home: três serviços após a remoção da página Redução de INSS */
#servicos .service-pillar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px) {
  #servicos .service-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  #servicos .service-pillar-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   Experiência mobile e movimento suave — atualização 2026-09-13
   Animações progressivas: respeitam prefers-reduced-motion (tratado
   globalmente no site.css) e nunca escondem conteúdo sem JavaScript.
   ===================================================================== */

/* --- Base de toque: sem atraso de clique e realce dourado sutil --- */
html {
  -webkit-text-size-adjust: 100%;
}
a,
button,
summary,
input,
select,
textarea,
label {
  touch-action: manipulation;
}
a,
button,
summary {
  -webkit-tap-highlight-color: rgba(228, 179, 75, 0.22);
}

/* --- Barra dourada de progresso de leitura --- */
.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f9d573, var(--gold) 55%, #c5881e);
  box-shadow: 0 0 12px rgba(228, 179, 75, 0.5);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* --- Véu atrás do menu mobile --- */
.menu-backdrop {
  position: fixed;
  z-index: 985;
  inset: 0;
  background: rgba(3, 5, 6, 0.55);
  pointer-events: none;
}
.menu-backdrop[hidden] {
  display: none;
}

/* --- Itens do menu mobile entram em cascata --- */
@keyframes nav-link-in {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 980px) {
  .main-nav.is-open .main-nav__links > a {
    animation: nav-link-in 0.35s var(--ease) both;
  }
  .main-nav.is-open .main-nav__links > a:nth-child(1) {
    animation-delay: 0.05s;
  }
  .main-nav.is-open .main-nav__links > a:nth-child(2) {
    animation-delay: 0.09s;
  }
  .main-nav.is-open .main-nav__links > a:nth-child(3) {
    animation-delay: 0.13s;
  }
  .main-nav.is-open .main-nav__links > a:nth-child(4) {
    animation-delay: 0.17s;
  }
  .main-nav.is-open .main-nav__links > a:nth-child(5) {
    animation-delay: 0.21s;
  }
  .main-nav.is-open .main-nav__links > a:nth-child(6) {
    animation-delay: 0.25s;
  }
  .main-nav.is-open .main-nav__links > a:nth-child(7) {
    animation-delay: 0.29s;
  }
  .main-nav.is-open .main-nav__links > a:nth-child(8) {
    animation-delay: 0.33s;
  }
  .main-nav.is-open .main-nav__links > a:nth-child(9) {
    animation-delay: 0.37s;
  }
}

/* --- Entrada do herói (home e páginas internas) --- */
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero__content > *,
  .service-hero .container > * {
    animation: hero-rise 0.7s var(--ease) both;
  }
  .hero__content > *:nth-child(2),
  .service-hero .container > *:nth-child(2) {
    animation-delay: 0.08s;
  }
  .hero__content > *:nth-child(3),
  .service-hero .container > *:nth-child(3) {
    animation-delay: 0.16s;
  }
  .hero__content > *:nth-child(4),
  .service-hero .container > *:nth-child(4) {
    animation-delay: 0.24s;
  }
  .hero__content > *:nth-child(5),
  .service-hero .container > *:nth-child(5) {
    animation-delay: 0.3s;
  }
}

/* --- Cartões ganham elevação suave apenas em dispositivos com ponteiro --- */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .info-card,
  .post-card,
  .case-card,
  .team-member,
  .authority-item,
  .content-feature,
  .reference-link {
    transition:
      transform 0.3s var(--ease),
      border-color 0.3s ease,
      box-shadow 0.3s ease;
  }
  .info-card:hover,
  .post-card:hover,
  .case-card:hover,
  .team-member:hover,
  .authority-item:hover,
  .content-feature:hover,
  .reference-link:hover {
    transform: translateY(-4px);
    border-color: rgba(228, 179, 75, 0.55);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
  }
}

/* --- Brilho varrendo os botões dourados --- */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .button--gold {
    position: relative;
    overflow: hidden;
  }
  .button--gold::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -70%;
    width: 45%;
    height: 140%;
    background: linear-gradient(
      105deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent
    );
    transform: skewX(-20deg);
    transition: left 0.55s var(--ease);
    pointer-events: none;
  }
  .button--gold:hover::after {
    left: 120%;
  }
}

/* --- Botão flutuante: entrada e pulso dourado discreto --- */
@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes float-glow {
  0%,
  100% {
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.42),
      0 0 0 0 rgba(228, 179, 75, 0.34);
  }
  55% {
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.42),
      0 0 0 14px rgba(228, 179, 75, 0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .whatsapp-float {
    animation:
      float-in 0.55s var(--ease) 0.5s backwards,
      float-glow 3.4s ease-in-out 1.6s infinite;
  }
}

/* --- Imagens diferidas surgem com fade --- */
html.js img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.55s ease;
}
html.js img[loading="lazy"].is-loaded {
  opacity: 1;
}

/* --- FAQ: resposta anima a altura mantendo o <details> nativo --- */
details.faq-item .faq-item__answer {
  transition:
    height 0.32s var(--ease),
    opacity 0.3s ease;
}
details.faq-item summary {
  transition:
    color 0.2s ease,
    background 0.25s ease;
}

/* --- Rodapé e flutuante confortáveis para o polegar --- */
@media (max-width: 620px) {
  .footer-col li a {
    display: inline-block;
    padding: 7px 0;
  }
  .whatsapp-float {
    max-width: calc(100vw - 28px);
  }
  .whatsapp-float span {
    font-size: 0.74rem;
    line-height: 1.25;
    letter-spacing: 0.01em;
  }
}
@media (max-width: 380px) {
  .whatsapp-float span {
    font-size: 0.68rem;
  }
  html {
    scroll-padding-top: 124px;
  }
  .header__inner {
    min-height: 110px;
  }
  .hero {
    min-height: calc(100svh - 110px);
  }
  .main-nav {
    top: 110px;
  }
  .brand {
    gap: 10px;
  }
  .brand__inss {
    font-size: 0.52rem;
  }
  .brand__inss strong {
    font-size: 0.66rem;
  }
  .brand__logo {
    width: 128px;
  }
}

/* --- Diálogo de escolha de especialista (criado via JS) --- */
.specialist-choice {
  width: min(430px, calc(100vw - 32px));
  padding: 0;
  color: var(--paper);
  border: 1px solid rgba(228, 179, 75, 0.5);
  border-radius: 20px;
  background: linear-gradient(150deg, #171d1e, #07090a 70%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.specialist-choice::backdrop {
  background: rgba(3, 5, 6, 0.66);
}
@keyframes specialist-dialog-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.specialist-choice[open] {
  animation: specialist-dialog-in 0.28s var(--ease) both;
}
.specialist-choice__inner {
  position: relative;
  padding: 26px 24px 22px;
}
.specialist-choice__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  color: var(--gold-pale);
  border: 1px solid rgba(228, 179, 75, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.15rem;
  line-height: 1;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.25s var(--ease);
}
.specialist-choice__close:hover {
  color: #201504;
  background: var(--gold);
  transform: rotate(90deg);
}
.specialist-choice__eyebrow {
  display: block;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.specialist-choice h2 {
  margin-top: 8px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.45rem;
}
.specialist-choice__inner > p {
  margin-top: 6px;
  color: rgba(247, 241, 229, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}
.specialist-choice__list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.specialist-choice__person {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 231, 164, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s var(--ease);
}
.specialist-choice__person:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 179, 75, 0.7);
  background: rgba(228, 179, 75, 0.1);
}
.specialist-choice__avatar {
  display: grid;
  flex: none;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #241803;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe9a5, #cf9021);
  font-size: 1.05rem;
  font-weight: 900;
}
.specialist-choice__person strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}
.specialist-choice__person small {
  display: block;
  color: rgba(247, 241, 229, 0.62);
  font-size: 0.74rem;
}
.specialist-choice__person svg {
  width: 22px;
  height: 22px;
  margin-left: auto;
  color: var(--gold-light);
}
.specialist-choice__note {
  margin-top: 14px;
  color: rgba(247, 241, 229, 0.55);
  font-size: 0.72rem;
  line-height: 1.5;
}
body.specialist-dialog-open {
  overflow: hidden;
}
