/* ============================================================
   Italo Araújo — Estrategista Digital
   Direção: portfólio pessoal premium / editorial de luxo
   ============================================================ */

:root {
  /* paleta */
  --black:       #090909;
  --black-2:     #111111;
  --off-white:   #E8E5DF;
  --warm-white:  #F1EEE8;
  --gold:        #B18A4A;
  --gold-light:  #C7A66A;
  --border:      #2A2926;

  /* texto */
  --on-dark:        #F1EEE8;
  --on-dark-muted:  #9A968E;
  --on-light:       #1A1917;
  --on-light-muted: #5C5850;
  --border-light:   #D6D1C7;

  /* tipografia */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* layout */
  --container: 1440px;
  --pad: 64px;

  /* escala de espaçamento */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 80px; --s8: 96px; --s9: 128px;

  --section-y: 128px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--black); }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.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;
}

/* ------------------------------------------------------------
   Tipografia base
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 4.6vw, 4.25rem); }
h2 { font-size: clamp(2.1rem, 3.4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 1.5vw, 1.5rem); }

em, .italic { font-style: italic; }
.gold { color: var(--gold-light); }

p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--s3);
  display: block;
}

.body-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--on-dark-muted);
  max-width: 52ch;
}
.on-light .body-text { color: var(--on-light-muted); }

/* ornamento: losango entre traços (usado sob títulos centrados) */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--s3);
}
.ornament::before, .ornament::after {
  content: "";
  width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament i {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  display: block;
}

/* traço curto à esquerda (sob títulos alinhados à esquerda) */
.rule-left {
  width: 72px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: var(--s3) 0 var(--s4);
}

/* ------------------------------------------------------------
   Botões
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform .3s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: #14100A;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--on-dark);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-dark {
  background: var(--black);
  color: var(--warm-white);
  border-color: var(--black);
}
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: #14100A; }

/* link com seta */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  margin: -10px 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .3s ease;
}
.arrow-link svg { width: 15px; height: 15px; transition: transform .3s ease; }
.arrow-link:hover { color: var(--gold-light); }
.arrow-link:hover svg { transform: translateX(5px); }

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease;
}
.site-header.scrolled {
  background: rgba(9, 9, 9, 0.97);
  border-bottom-color: var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  height: 82px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 42px; width: auto; }
.brand-mark {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.brand-divider { width: 1px; height: 26px; background: var(--border); }
.brand-text {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  white-space: nowrap;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--s4);
  list-style: none;
  margin: 0;
  padding: 0;
}
/* o CTA dentro do <nav> serve só ao menu mobile aberto */
.main-nav > .btn { display: none; }

.nav-list a {
  position: relative;
  display: block;
  padding: 6px 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  transition: color .3s ease;
}
.nav-list a:hover { color: var(--warm-white); }
.nav-list a.active { color: var(--gold-light); }
.nav-list a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -3px;
  transform: translateX(-50%);
  width: 26px; height: 1px;
  background: var(--gold);
}
.nav-list a.active::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -5px;
  transform: translateX(-50%) rotate(45deg);
  width: 3px; height: 3px;
  background: var(--gold);
}

.header-cta { display: flex; align-items: center; gap: var(--s3); }
.header-cta .btn {
  border-color: var(--gold);
  color: var(--gold-light);
  padding: 14px 24px;
  font-size: 0.68rem;
}
.header-cta .btn:hover { background: var(--gold); color: #14100A; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold-light);
  cursor: pointer;
  transition: border-color .3s ease;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 78% center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(9,9,9,0.94) 32%, rgba(9,9,9,0.55) 52%, rgba(9,9,9,0.1) 68%, transparent 82%),
    linear-gradient(180deg, rgba(9,9,9,0.6) 0%, transparent 22%, transparent 76%, rgba(9,9,9,0.55) 100%);
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  min-height: 92vh;
  padding-top: 130px;
  padding-bottom: var(--s8);
}

