/* ===========================
   RESET & BASE
=========================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #d9a451;
  --gold-light: #e8c079;
  --gold-dark: #b3823a;
  --on-gold: #16130a;
  --black: #0d0d0d;
  --bg: #f9f9f9;
  --bg-media: #f5f5f5;
  --navy: #1a1a2e;
  --navy-light: #2c2c46;
  --text: #111111;
  --text-muted: #555555;
  --radius: 4px;
  --container: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3 { line-height: 1.2; font-weight: 700; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

section { padding: 80px 0; }

/* ===========================
   BUTTONS & LINKS
=========================== */
.btn {
  display: inline-block;
  border-radius: var(--radius);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }

.btn--primary {
  background: var(--gold);
  color: var(--on-gold);
}
.btn--primary:hover { background: var(--gold-dark); }

.btn--lg { padding: 16px 36px; font-size: 16px; }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.btn--outline:hover { background: rgba(255,255,255,.08); }

.link-arrow {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.link-arrow--sm { font-size: 14px; }

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.header.scrolled {
  background: var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
body.inner-page .header {
  background: var(--black);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #fff;
}
.logo__meu { color: var(--gold); }
.logo__brand-mp {
  background: var(--gold);
  color: var(--on-gold);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 14px;
  margin-right: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link:hover { color: var(--gold); }

.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: 14px;
}
.nav__dropdown-menu a:hover { background: var(--bg-media); color: var(--gold); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  aspect-ratio: 2.5 / 1;
  max-height: 624px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 35%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 8%;
  max-width: 640px;
}
.hero__sr-title {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===========================
   ADVANTAGES (Sugar Baby / Daddy)
=========================== */
.advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.advantages--reverse .advantages__gallery { order: 2; }
.advantages--reverse .advantages__content { order: 1; }

.advantages__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-tile {
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-photo {
  background: linear-gradient(160deg, hsl(var(--hue) 55% 45%), hsl(calc(var(--hue) + 30) 65% 20%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
}

.advantages__content h2 {
  font-size: 28px;
  margin-bottom: 28px;
}

.advantage-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.advantage-icon {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,162,39,.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.advantage-item h3 { font-size: 17px; margin-bottom: 4px; }
.advantage-item p { color: var(--text-muted); font-size: 15px; }

/* ===========================
   MEDIA CAROUSEL
=========================== */
.media-section {
  background: var(--bg-media);
}
.media-section h2 { font-size: 28px; margin-bottom: 32px; }

.carousel {
  position: relative;
  display: flex;
  align-items: center;
}
.carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__arrow {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  z-index: 2;
}
.carousel__arrow--prev { margin-right: -20px; }
.carousel__arrow--next { margin-left: -20px; }
.carousel__arrow:hover { background: var(--gold); color: #fff; }

.media-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.media-card__logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}
.media-card__logo--script { font-style: italic; font-family: Georgia, serif; text-transform: lowercase; }
.media-card p { color: var(--text-muted); font-size: 14px; flex: 1; }

/* ===========================
   STATS
=========================== */
.stats { text-align: center; }
.stats__headline { font-size: 40px; color: var(--gold); margin-bottom: 12px; }
.stats__desc { max-width: 560px; margin: 0 auto 48px; color: var(--text-muted); }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 32px 0;
  margin-bottom: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid #e5e5e5;
}
.stat:last-child { border-right: none; }
.stat__num { font-size: 32px; font-weight: 700; color: var(--gold); }
.stat__label { font-size: 12px; letter-spacing: 1px; color: var(--text-muted); }

.stats__footnote { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.stats__actions { display: flex; align-items: center; justify-content: center; gap: 28px; }

/* ===========================
   CTA BAND
=========================== */
.cta-band {
  background: var(--black);
  text-align: center;
  color: #fff;
}
.cta-band h2 { font-size: 28px; margin-bottom: 12px; }
.cta-band p { color: #ccc; margin-bottom: 28px; }

/* ===========================
   EDITORIAL / BLOG
=========================== */
.editorial { background: var(--black); color: #fff; }
.editorial__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.editorial__header h2 { font-size: 28px; }

.blog-card { flex: 0 0 300px; scroll-snap-align: start; }
.blog-card__img {
  aspect-ratio: 4/5;
  border-radius: 8px;
  position: relative;
  margin-bottom: 14px;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__badge {
  position: absolute;
  top: 14px;
  left: 0;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 5px 12px 5px 16px;
  border-radius: 0 4px 4px 0;
}
.blog-card h3 { font-size: 16px; font-weight: 600; }

.editorial .carousel__arrow { background: #222; color: #fff; }
.editorial .carousel__arrow:hover { background: var(--gold); }

/* ===========================
   INSTITUTIONAL TEXT
=========================== */
.institutional { max-width: 860px; }
.institutional h2 { font-size: 26px; margin-bottom: 20px; }
.institutional p { color: var(--text-muted); margin-bottom: 16px; font-size: 15px; }

/* ===========================
   CITIES
=========================== */
.cities {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.cities h2 { font-size: 28px; margin-bottom: 16px; }
.cities > .container > p { max-width: 620px; margin: 0 auto 32px; color: #b8b8cc; }

.cities__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.city-pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  transition: background .2s ease;
}
.city-pill:hover { background: var(--gold); border-color: var(--gold); }

/* ===========================
   PROTECTION
=========================== */
.protection {
  background: var(--black);
  color: #fff;
  text-align: center;
}
.protection h2 { font-size: 26px; margin-bottom: 14px; }
.protection > .container > p { max-width: 620px; margin: 0 auto 32px; color: #bbb; }

.protection__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  font-size: 14px;
  color: #ddd;
}
.protection__item { display: flex; align-items: center; gap: 8px; }

.protection__footnote { margin-top: 18px; color: #777; font-size: 13px; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--black); color: #ccc; padding-top: 64px; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer__col a:hover { color: var(--gold); }

.footer__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.footer__social a:hover { background: var(--gold); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #888;
}
.footer__lang { display: flex; gap: 20px; }
.footer__lang a:hover { color: #fff; }

/* ===========================
   INNER PAGE HERO
=========================== */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.5) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 0;
  max-width: 720px;
}
.page-hero__content h1 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 12px;
}
.page-hero__content p {
  color: #eee;
  font-size: 17px;
  margin-bottom: 20px;
}

/* ===========================
   ARTICLE (text-heavy pages)
=========================== */
.article { max-width: 820px; }
.article h2 { font-size: 24px; margin: 40px 0 16px; }
.article h2:first-child { margin-top: 0; }
.article h3 { font-size: 18px; margin: 24px 0 10px; color: var(--gold-dark); }
.article p { color: var(--text-muted); margin-bottom: 16px; font-size: 15px; line-height: 1.7; }
.article ul, .article ol { color: var(--text-muted); margin: 0 0 16px 20px; font-size: 15px; line-height: 1.7; }
.article li { margin-bottom: 6px; }
.article strong { color: var(--text); }
.article .btn { margin: 8px 0 24px; }

/* ===========================
   STEPS
=========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 32px 0 48px;
}
.steps__item { text-align: center; }
.steps__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--on-gold);
  font-weight: 700;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.steps__item h3 { font-size: 17px; margin-bottom: 8px; }
.steps__item p { color: var(--text-muted); font-size: 14px; }

/* ===========================
   FAQ
=========================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}
.faq__item h3 { font-size: 16px; margin-bottom: 8px; }
.faq__item p { color: var(--text-muted); font-size: 14px; }

/* ===========================
   APP FEATURES GRID
=========================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 48px;
}
.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 14px; }

/* ===========================
   FORM PAGES
=========================== */
.form-page { max-width: 640px; }
.form-page p.lead { color: var(--text-muted); margin-bottom: 32px; font-size: 15px; }
.form-grid { display: grid; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font);
  background: #fff;
  color: var(--text);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.form-note { background: var(--bg-media); border-radius: var(--radius); padding: 16px 20px; font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-note a { color: var(--gold-dark); font-weight: 600; }

/* ===========================
   BUG BOUNTY TABLE
=========================== */
.bounty-table { width: 100%; border-collapse: collapse; margin: 24px 0 40px; font-size: 14px; }
.bounty-table th, .bounty-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid #e5e5e5; }
.bounty-table th { color: var(--text); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.bounty-table td { color: var(--text-muted); }
.bounty-table td:last-child, .bounty-table th:last-child { color: var(--gold-dark); font-weight: 700; }

.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0 40px; }
.scope-card { background: var(--bg-media); border-radius: 8px; padding: 20px 24px; }
.scope-card h3 { font-size: 15px; margin-bottom: 12px; }
.scope-card ul { margin: 0 0 0 18px; font-size: 14px; color: var(--text-muted); }
.scope-card li { margin-bottom: 6px; }

/* ===========================
   SIMPLE CENTERED PAGE (login/cadastro)
=========================== */
.simple-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  background: var(--black);
  color: #fff;
}
.simple-page__box { max-width: 480px; }
.simple-page__box h1 { font-size: 28px; margin-bottom: 14px; }
.simple-page__box p { color: #bbb; margin-bottom: 28px; }

/* ===========================
   CITY INDEX PAGE
=========================== */
.city-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.city-index-grid a {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: border-color .2s ease, color .2s ease;
}
.city-index-grid a:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__cta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .header.mobile-open .nav {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
  }
  .header.mobile-open .nav__link { padding: 12px 0; width: 100%; }
  .header.mobile-open .nav__dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; display: none; }
  .header.mobile-open .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .header.mobile-open .nav__dropdown-menu a { color: #ccc; padding: 8px 0; }

  .advantages { grid-template-columns: 1fr; }
  .advantages--reverse .advantages__gallery,
  .advantages--reverse .advantages__content { order: initial; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(3) { }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .page-hero__content h1 { font-size: 28px; }
}

@media (max-width: 560px) {
  section { padding: 56px 0; }
  .hero { aspect-ratio: 1 / 1; max-height: none; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__actions { flex-direction: column; gap: 16px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .media-card, .blog-card { flex-basis: 82vw; }
}

/* ===========================
   AUTH PAGES (login / cadastro)
=========================== */
body.auth-page { background: #fff; }

.auth {
  display: flex;
  min-height: 100vh;
}

.auth__panel {
  flex: 0 0 auto;
  width: 100%;
  max-width: 560px;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth__panel .logo { display: inline-block; margin-bottom: 32px; font-size: 22px; color: var(--text); }

.auth__title { font-size: 26px; margin-bottom: 8px; }
.auth__subtitle { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; }

.auth__image {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #000;
}
.auth__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth__image--brand {
  background: radial-gradient(circle at 30% 20%, var(--navy-light) 0%, var(--black) 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.auth__image-inner { max-width: 380px; }
.auth__crown { width: 72px; height: auto; color: var(--gold); margin: 0 auto 28px; }
.auth__image-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}
.auth__image-inner h2 em,
.auth__image-inner .accent { color: var(--gold); font-style: italic; }
.auth__image-inner p { color: #c9c3b4; font-size: 15px; letter-spacing: .3px; }

.auth__card {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border-radius: 10px;
  padding: 32px;
}
.auth__card h2 { font-size: 20px; text-align: center; margin-bottom: 22px; }

.auth__hint { font-size: 13px; color: var(--text-muted); margin-top: -6px; margin-bottom: 20px; }
.auth__hint a { color: var(--gold-dark); font-weight: 600; }

.auth__legal { font-size: 12px; color: #999; line-height: 1.6; margin-top: 18px; }
.auth__legal strong { color: #777; }
.auth__legal a { color: var(--gold-dark); text-decoration: underline; }

.auth__foot { margin-top: 22px; font-size: 14px; color: var(--text-muted); text-align: center; }
.auth__foot a { color: var(--gold-dark); font-weight: 700; }

.auth__cnpj { margin-top: 24px; font-size: 12px; color: #aaa; }

.btn--block { display: block; width: 100%; }

/* form fields shared by auth + wizard */
.auth__card .form-field,
.modal .form-field { margin-bottom: 20px; }
.auth__card .form-field label,
.modal .form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.auth__card .form-field select,
.auth__card .form-field input,
.modal .form-field select,
.modal .form-field input,
.modal .form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 8px 2px;
  font-size: 15px;
  font-family: var(--font);
  background: transparent;
  color: var(--text);
}
.auth__card .form-field select:focus,
.auth__card .form-field input:focus,
.modal .form-field select:focus,
.modal .form-field input:focus,
.modal .form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-field__row { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 12px; }
.form-field__hint { font-size: 12px; margin-top: 6px; }
.form-field__hint--ok { color: #2e9e5b; }
.form-field__hint--error { color: #d33; }
.form-field__count { font-size: 12px; color: #aaa; float: right; }

/* ===========================
   MODAL (terms + wizard)
=========================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px 40px;
  position: relative;
}
.modal__step-count { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.modal__box h2 { font-size: 22px; margin-bottom: 22px; }
.modal__avatar-btn {
  position: absolute;
  top: 30px; right: 36px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-media);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
}
.modal__foot-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  background: none; border: none; cursor: pointer;
}
.modal__foot-link:hover { color: var(--gold-dark); }

/* choice field (pill picker) */
.choice-field { border-bottom: 1px solid #eee; padding: 14px 0; }
.choice-field__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
}
.choice-field__label { font-size: 14px; font-weight: 700; color: var(--text); }
.choice-field__value { font-size: 13px; color: var(--gold-dark); font-weight: 600; margin-left: auto; margin-right: 10px; }
.choice-field__value:empty::before { content: 'Selecione uma opção'; color: #999; font-weight: 400; }
.choice-field__caret { color: #999; transition: transform .2s ease; }
.choice-field.is-open .choice-field__caret { transform: rotate(180deg); }
.choice-field__options {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.choice-field.is-open .choice-field__options { display: flex; }
.pill {
  border: 1px solid #ddd;
  background: #fff;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: all .15s ease;
}
.pill:hover { border-color: var(--gold); }
.pill.is-selected { background: var(--gold); border-color: var(--gold); color: var(--on-gold); font-weight: 700; }

.range-field { padding: 14px 0; border-bottom: 1px solid #eee; }
.range-field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.range-field__value { color: var(--gold-dark); font-weight: 700; }
.range-field input[type="range"] { width: 100%; margin-top: 10px; accent-color: var(--gold); }

/* photo upload step */
.photo-upload {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  border-radius: 10px;
  background: var(--bg-media);
  border: 2px dashed #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  overflow: hidden;
  font-size: 13px;
  color: var(--text-muted);
}
.photo-upload img { width: 100%; height: 100%; object-fit: cover; }
.photo-upload__icon { font-size: 22px; }
.photo-note { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 24px; }

/* wizard step visibility */
.wizard-step { display: none; }
.wizard-step.is-active { display: block; }

.wizard-success { text-align: center; padding: 12px 0; }
.wizard-success__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold); color: var(--on-gold);
  font-size: 30px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.wizard-success h2 { margin-bottom: 10px; }
.wizard-success p { color: var(--text-muted); margin-bottom: 24px; }

@media (max-width: 900px) {
  .auth__image { display: none; }
  .auth__panel { max-width: 100%; padding: 36px 24px; }
  .form-field__row { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .modal__box { padding: 28px 22px; }
}
