/* ===========================
   APP AREA — design tokens reused from style.css
   (--gold, --gold-light, --gold-dark, --on-gold, --black, --bg,
    --bg-media, --navy, --text, --text-muted, --radius, --container, --font)
=========================== */

body.app-page { background: var(--bg); padding-top: 76px; }

/* ===========================
   APP HEADER / NAV
   (ícone empilhado sobre o rótulo + barra colada no topo do header
    quando ativo — mesma composição do app de referência)
=========================== */
.app-nav { gap: 30px; align-self: stretch; }
.app-nav .nav__link {
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 76px;
  border-top: 2px solid transparent;
  font-size: 11px;
  font-weight: 500;
  color: #ccc;
}
.app-nav .nav__link svg { width: 20px; height: 20px; }
.app-nav .nav__link:hover { color: #fff; }
.app-nav .nav__link.is-active { color: var(--gold); border-top-color: var(--gold); }

.nav-icon-wrap { position: relative; display: inline-flex; }

.nav-badge {
  position: absolute;
  top: -6px;
  right: -9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--on-gold);
  font-size: 10px;
  font-weight: 700;
  border: 2px solid var(--black);
  box-sizing: content-box;
}
.nav-badge[hidden] { display: none; }

.header__actions .btn--sm { padding: 9px 18px; font-size: 13px; }

.avatar-menu { position: relative; }
.avatar-menu__trigger {
  background: none; border: none; padding: 0; cursor: pointer;
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  overflow: hidden;
}
.avatar-menu__trigger:hover { border-color: var(--gold); }
.avatar-photo { width: 100%; height: 100%; font-size: 13px; }

.avatar-menu__dropdown {
  position: absolute;
  top: 130%;
  right: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  z-index: 50;
}
.avatar-menu.is-open .avatar-menu__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.avatar-menu__user {
  padding: 10px 18px 14px;
  border-bottom: 1px solid #eee;
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
}
.avatar-menu__user strong { font-size: 14px; color: var(--text); }
.avatar-menu__user span { font-size: 12px; color: var(--gold-dark); font-weight: 600; margin-top: 2px; }
.avatar-menu__dropdown a,
.avatar-menu__dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 18px;
  color: var(--text);
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.avatar-menu__dropdown a:hover,
.avatar-menu__dropdown button:hover { background: var(--bg-media); color: var(--gold-dark); }

@media (max-width: 900px) {
  body.app-page { padding-top: 76px; }
  .app-nav.nav { display: none; }
  .header.mobile-open .app-nav.nav { display: flex; }
  .header__actions .btn--sm { display: none; }
  .header.mobile-open .header__actions .btn--sm { display: inline-block; order: 5; margin-top: 8px; }
}

