/* ============================================================
   Instituto ArtFace — Sistema de Design
   Derivado do PRD v1.0, Seção 8
   Branco, preto e detalhes dourados. Precisão com temperatura.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Base clara */
  --white:      #FFFFFF;
  --paper:      #FAFAF8;
  --mist:       #F2F1EE;
  --line:       #E4E2DD;

  /* Base escura */
  --ink:        #0B0B0B;
  --graphite:   #1A1A1A;
  --slate:      #4A4A48;
  --ash:        #8A8A86;

  /* Ouro */
  --gold:       #C2A14D;
  --gold-deep:  #8A6D1F;
  --gold-soft:  #E9DDBC;
  --gold-glow:  rgba(194, 161, 77, 0.14);

  /* Tipografia */
  --display: "Inter Tight", system-ui, sans-serif;
  --body:    "Inter", system-ui, sans-serif;

  /* Espaçamento base 8 */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px; --s9: 160px;

  --container: 1240px;
  --reading: 100%;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Tipografia Light (Global) ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; }
.display-xl { font-size: clamp(44px, 6.5vw, 68px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 300; }
.display-l  { font-size: clamp(34px, 4.5vw, 50px); line-height: 1.08; letter-spacing: -0.03em; font-weight: 300; }
h1 { font-size: clamp(34px, 4.8vw, 48px); letter-spacing: -0.03em; font-weight: 300; }
h2 { font-size: clamp(28px, 3.8vw, 36px); letter-spacing: -0.025em; font-weight: 300; }
h3 { font-size: clamp(20px, 2.5vw, 24px); letter-spacing: -0.015em; font-weight: 300; }

.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.lead { font-size: clamp(18px, 2.2vw, 19px); line-height: 1.7; color: var(--slate); }
.small { font-size: 15px; }
.muted { color: var(--slate); }

/* ---------- Assinatura: filete dourado ---------- */
.rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--s3);
}
.rule.center { margin-left: auto; margin-right: auto; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section--tight { padding: 64px 0; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--white); }
.section--ink .lead { color: rgba(255,255,255,0.72); }
.section--ink .eyebrow { color: var(--gold); }

.section-head { max-width: var(--reading); margin-bottom: var(--s6); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 32px;
  border-radius: 100px;
  font-size: 16px; font-weight: 500;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  min-width: 44px;
}
.btn--primary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(11, 11, 11, 0.08);
}
.btn--primary:hover {
  transform: scale(1.02);
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--primary .ico { color: var(--ink); transition: color 0.2s var(--ease); }
.btn--primary:hover .ico { color: var(--white); }

.section--ink .btn--primary:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.section--ink .btn--primary:hover .ico { color: var(--ink); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); background: var(--white); }
.btn--ghost:hover { border-color: var(--gold); }
.section--ink .btn--ghost { border-color: rgba(255,255,255,0.24); color: var(--white); background: transparent; }
.section--ink .btn--ghost:hover { border-color: var(--gold); }
.btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
.section--ink .btn:focus-visible { outline-color: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.header.scrolled { border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand__logo { display: block; height: 38px; width: auto; transition: opacity 0.2s var(--ease); }
.brand__logo--desktop { display: none; }
.brand__logo--mobile { display: block; height: 34px; width: auto; }
@media (min-width: 640px) {
  .brand__logo--desktop { display: block; height: 38px; }
  .brand__logo--mobile { display: none; }
}
.footer .brand__logo {
  filter: brightness(0) invert(1);
}
.nav { display: none; gap: 32px; }
@media (min-width: 940px) { .nav { display: flex; } }
.nav a { font-size: 15px; color: var(--slate); transition: color 0.2s var(--ease); position: relative; }
.nav a:hover { color: var(--ink); }
.header__cta { display: none; }
@media (min-width: 940px) { .header__cta { display: inline-flex; } }
.header .btn { height: 44px; padding: 0 22px; font-size: 15px; }

.burger { display: flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
@media (min-width: 940px) { .burger { display: none; } }
.burger span { width: 22px; height: 1.5px; background: var(--ink); transition: 0.3s var(--ease); }
.mobile-nav {
  position: fixed; inset: 72px 0 0; background: var(--white); z-index: 40;
  padding: 32px 24px; transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: 0.3s var(--ease); overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a { display: block; padding: 18px 0; font-family: var(--display); font-size: 22px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 28px; width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 96px; }
@media (min-width: 768px) { .hero { padding: 112px 0 128px; } }
.hero__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; } }
.hero h1 { margin: 20px 0 24px; }
.hero .lead { max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__meta { display: flex; gap: 32px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero__meta .n { font-family: var(--display); font-size: 26px; font-weight: 600; letter-spacing: -0.02em; }
.hero__meta .k { font-size: 13px; color: var(--ash); letter-spacing: 0.02em; }
.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; }

/* ---------- Grid de pilares ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 32px; transition: border-color 0.24s var(--ease), transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(11,11,11,0.05); }
.card__ico { width: 40px; height: 40px; color: var(--gold-deep); margin-bottom: 22px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 15.5px; flex-grow: 1; }
.card__link { margin-top: 22px; font-size: 14px; font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.card__link .ar { transition: transform 0.24s var(--ease); color: var(--gold-deep); }
.card:hover .card__link .ar { transform: translateX(4px); }
.card--feature { border-color: var(--gold); background: linear-gradient(180deg, var(--white), #FEFDF9); }
.card--feature .badge {
  align-self: flex-start; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); background: var(--gold-soft); padding: 5px 12px; border-radius: 100px; margin-bottom: 18px; font-weight: 600;
}

/* ---------- Faixa de destaque (Cirurgias Estéticas) ---------- */
.feature-band { position: relative; overflow: hidden; }
.feature-band__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .feature-band__grid { grid-template-columns: 0.9fr 1.1fr; } }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip { font-size: 14px; padding: 9px 18px; border: 1px solid rgba(255,255,255,0.18); border-radius: 100px; color: rgba(255,255,255,0.85); transition: 0.2s var(--ease); }
.chip:hover { border-color: var(--gold); color: var(--white); }

/* ---------- Autoridade / Bucomaxilo ---------- */
.authority { display: grid; gap: 40px; align-items: center; }
@media (min-width: 860px) { .authority { grid-template-columns: 1fr 1fr; } }
.credlist { margin-top: 28px; display: grid; gap: 2px; }
.credlist li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.credlist .ci { color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }
.credlist strong { font-family: var(--display); font-weight: 600; display: block; margin-bottom: 3px; }
.credlist span { font-size: 15px; color: var(--slate); }

/* ---------- Como funciona ---------- */
.steps { counter-reset: step; display: grid; gap: 4px; margin-top: 8px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n { counter-increment: step; font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--gold-deep); padding-top: 4px; }
.step__n::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: 15.5px; }

/* ---------- Depoimentos ---------- */
.quotes { display: grid; gap: 20px; }
@media (min-width: 720px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 32px; }
.quote__stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 16px; }
.quote p { font-size: 16.5px; line-height: 1.6; color: var(--graphite); }
.quote__by { margin-top: 20px; font-size: 14px; color: var(--ash); }
.quote__by strong { color: var(--ink); font-weight: 500; }

