/* TRUE WOMEN — site institucional. Tokens da prancha aprovada (DESIGN_CONTRACT.md). */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/CormorantGaramond.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --board: #f3ebe6;
  --screen: #faf4ef;
  --surface: #fffdfb;
  --ink: #3b332e;
  --body: #5c534e;
  --muted: #8a817b;
  --line: #ece4dd;
  --rose: #d59492;
  --rose-hover: #c98381;
  --tab: #c9a39a;
  --veil: rgba(38, 30, 26, 0.48);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--screen);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; border-radius: 6px; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; margin: 0; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); }
.lead { color: var(--body); font-size: 18px; }
.wordmark { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: 6px; white-space: nowrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 32px; border-radius: 999px;
  font-weight: 600; font-size: 17px; transition: background 180ms, color 180ms, border-color 180ms;
}
.btn-primary { background: var(--rose); color: var(--surface); }
.btn-primary:hover { background: var(--rose-hover); }
.btn-ghost { border: 1.5px solid var(--surface); color: var(--surface); font-weight: 500; }
.btn-ghost:hover { background: rgba(255, 253, 251, 0.18); }

/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; color: var(--surface); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--veil); }
.hero > :not(.hero-bg) { position: relative; }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; }
.nav-links { display: flex; gap: 36px; font-size: 15px; }
.nav-links a { padding: 8px 0; }
.nav-links a:hover { color: var(--rose); }
.nav .btn { min-height: 48px; padding: 0 26px; font-size: 15px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: var(--surface); padding: 0; align-items: center; justify-content: center; }

.hero-body { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 24px; padding: 48px 0 96px; }
.hero-body .eyebrow { color: var(--surface); opacity: 0.92; }
.hero h1 { font-size: clamp(40px, 6vw, 84px); max-width: 24ch; text-wrap: balance; }
.hero .lead { color: var(--surface); opacity: 0.95; max-width: 34em; font-size: clamp(17px, 1.4vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 8px; }

/* Sections */
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-alt { background: var(--board); }
.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 42em; }
.section-head.center { align-items: center; text-align: center; margin: 0 auto; }
.section h2 { font-size: clamp(34px, 4vw, 56px); text-wrap: balance; }
.section p + p { margin-top: 16px; }

.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(40px, 6vw, 96px); align-items: center; }
.two-col .copy { display: flex; flex-direction: column; gap: 22px; }
.photo { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; border-radius: 24px; }

.phones { display: flex; justify-content: center; align-items: flex-end; gap: 28px; }
.phone { width: 44%; max-width: 250px; aspect-ratio: 390 / 844; object-fit: cover; border-radius: 34px; border: 6px solid var(--ink); background: var(--ink); }
.phone.tall { max-width: 290px; width: 52%; border-radius: 40px; }

.features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.features li { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 999px; background: var(--surface); display: inline-flex; align-items: center; justify-content: center; color: var(--rose); }
.features strong { display: block; font-size: 18px; font-weight: 600; }
.features span { color: var(--body); font-size: 16px; }

.themes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: clamp(40px, 5vw, 64px); }
.theme { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 36px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; text-align: center; font-weight: 500; color: var(--ink); }
.theme svg { color: var(--tab); }

.quote { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--surface); overflow: hidden; }
.quote-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quote::before { content: ""; position: absolute; inset: 0; background: rgba(38, 30, 26, 0.5); }
.quote blockquote { position: relative; margin: 0; padding: 64px 24px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.quote p { font-family: var(--serif); font-style: italic; font-size: clamp(28px, 3.4vw, 48px); line-height: 1.25; max-width: 22em; text-wrap: balance; }
.quote cite { font-style: normal; font-size: 13px; letter-spacing: 4px; text-transform: uppercase; opacity: 0.9; }

.download { text-align: center; }
.download .section-head { margin-bottom: 40px; }
.stores { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.store { display: inline-flex; align-items: center; gap: 14px; min-height: 64px; padding: 0 26px; border-radius: 14px; background: var(--ink); color: var(--surface); transition: transform 180ms, background 180ms; }
.store:hover { background: #2a2420; transform: translateY(-1px); }
.store-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; text-align: left; }
.store-text small { font-size: 11px; letter-spacing: 0.4px; }
.store-text b { font-size: 20px; font-weight: 600; }
.store[aria-disabled="true"] { opacity: 0.55; cursor: default; pointer-events: none; }
.download .note { margin-top: 24px; font-size: 14px; color: var(--muted); }

/* Footer */
.footer { background: var(--board); border-top: 1px solid var(--line); padding: 64px 0 36px; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; color: var(--muted); font-size: 15px; }
.footer-brand .wordmark { color: var(--ink); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-col span { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.footer-col a:hover { color: var(--rose-hover); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }

/* Páginas de texto (privacidade, termos, suporte) */
.doc-header { background: var(--board); border-bottom: 1px solid var(--line); }
.doc-header .nav { color: var(--ink); }
.doc { padding: clamp(56px, 8vw, 96px) 0; }
.doc article { max-width: 44em; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; color: var(--body); }
.doc h1 { color: var(--ink); font-size: clamp(36px, 5vw, 56px); }
.doc h2 { color: var(--ink); font-size: 28px; margin-top: 24px; }
.doc ul { margin: 0; padding-left: 22px; }
.doc li + li { margin-top: 6px; }
.doc .meta { color: var(--muted); font-size: 14px; }
.doc a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--tab); text-underline-offset: 3px; }
.doc a:hover { color: var(--rose-hover); }
.contact-card { display: flex; flex-direction: column; gap: 8px; padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; }

/* Responsivo */
@media (max-width: 880px) {
  .nav-links, .nav .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav.open .nav-links { display: flex; flex-direction: column; gap: 4px; position: absolute; top: 88px; left: 24px; right: 24px; padding: 20px 24px; background: var(--surface); color: var(--ink); border-radius: 20px; font-size: 17px; }
  .nav.open .nav-links a { padding: 12px 0; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .media { order: -1; }
  .themes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .theme { padding: 28px 12px; font-size: 15px; }
  .phones { gap: 16px; }
  .phone { display: none; }
  .phone.tall { display: block; width: 62%; }
  .stores { flex-direction: column; align-items: stretch; }
  .store { justify-content: center; }
  .footer-nav { gap: 32px; }
}