.hero-copy { max-width: 620px; }
.hero h1 { margin-bottom: var(--s4); }
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero .body-text { max-width: 46ch; }
.hero .body-text strong { color: var(--warm-white); font-weight: 600; }
.hero-intro {
  margin-top: var(--s3);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--on-dark-muted);
  max-width: 46ch;
}
.hero-intro strong { color: var(--warm-white); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s5);
}

.hero-mobile-photo { display: none; }

/* ------------------------------------------------------------
   Seções
   ------------------------------------------------------------ */
.section { padding: var(--section-y) 0; position: relative; }
.section--flush-top { padding-top: 0; }

.on-dark { background: var(--black); color: var(--on-dark); }
.on-light { background: var(--off-white); color: var(--on-light); }
.on-light h1, .on-light h2, .on-light h3, .on-light h4 { color: var(--on-light); }

.section-head-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s8);
}
.section-head-center .eyebrow { margin-bottom: var(--s2); }
.section-head-center-note { margin: var(--s4) auto 0; }

/* ------------------------------------------------------------
   Apresentação (3 colunas)
   ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s7);
  align-items: center;
}

.about-intro h2 { margin-bottom: var(--s3); }
.about-intro .btn { margin-top: var(--s5); }

/* foto com moldura dourada deslocada + selo */
.about-photo { position: relative; padding: 0 0 var(--s5) var(--s5); }
.about-photo-frame { position: relative; }
.about-photo-frame::before {
  content: "";
  position: absolute;
  left: -26px; top: 34px; bottom: 34px;
  width: 74px;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  opacity: 0.85;
}
.about-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) contrast(1.08) brightness(0.98);
}
.about-badge {
  position: absolute;
  left: 0; bottom: 8px;
  width: 122px; height: 122px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.about-badge .num {
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--gold-light);
}
.about-badge .lbl {
  margin-top: 5px;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  line-height: 1.5;
}

/* lista de princípios à direita */
.pillars { display: flex; flex-direction: column; gap: var(--s5); }
.pillar { display: grid; grid-template-columns: 40px 1fr; gap: var(--s3); }
.pillar-icon { color: var(--gold); }
.pillar-icon svg { width: 34px; height: 34px; }
.pillar h3 { font-size: 1.3rem; margin-bottom: 6px; }
.pillar p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--on-light-muted);
  margin: 0;
}

/* ------------------------------------------------------------
   Posicionamento (destaque editorial)
   ------------------------------------------------------------ */
.stance {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: var(--s9);
  align-items: center;
}
.stance-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 22%;
}
.stance-pull {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.9vw, 2.7rem);
  line-height: 1.22;
  color: var(--on-light);
  margin: 0 0 var(--s5);
}
.stance-pull span { color: var(--gold); font-style: italic; }
.stance-lead {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--on-light-muted);
  margin-bottom: var(--s4);
}
.stance-note {
  border-left: 1px solid var(--gold);
  padding-left: var(--s3);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--on-light-muted);
}

/* ------------------------------------------------------------
   Atuação (4 cards)
   ------------------------------------------------------------ */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
}
.card {
  background: var(--black-2);
  border: 1px solid var(--border);
  padding: var(--s5) var(--s4) var(--s4);
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease, background-color .3s ease;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.card-index {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--border);
  margin-bottom: var(--s3);
}
.card:hover .card-index { color: var(--gold); }
.card-icon { color: var(--gold); margin-bottom: var(--s4); }
.card-icon svg { width: 36px; height: 36px; }
.card h3 { margin-bottom: var(--s2); }
.card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--on-dark-muted);
  margin-bottom: var(--s4);
  flex: 1;
}
.card .arrow-link { align-self: flex-start; }

/* ------------------------------------------------------------
   Experiência (números editoriais)
   ------------------------------------------------------------ */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-light);
  margin-top: var(--s8);
}
.metric {
  padding: var(--s6) var(--s4) 0;
  border-left: 1px solid var(--border-light);
}
.metric:first-child { border-left: none; padding-left: 0; }
.metric-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  line-height: 1;
  color: var(--on-light);
  letter-spacing: -0.02em;
}
.metric-num sup {
  font-size: 0.4em;
  color: var(--gold);
  vertical-align: super;
  margin-left: 2px;
}
.metric-label {
  margin-top: var(--s2);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-light-muted);
  line-height: 1.7;
  max-width: 20ch;
}