/* ---------- Acolhimento (bloco editorial) ---------- */
.editorial { text-align: center; max-width: 760px; margin: 0 auto; }
.editorial p { font-family: var(--display); font-size: clamp(24px, 3.4vw, 32px); line-height: 1.35; font-weight: 500; letter-spacing: -0.02em; }
.editorial .accent { color: var(--gold-deep); font-style: italic; font-weight: 500; }

/* ---------- Localização ---------- */
/* ---------- Localização (Onde Estamos - UX/UI Senior) ---------- */
.locate-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 900px) {
  .locate-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.locate-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 12px 36px rgba(11, 11, 11, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.locate-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.locate-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.locate-icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(194, 161, 77, 0.12);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.locate-info-text strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.locate-info-text p,
.locate-info-text a {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
  text-decoration: none;
}

.locate-info-text a:hover {
  color: var(--gold-deep);
}

.locate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.locate-building-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(194, 161, 77, 0.25);
  box-shadow: 0 16px 40px rgba(11, 11, 11, 0.08);
  min-height: 380px;
  background: var(--paper);
}

.locate-building-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}

.locate-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(11, 11, 11, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.locate-map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(11, 11, 11, 0.04);
  height: 380px;
  width: 100%;
  background: var(--mist);
}

.locate-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- CTA final ---------- */
.finalcta { text-align: center; }
.finalcta h2 { max-width: 620px; margin: 0 auto 18px; }
.finalcta .lead { max-width: 520px; margin: 0 auto 36px; }
.finalcta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 72px 0 40px; }
.footer__grid { display: grid; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer .brand__name { color: var(--white); }
.footer h4 { color: var(--white); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--body); font-weight: 600; }
.footer li { margin-bottom: 12px; }
.footer a { font-size: 15px; transition: color 0.2s var(--ease); }
.footer a:hover { color: var(--gold); }
.footer__intro { font-size: 15px; line-height: 1.7; max-width: 320px; margin-top: 20px; }
.footer__compliance {
  margin-top: 40px; padding-top: 28px;
  font-size: 12.5px; line-height: 1.8; color: rgba(255,255,255,0.42);
}
.footer__compliance strong { color: rgba(255,255,255,0.7); font-weight: 500; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px 24px; justify-content: space-between; align-items: center; margin-top: 28px; font-size: 13px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.footer__nexus { color: rgba(255,255,255,0.5); font-size: 12.5px; }
.footer__nexus a { color: var(--gold); font-weight: 500; text-decoration: none; transition: color 0.2s var(--ease); }
.footer__nexus a:hover { color: var(--white); text-decoration: underline; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 60px; height: 60px; border-radius: 100px;
  background: linear-gradient(135deg, #D5B564 0%, #C2A14D 50%, #8A6D1F 100%);
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 25px rgba(194, 161, 77, 0.45), 0 0 35px rgba(194, 161, 77, 0.25);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(194, 161, 77, 0.6), 0 0 50px rgba(194, 161, 77, 0.4);
}
.wa-float svg { width: 28px; height: 28px; fill: #FFFFFF; color: #FFFFFF; }
.wa-float:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Página de procedimento
   ============================================================ */
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 13.5px; color: var(--ash); padding: 24px 0 0; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb .sep { color: var(--line); }

.proc-hero { padding: 32px 0 72px; }
.proc-hero__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .proc-hero__grid { grid-template-columns: 1.1fr 0.9fr; } }
.proc-hero h1 { margin: 18px 0 20px; }
.proc-hero .lead { width: 100%; max-width: 100%; margin-bottom: 32px; }

.proc-body { display: grid; gap: 56px; }
@media (min-width: 940px) { .proc-body { grid-template-columns: 1fr 320px; gap: 64px; align-items: start; } }

.prose { width: 100%; max-width: 100%; }
.prose > * + * { margin-top: var(--s3); }
.prose h2 { margin-top: var(--s6); scroll-margin-top: 100px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--graphite); line-height: 1.75; font-size: 16.5px; }
.prose .rule { margin-top: var(--s6); }

.dl { display: grid; gap: 0; margin-top: var(--s3); }
.dl__row { display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
@media (max-width: 640px) { .dl__row { grid-template-columns: 1fr; gap: 4px; } }
.dl__row dt { font-weight: 500; color: var(--ink); }
.dl__row dd { color: var(--slate); }

.checklist { display: grid; gap: 14px; margin-top: var(--s3); }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .ci { flex-shrink: 0; margin-top: 3px; }
.checklist.yes .ci { color: var(--gold-deep); }
.checklist.no .ci { color: var(--ash); }
.checklist li span { color: var(--graphite); }

.recovery { display: grid; gap: 2px; margin-top: var(--s3); }
.recovery__row { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line); }
.recovery__row:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 520px) { .recovery__row { grid-template-columns: 1fr; gap: 6px; } }
.recovery__when { font-family: var(--display); font-weight: 600; color: var(--gold-deep); font-size: 15px; }
.recovery__what { color: var(--slate); font-size: 15.5px; }