/* ===========================
   APP CONTENT SHELL
=========================== */
.app-main { padding: 32px 0 64px; min-height: 60vh; }
.app-main__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.app-main__header h1 { font-size: 24px; }
.app-main__header p { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* ===========================
   SEGMENTED TABS (Destaques/Novos/Próximos, Interesses)
=========================== */
.seg-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.seg-tabs__btn {
  border: 1px solid #ddd;
  background: #fff;
  color: var(--text);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.seg-tabs__btn:hover { border-color: var(--gold); }
.seg-tabs__btn.is-active { background: var(--black); border-color: var(--black); color: #fff; }
.seg-tabs__btn .count { color: var(--text-muted); font-weight: 500; }
.seg-tabs__btn.is-active .count { color: #ccc; }

/* ===========================
   PROFILE CARD (feed / busca / interesses grids)
=========================== */
/* Card extraído diretamente do DOM/estilos computados do app de referência:
   proporção 170x230 (~0.739), texto sobreposto na própria foto com gradiente,
   não em bloco branco separado. */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 6px;
}
.profile-card {
  display: block;
  color: inherit;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 170 / 230;
  background: #e5e5e5;
}

.profile-card__photo {
  position: absolute; inset: 0;
}

/* área clicável real: cobre a foto, mas para antes da barra de ações de 35px
   (evita <a> aninhado dentro de <a>, igual ao markup do app de referência) */
.profile-card__link {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 35px;
  z-index: 2;
}
.profile-card__photo .placeholder-photo {
  width: 100%; height: 100%; font-size: 15px;
}

/* ponto online */
.profile-card__online {
  position: absolute;
  top: 16px; left: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4fd463;
  z-index: 2;
}

/* badges (verificado/novo/elite): pilha de circulos brancos, canto sup. direito */
.profile-card__badges {
  position: absolute;
  top: 5px; right: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  z-index: 2;
}
.chip-badge {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.chip-badge svg { width: 14px; height: 14px; }
.chip-badge--verified { color: #2e9e5b; }
.chip-badge--new { color: #2b7fd6; font-size: 11px; font-weight: 800; }
.chip-badge--elite { color: #c0392b; }

/* overlay inferior: gradiente exato do original + texto branco sobreposto na foto */
.profile-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 10px 10px 45px;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0) calc(35% - 35px), rgba(0,0,0,.88) calc(100% - 35px));
}
.profile-card__overlay-inner { width: 100%; }
.profile-card__photo-count {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  margin-bottom: 2px;
}
.profile-card__photo-count svg { width: 13px; height: 13px; }
.profile-card__name { font-size: 15px; font-weight: 700; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.profile-card__name span { font-weight: 700; }
.profile-card__meta { font-size: 12px; margin-top: 1px; opacity: .92; display: flex; align-items: center; gap: 8px; min-width: 0; }
.profile-card__meta > span:first-child { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* barra de ações (mensagem/favoritar), 35px, visível no hover como no original */
.profile-card__actions {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 35px;
  display: flex;
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 3;
}
.profile-card:hover .profile-card__actions { opacity: 1; }
.profile-card__actions button,
.profile-card__actions a {
  flex: 1;
  border: none;
  background: rgba(0,0,0,.55);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 15px;
}
.profile-card__actions button:first-child,
.profile-card__actions a:first-child { border-right: 1px solid rgba(255,255,255,.15); }
.profile-card__actions button:hover,
.profile-card__actions a:hover { background: rgba(0,0,0,.75); }
.profile-card__actions button.is-active { color: var(--gold); }
.profile-card__actions svg { width: 16px; height: 16px; }

@media (hover: none) {
  .profile-card__actions { opacity: 1; background: linear-gradient(transparent, rgba(0,0,0,.3)); }
}

/* boosted carousel reuses .carousel from style.css/main.js */
.boost-carousel .media-card,
.boost-carousel .profile-card { flex: 0 0 200px; }
.boost-carousel .carousel__track { gap: 16px; }

/* native promo card inline in grid */
.promo-card {
  grid-column: span 2;
  background: linear-gradient(120deg, var(--navy) 0%, #0d0d1c 100%);
  border-radius: 8px;
  color: #fff;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(217,164,81,.25), transparent 60%);
}
.promo-card__eyebrow {
  position: relative;
  font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  color: var(--gold-light);
}
.promo-card h3 { position: relative; font-size: 18px; max-width: 320px; }
.promo-card p { position: relative; font-size: 13px; color: #cfcfe0; max-width: 340px; }
.promo-card .btn { position: relative; align-self: flex-start; margin-top: 4px; }
@media (max-width: 560px) { .promo-card { grid-column: span 2; } }

/* ===========================
   BUSCA (search layout)
=========================== */
.card-grid.is-list { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 10px; }

.search-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.search-sidebar {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  position: sticky;
  top: 92px;
}
.search-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.search-sidebar__head h2 { font-size: 15px; }
.search-sidebar__head button {
  background: none; border: none; color: var(--gold-dark);
  font-size: 12.5px; font-weight: 600; cursor: pointer;
}
.filter-group { border-bottom: 1px solid #eee; padding: 14px 0; }
.filter-group:last-child { border-bottom: none; }
.filter-group label.filter-group__label {
  display: block; font-size: 13px; font-weight: 700; margin-bottom: 10px; color: var(--text);
}
.filter-group select,
.filter-group input[type="text"] {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 9px 10px;
  font-size: 13px;
  font-family: var(--font);
  background: #fff;
  color: var(--text);
}
.filter-group .pill { font-size: 12px; padding: 6px 12px; }
.filter-group__options { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-group__row { display: flex; align-items: center; gap: 8px; }
.filter-group__row input[type="range"] { flex: 1; accent-color: var(--gold); }
.filter-group__row-value { font-size: 12.5px; color: var(--gold-dark); font-weight: 700; min-width: 70px; text-align: right; }
.filter-checkbox { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.filter-checkbox input { accent-color: var(--gold); width: 15px; height: 15px; }

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.filter-chips__pill {
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  background: #fff;
}
.filter-chips__spacer { flex: 1; }
.filter-chips__action {
  background: none;
  border: none;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}
.filter-chips__action--accent { color: var(--gold-dark); }

.result-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.result-toolbar__count { font-size: 14px; color: var(--text); font-weight: 700; }
.result-toolbar__count span { color: var(--text-muted); font-weight: 400; }
.view-toggle { display: flex; gap: 4px; background: var(--bg-media); border-radius: var(--radius); padding: 3px; }
.view-toggle button {
  border: none; background: none; padding: 6px 12px; border-radius: 3px;
  font-size: 12.5px; cursor: pointer; color: var(--text-muted);
}
.view-toggle button.is-active { background: #fff; color: var(--text); box-shadow: 0 1px 3px rgba(0,0,0,.12); }

@media (max-width: 900px) {
  .search-layout { grid-template-columns: 1fr; }
  .search-sidebar { position: static; }
}

/* ===========================
   PERFIL (view + edit)
   Faixa escura no topo (foto + identidade + acoes), igual ao app de
   referencia, seguida de uma secao clara com galeria de miniaturas e texto.
=========================== */
.profile-hero { background: var(--black); padding: 28px 0 34px; }
.profile-hero__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}
.profile-hero__info { color: #fff; padding-top: 4px; }
.profile-hero__info .profile-view__location { color: #aaa; }
.profile-hero__info .profile-view__actions .btn--outline {
  color: #fff; border-color: rgba(255,255,255,.3);
}
.profile-hero__info .profile-view__actions .btn--outline:hover { background: rgba(255,255,255,.08); }

.profile-view {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}
.profile-gallery__main {
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
}
.profile-hero .profile-gallery__main { width: 260px; }
.profile-gallery__main .placeholder-photo { width: 100%; height: 100%; font-size: 40px; }
.profile-gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.profile-gallery__thumbs button {
  width: 56px; height: 56px; border-radius: 6px; overflow: hidden;
  border: 2px solid transparent; padding: 0; cursor: pointer;
}
.profile-gallery__thumbs button.is-active { border-color: var(--gold); }
.profile-gallery__thumbs .placeholder-photo { width: 100%; height: 100%; font-size: 14px; }

.profile-view__name { font-size: 24px; display: flex; align-items: center; gap: 10px; }
.profile-view__location {
  color: var(--text-muted); font-size: 13.5px; margin: 4px 0 12px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.profile-view__location span { display: inline-flex; align-items: center; gap: 4px; }
.profile-view__location svg { width: 12px; height: 12px; flex: none; opacity: .8; }
.profile-view__badges { display: flex; gap: 8px; margin-bottom: 16px; }
.profile-view__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.profile-view__actions .btn--icon { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; font-size: 13.5px; }

@media (max-width: 700px) {
  .profile-hero__inner { grid-template-columns: 1fr; }
  .profile-hero .profile-gallery__main { width: 100%; max-width: 260px; }
}

.profile-section { margin-bottom: 26px; }
.profile-section h2 { font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); margin-bottom: 10px; }
.profile-section p { color: var(--text); font-size: 15px; line-height: 1.6; max-width: 640px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e2e2e2;
  background: var(--bg-media);
  color: var(--text);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
}
.tag-chip svg { width: 13px; height: 13px; opacity: .6; flex: none; }

.menu-more { position: relative; }
.menu-more__dropdown {
  position: absolute; top: 110%; left: 0;
  background: #fff; border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,.18);
  min-width: 180px; padding: 6px 0; z-index: 20;
  display: none;
}
.menu-more.is-open .menu-more__dropdown { display: block; }
.menu-more__dropdown button, .menu-more__dropdown a {
  display: block; width: 100%; text-align: left; padding: 9px 16px;
  background: none; border: none; font-size: 13.5px; color: var(--text); cursor: pointer; font-family: var(--font);
}
.menu-more__dropdown button:hover, .menu-more__dropdown a:hover { background: var(--bg-media); }

.lightbox-verify {
  position: absolute;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.7);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  cursor: pointer;
}
.lightbox-verify:hover { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }

@media (max-width: 800px) {
  .profile-view { grid-template-columns: 1fr; }
}

/* ===========================
   MENSAGENS (messenger)
=========================== */
.messenger {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  overflow: hidden;
  min-height: 560px;
}
.messenger__list { border-right: 1px solid #eee; overflow-y: auto; max-height: 70vh; }
.messenger__list-head { padding: 16px 18px; border-bottom: 1px solid #eee; font-weight: 700; font-size: 15px; }
.conversation-item {
  display: flex; gap: 12px; padding: 14px 18px; cursor: pointer; border-bottom: 1px solid #f4f4f4;
}
.conversation-item:hover, .conversation-item.is-active { background: var(--bg-media); }
.conversation-item .placeholder-photo { width: 44px; height: 44px; border-radius: 50%; flex: none; font-size: 13px; }
.conversation-item__body { min-width: 0; flex: 1; }
.conversation-item__body .name { font-size: 14px; font-weight: 700; display: flex; justify-content: space-between; }
.conversation-item__body .name time { font-weight: 400; color: var(--text-muted); font-size: 11.5px; }
.conversation-item__body .preview { font-size: 12.5px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.messenger__chat { display: flex; flex-direction: column; height: 100%; }
.messenger__chat-head { padding: 16px 20px; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 12px; }
.messenger__chat-head .placeholder-photo { width: 38px; height: 38px; border-radius: 50%; font-size: 12px; }
.messenger__promo {
  margin: 14px 18px 0;
  background: var(--bg-media);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-muted);
  border-radius: 0 6px 6px 0;
}
.messenger__promo a { color: var(--gold-dark); font-weight: 700; }

.location-banner {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-media);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-bottom: 24px;
}
.location-banner__icon { font-size: 22px; flex: none; }
.location-banner__text { flex: 1; min-width: 0; }
.location-banner__text strong { display: block; font-size: 14px; color: var(--text); }
.location-banner__text p { font-size: 13px; color: var(--text-muted); margin: 2px 0 0; }
.location-banner__dismiss {
  border: none; background: none; color: var(--text-muted); font-size: 15px;
  cursor: pointer; padding: 4px 6px; line-height: 1; flex: none;
}
.location-banner__dismiss:hover { color: var(--text); }
.profile-card__distance { display: flex; align-items: center; gap: 4px; flex: none; white-space: nowrap; }
.profile-card__distance svg { width: 12px; height: 12px; flex: none; }
.messenger__thread { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 10px; max-height: 52vh; }
.bubble { max-width: 62%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.bubble--them { align-self: flex-start; background: var(--bg-media); color: var(--text); border-bottom-left-radius: 4px; }
.bubble--me { align-self: flex-end; background: var(--gold); color: var(--on-gold); border-bottom-right-radius: 4px; }
.bubble time { display: block; font-size: 10.5px; opacity: .65; margin-top: 4px; }

.composer { display: flex; gap: 10px; padding: 14px 18px; border-top: 1px solid #eee; }
.composer input {
  flex: 1; border: 1px solid #ddd; border-radius: 999px; padding: 11px 18px; font-size: 14px; font-family: var(--font);
}
.composer input:focus { outline: none; border-color: var(--gold); }
.composer button {
  width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--gold); color: var(--on-gold);
  font-size: 16px; cursor: pointer; flex: none;
}
.composer button:hover { background: var(--gold-dark); }

.messenger-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%;
  color: var(--text-muted); text-align: center; padding: 40px; gap: 8px;
}
.messenger-empty__icon { font-size: 34px; opacity: .5; }

@media (max-width: 800px) {
  .messenger { grid-template-columns: 1fr; }
  .messenger__list { max-height: none; border-right: none; border-bottom: 1px solid #eee; }
  .messenger__list.is-hidden-mobile, .messenger__chat.is-hidden-mobile { display: none; }
}

/* ===========================
   INTERESSES
=========================== */
.melt-card { position: relative; }
.melt-card .ribbon {
  position: absolute; top: 10px; right: -30px;
  background: var(--gold); color: var(--on-gold);
  font-size: 10px; font-weight: 800; letter-spacing: .5px;
  padding: 3px 34px; transform: rotate(35deg);
  z-index: 5;
}

.soft-gate { position: relative; }
.soft-gate .card-grid { filter: blur(5px); pointer-events: none; user-select: none; }
.soft-gate__cta {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 24px;
  background: rgba(255,255,255,.35);
}
.soft-gate__cta p { max-width: 320px; color: var(--text); font-weight: 600; font-size: 15px; }

.empty-state {
  text-align: center; padding: 64px 24px; color: var(--text-muted);
}
.empty-state__icon { font-size: 36px; margin-bottom: 12px; opacity: .5; }
.empty-state h3 { color: var(--text); font-size: 17px; margin-bottom: 6px; }

/* ===========================
   ASSINATURA / PRICING
=========================== */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 8px; }
.price-card {
  background: #fff; border-radius: 10px; padding: 28px; box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border: 2px solid transparent;
}
.price-card--elite { background: var(--navy); color: #fff; border-color: var(--gold); }
.price-card__tier { font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); font-weight: 700; }
.price-card--elite .price-card__tier { color: var(--gold-light); }
.price-card__desc { font-size: 13.5px; color: var(--text-muted); margin: 6px 0 18px; }
.price-card--elite .price-card__desc { color: #c9c3e0; }

.duration-toggle { display: flex; border: 1px solid #ddd; border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.price-card--elite .duration-toggle { border-color: rgba(255,255,255,.2); }
.duration-toggle button {
  flex: 1; padding: 10px 6px; background: #fff; border: none; border-right: 1px solid #ddd;
  cursor: pointer; font-size: 12px; color: var(--text-muted); text-align: center; font-family: var(--font);
}
.duration-toggle button:last-child { border-right: none; }
.price-card--elite .duration-toggle button { background: transparent; color: #c9c3e0; border-right-color: rgba(255,255,255,.2); }
.duration-toggle button .off { display: block; font-size: 10.5px; color: #2e9e5b; font-weight: 700; }
.duration-toggle button.is-active { background: var(--gold); color: var(--on-gold); font-weight: 700; }
.duration-toggle button.is-active .off { color: var(--on-gold); }

.price-card__amount { font-size: 36px; font-weight: 800; }
.price-card__amount span { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.price-card--elite .price-card__amount span { color: #c9c3e0; }
.price-card__total { font-size: 12.5px; color: var(--text-muted); margin: 4px 0 20px; }
.price-card--elite .price-card__total { color: #c9c3e0; }
.price-card ul { margin: 20px 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-card li { font-size: 13.5px; display: flex; gap: 8px; align-items: flex-start; }
.price-card li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex: none; }
.price-card--elite li::before { color: var(--gold); }

.checkout-summary {
  background: #fff; border-radius: 8px; padding: 24px; box-shadow: 0 2px 10px rgba(0,0,0,.06); margin-bottom: 24px;
}
.checkout-summary__row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.checkout-summary__row:last-child { border-bottom: none; font-weight: 700; font-size: 16px; }
.payment-methods { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.payment-method {
  display: flex; align-items: center; gap: 12px; border: 1px solid #ddd; border-radius: var(--radius);
  padding: 14px 16px; cursor: pointer; font-size: 14px;
}
.payment-method input { accent-color: var(--gold); }
.payment-method.is-selected { border-color: var(--gold); background: #fff8ec; }

@media (max-width: 800px) { .pricing { grid-template-columns: 1fr; } }

/* ===========================
   CONFIGURAÇÕES
=========================== */
.settings-list { max-width: 680px; }
.settings-section { background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,.06); margin-bottom: 20px; overflow: hidden; }
.settings-section__head { padding: 16px 20px; border-bottom: 1px solid #eee; font-size: 15px; font-weight: 700; }
.settings-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid #f4f4f4;
}
.settings-item:last-child { border-bottom: none; }
.settings-item__label { font-size: 14px; color: var(--text); font-weight: 600; }
.settings-item__desc { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

.switch { position: relative; display: inline-block; width: 44px; height: 24px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch__track {
  position: absolute; inset: 0; background: #ccc; border-radius: 999px; cursor: pointer; transition: background .2s ease;
}
.switch__track::before {
  content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: transform .2s ease;
}
.switch input:checked + .switch__track { background: var(--gold); }
.switch input:checked + .switch__track::before { transform: translateX(20px); }

.blocked-item { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid #f4f4f4; }
.blocked-item .placeholder-photo { width: 36px; height: 36px; border-radius: 50%; font-size: 11px; }
.blocked-item__name { flex: 1; font-size: 14px; }
.blocked-item button { background: none; border: 1px solid #ddd; border-radius: 999px; padding: 6px 14px; font-size: 12px; cursor: pointer; }
.blocked-item button:hover { border-color: var(--gold); color: var(--gold-dark); }

.danger-link { color: #c0392b; font-size: 13.5px; font-weight: 600; cursor: pointer; background: none; border: none; }

/* ===========================
   APP FOOTER
=========================== */
.app-footer { background: #fff; border-top: 1px solid #eee; padding: 20px 0; }
.app-footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: var(--text-muted); }
.app-footer__inner nav { display: flex; gap: 18px; }
.app-footer__inner a:hover { color: var(--gold-dark); }

@media (max-width: 700px) {
  .profile-view, .search-layout { grid-template-columns: 1fr; }
  .app-main__header { flex-direction: column; align-items: flex-start; }
}