.experience-head { max-width: 760px; }

/* faixa institucional (banner do cliente) */
.brand-band {
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-band img {
  width: 100%;
  height: clamp(200px, 26vw, 330px);
  object-fit: cover;
  object-position: center;
}

/* ------------------------------------------------------------
   Case de destaque
   ------------------------------------------------------------ */
.case {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s9);
  align-items: center;
}
.case-num {
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 13rem);
  line-height: 0.82;
  color: var(--warm-white);
  letter-spacing: -0.04em;
}
.case-num sup {
  font-size: 0.28em;
  color: var(--gold);
  vertical-align: super;
}
.case-caption {
  margin-top: var(--s3);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.case-body { margin-top: var(--s5); }
.case-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1.3;
  color: var(--warm-white);
  margin: 0 0 var(--s3);
}
.case-quote em { color: var(--gold-light); }
.case-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 15%;
  filter: contrast(1.05);
}

/* ------------------------------------------------------------
   Método (jornada)
   ------------------------------------------------------------ */
.journey {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: var(--s8);
  position: relative;
}
.journey::before {
  content: "";
  position: absolute;
  top: 5px; left: 8.33%; right: 8.33%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
  opacity: 0.5;
}
.journey-step { text-align: center; position: relative; padding-top: 0; }
.journey-dot {
  width: 11px; height: 11px;
  margin: 0 auto var(--s4);
  border: 1px solid var(--gold);
  background: var(--off-white);
  transform: rotate(45deg);
  position: relative;
  z-index: 1;
}
.journey-step:last-child .journey-dot { background: var(--gold); }
.journey-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-light);
}
.journey-step:last-child .journey-label { color: var(--gold); }
.journey-num {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--on-light-muted);
}

/* ------------------------------------------------------------
   Promessa
   ------------------------------------------------------------ */
.promise { text-align: center; }
.promise-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 1.08;
  color: var(--on-light);
  max-width: 20ch;
  margin: 0 auto;
}
.promise-title em { font-style: italic; color: var(--gold); }
.promise-body {
  margin: var(--s6) auto 0;
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--on-light-muted);
}

/* ------------------------------------------------------------
   CTA final
   ------------------------------------------------------------ */
.cta { position: relative; overflow: hidden; }
.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s9);
  align-items: center;
}
.cta h2 { margin-bottom: 0; }
.cta .body-text { margin-top: var(--s4); }
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s4);
  margin-top: var(--s6);
}
.cta-direct {
  font-size: 0.9rem;
  color: var(--on-dark-muted);
}
.cta-direct a { color: var(--gold-light); border-bottom: 1px solid rgba(199,166,106,0.35); }
.cta-direct a:hover { border-bottom-color: var(--gold-light); }