/* Sidebar sticky apenas no desktop */
.proc-aside { position: static; }
@media (min-width: 940px) { .proc-aside { position: sticky; top: 96px; } }
.aside-card { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 28px; }
.aside-card h3 { font-size: 18px; margin-bottom: 8px; }
.aside-card p { font-size: 14.5px; color: var(--slate); margin-bottom: 20px; }
.aside-card .btn { width: 100%; justify-content: center; }
.aside-card__pro { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 14px; align-items: center; }
.aside-card__pro .av { width: 46px; height: 46px; border-radius: 100px; background: var(--mist); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--gold-deep); }
.aside-card__pro .nm { font-family: var(--display); font-weight: 600; font-size: 15px; }
.aside-card__pro .cr { font-size: 13px; color: var(--ash); }

/* Navegação interna legal */
.legal-nav { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; margin-bottom: 20px; }
.legal-nav a { font-size: 14px; color: var(--slate); padding: 8px 0; border-bottom: 1px dashed var(--line); transition: color 0.2s var(--ease), padding-left 0.2s var(--ease); }
.legal-nav a:hover { color: var(--gold-deep); padding-left: 6px; }

/* Acordeão FAQ */
.faq { margin-top: var(--s3); border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--display); font-weight: 500; font-size: 17.5px; color: var(--ink); }
.faq__q .pm { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; background: var(--gold-deep); transition: 0.24s var(--ease); }
.faq__q .pm::before { width: 22px; height: 1.5px; top: 10px; left: 0; }
.faq__q .pm::after { width: 1.5px; height: 22px; left: 10px; top: 0; }
.faq__item.open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq__a p { padding-bottom: 24px; color: var(--slate); font-size: 16px; width: 100%; max-width: 100%; }
.faq__q:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

.notice { background: var(--gold-glow); border: 1px solid var(--gold-soft); border-radius: 16px; padding: 24px 28px; margin-top: var(--s4); width: 100%; max-width: 100%; }
.notice p { font-size: 14.5px; color: var(--slate); margin: 0; }
.notice strong { color: var(--gold-deep); font-weight: 600; }

/* ---------- Galeria de Fotos e Imagens ---------- */
.photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 11, 11, 0.08);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 11, 11, 0.12);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.photo-card:hover img {
  transform: scale(1.03);
}
.photo-card__caption {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(11,11,11,0.88) 100%);
  color: var(--white);
  font-family: var(--display);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.photo-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 36px;
}
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 11, 11, 0.12);
  border: 1px solid rgba(194, 161, 77, 0.25);
  background: var(--paper);
}
.hero-image-wrap img {
  width: 100%;
  height: 460px;
  max-height: 65vh;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .hero-image-wrap img {
    height: 320px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