.cta-card {
  border: 1px solid var(--border);
  background: var(--black-2);
  padding: var(--s6);
  text-align: center;
}
.cta-card img {
  width: 118px; height: 118px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--s4);
  border: 1px solid var(--gold);
}
.cta-card .sig {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  color: var(--warm-white);
  line-height: 1.2;
}
.cta-card .role {
  margin-top: var(--s2);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.cta-card p {
  margin: var(--s4) 0 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--on-dark-muted);
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--gold);
  padding-top: var(--s8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: var(--s7);
  padding-bottom: var(--s7);
}
.footer-brand .brand-mark { font-size: 2.6rem; }
.footer-logo { height: 58px; width: auto; }
.footer-brand p {
  margin-top: var(--s4);
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--on-dark-muted);
  max-width: 34ch;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col span {
  font-size: 0.88rem;
  color: var(--on-dark-muted);
  transition: color .3s ease;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--s3) 0 var(--s5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
}
.footer-bottom--flush { border-top: none; padding-top: var(--s5); }
.footer-bottom, .footer-bottom a { font-size: 0.78rem; color: #6E6A63; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal-links { display: flex; align-items: center; gap: var(--s2); }
.footer-legal-links .sep { color: var(--border); }

/* ------------------------------------------------------------
   Reveal
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ------------------------------------------------------------
   Páginas legais
   ------------------------------------------------------------ */
.legal-page { padding: 176px 0 var(--s9); background: var(--off-white); color: var(--on-light); }
.legal-page .wrap { max-width: 820px; }
.legal-page h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: var(--s2); }
.legal-page .updated {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s6);
}
.legal-page h2 {
  font-size: 1.45rem;
  margin-top: var(--s7);
  margin-bottom: var(--s2);
}
.legal-page p, .legal-page li {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--on-light-muted);
}
.legal-page ul { padding-left: 22px; margin: 0 0 1.25em; }
.legal-page li { margin-bottom: 8px; }
.legal-page a:not(.arrow-link) {
  color: #8A6A33;
  border-bottom: 1px solid rgba(177,138,74,.4);
}
.legal-page .back { margin-bottom: var(--s5); }
.legal-page .back svg { transform: rotate(180deg); }
.legal-page .back:hover svg { transform: rotate(180deg) translateX(5px); }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1200px) {
  :root { --pad: 40px; --section-y: 104px; }
  .nav-list { gap: var(--s3); }
  .about-grid { grid-template-columns: 1fr 1fr; gap: var(--s6); }
  .about-photo { grid-column: 1 / -1; max-width: 420px; }
  .pillars { gap: var(--s4); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .stance, .case, .cta-grid { gap: var(--s7); }
}

@media (max-width: 1024px) {
  /* nav vira hambúrguer, mas o conteúdo continua em duas colunas
     (tablet: iPad landscape 1024, Android tablets, etc.) */
  .site-header .wrap { height: 76px; }
  .nav-list, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s4);
    padding: var(--s5) var(--pad) var(--s6);
    background: rgba(9,9,9,0.99);
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .main-nav.open .nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s3);
  }
  .main-nav.open .nav-list a { font-size: 0.85rem; padding: 8px 0; }
  .main-nav.open .nav-list a.active::after,
  .main-nav.open .nav-list a.active::before { display: none; }
  .main-nav.open .btn { display: inline-flex; }
}

@media (max-width: 860px) {
  /* abaixo disso, colunas ficam estreitas demais lado a lado —
     empilha hero e os pares foto+texto (tablet retrato / mobile) */
  .hero .wrap {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 124px;
    padding-bottom: 0;
  }
  .hero-bg { display: none; }
  .hero-copy { max-width: 100%; }
  .hero-mobile-photo {
    display: block;
    margin: var(--s7) calc(var(--pad) * -1) 0;
  }
  .hero-mobile-photo img {
    width: 100%;
    max-height: 72vh;
    object-fit: cover;
    object-position: center top;
  }

  .stance, .case, .cta-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .stance-photo, .case-photo { max-width: 460px; }
  .case-photo { order: -1; }

  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { padding: var(--s5) var(--s4) 0; }
  .metric:nth-child(odd) { border-left: none; padding-left: 0; }
  .metric:nth-child(n+3) { border-top: 1px solid var(--border-light); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s6); }
  .footer-brand { grid-column: 1 / -1; }

  .journey { grid-template-columns: repeat(3, 1fr); row-gap: var(--s5); }
  .journey::before { display: none; }
}

@media (max-width: 720px) {
  :root { --pad: 24px; --section-y: 80px; }
  body { font-size: 15px; }
  .brand-text { font-size: 0.7rem; letter-spacing: 0.16em; }
  .brand-mark { font-size: 1.45rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 100%; padding-left: var(--s4); }
  .about-photo-frame::before { left: -18px; width: 52px; }
  .about-badge { width: 100px; height: 100px; }
  .about-badge .num { font-size: 1.7rem; }

  .cards { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { padding: var(--s5) var(--s2) 0; }
  .metric-num { font-size: clamp(1.6rem, 7.6vw, 2.2rem); white-space: nowrap; }
  .metric-label { font-size: 0.6rem; letter-spacing: 0.14em; }

  .journey { grid-template-columns: 1fr 1fr; }
  .stance-photo, .case-photo { max-width: 100%; }

  .cta-card { padding: var(--s5) var(--s4); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
