/* ==========================================================================
   Luana Guedes Moura — Advocacia Imobiliária
   Design tokens + estilos globais
   ========================================================================== */

:root {
  /* Paleta principal (Fase 1) */
  --color-teal-950: #0F2E2B;   /* fundo institucional escuro */
  --color-teal-800: #17423D;   /* fundo alternativo médio */
  --color-teal-700: #1E4844;   /* divisores, bordas sutis */
  --color-offwhite: #F7F5F0;   /* fundo claro */
  --color-text-dark-bg: #F4F1EA;  /* texto sobre fundo escuro */
  --color-text-light-bg: #1C2321; /* texto sobre fundo claro */
  --color-gold: #C9A961;       /* acento dourado */
  --color-gold-dark: #A8863E;  /* hover / estado ativo do dourado */
  --color-neutral-400: #8A9490; /* texto secundário, discreto */
  --color-border-subtle: rgba(201, 169, 97, 0.25);
  --color-border-light: rgba(28, 35, 33, 0.12);
  --color-error: #B33A3A;
  --color-error-bg: rgba(179, 58, 58, 0.06);

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Escala tipográfica (mobile-first, ajustada em breakpoints) */
  --fs-h1: 2rem;        /* 32px */
  --fs-h2: 1.5rem;      /* 24px */
  --fs-h3: 1.125rem;    /* 18px */
  --fs-body: 1rem;      /* 16px */
  --fs-small: 0.875rem; /* 14px */
  --fs-epigraph: 1rem;  /* 16px */

  /* Espaçamento */
  --space-section: 3.5rem;   /* 56px mobile */
  --space-block: 2rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;

  --radius-sm: 2px;
  --radius-md: 4px;

  --max-width-content: 1180px;
  --max-width-reading: 700px;
  --max-width-narrow: 620px;

  --header-height: 64px;
  --transition-base: 200ms ease;
}

@media (min-width: 768px) {
  :root {
    --fs-h1: 2.75rem;     /* 44px */
    --fs-h2: 1.875rem;    /* 30px */
    --fs-h3: 1.25rem;
    --fs-epigraph: 1.125rem;
    --space-section: 5rem;
    --header-height: 76px;
  }
}

@media (min-width: 1024px) {
  :root {
    --fs-h1: 3.5rem;      /* 56px */
    --fs-h2: 2rem;        /* 32px */
    --fs-epigraph: 1.25rem;
    --space-section: 7rem;
    --header-height: 80px;
  }
}

/* ==========================================================================
   Reset básico
   ========================================================================== */

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

html { scroll-behavior: smooth; }

@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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-text-light-bg);
  background-color: var(--color-offwhite);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { margin: 0; padding: 0; list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 var(--space-md);
}

h1 { font-size: var(--fs-h1); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: var(--fs-h2); font-weight: 600; }
h3 { font-size: var(--fs-h3); font-weight: 600; font-family: var(--font-body); }

p { margin: 0 0 var(--space-md); }
p:last-child { margin-bottom: 0; }

/* Foco visível — acessibilidade obrigatória */
:focus-visible {
  outline: 2px solid var(--color-gold-dark);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--color-teal-950);
  color: var(--color-text-dark-bg);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: var(--radius-sm);
  transition: top var(--transition-base);
}
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   Utilitários de layout
   ========================================================================== */

.container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
  position: relative;
  overflow: hidden;
}

.section--dark {
  background-color: var(--color-teal-950);
  color: var(--color-text-dark-bg);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--color-text-dark-bg); }

.section--medium {
  background-color: var(--color-teal-800);
  color: var(--color-text-dark-bg);
}
.section--medium h1, .section--medium h2, .section--medium h3 { color: var(--color-text-dark-bg); }

.section--light {
  background-color: var(--color-offwhite);
  color: var(--color-text-light-bg);
}

.section--narrow {
  max-width: var(--max-width-reading);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

/* Elemento decorativo — arco dourado (assinatura de marca, uso comedido) */
.gold-arc {
  position: absolute;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
}
.gold-arc--top-left {
  width: 220px; height: 220px;
  top: -110px; left: -60px;
}
.gold-arc--bottom-right {
  width: 260px; height: 260px;
  bottom: -130px; right: -80px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.is-scrolled,
.site-header.is-solid {
  background-color: var(--color-teal-950);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Páginas internas (não-Home) sempre com header sólido, pois o hero interno é mais curto */
.site-header.is-static { background-color: var(--color-teal-950); }

.header-inner {
  width: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-inner { padding: 0 2rem; }
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text-dark-bg);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo strong { font-weight: 600; }

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  .nav-desktop a {
    font-size: 0.9375rem;
    color: var(--color-text-dark-bg);
    opacity: 0.9;
    transition: opacity var(--transition-base), color var(--transition-base);
    position: relative;
  }
  .nav-desktop a:hover { opacity: 1; color: var(--color-gold); }
  .nav-desktop a[aria-current="page"] {
    opacity: 1;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 4px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
  min-height: 44px;
}

.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-teal-950);
  border-color: var(--color-gold);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-teal-950);
}

.btn--outline-dark {
  background-color: transparent;
  border-color: rgba(244, 241, 234, 0.4);
  color: var(--color-text-dark-bg);
}
.btn--outline-dark:hover, .btn--outline-dark:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--outline-light {
  background-color: transparent;
  border-color: var(--color-teal-950);
  color: var(--color-teal-950);
}
.btn--outline-light:hover, .btn--outline-light:focus-visible {
  background-color: var(--color-teal-950);
  color: var(--color-text-dark-bg);
}

/* Botão de menu mobile */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  color: var(--color-text-dark-bg);
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}
.menu-toggle svg { width: 24px; height: 24px; }

/* Painel de navegação mobile */
.nav-mobile {
  position: fixed;
  inset: 0;
  background-color: var(--color-teal-950);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}
.nav-mobile.is-open { transform: translateX(0); }

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.nav-mobile-links a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text-dark-bg);
}
.nav-mobile-links a[aria-current="page"] { color: var(--color-gold); }

@media (min-width: 1024px) {
  .nav-mobile, .menu-toggle { display: none; }
}

/* ==========================================================================
   Hero — Home
   ========================================================================== */

.hero-home {
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 3rem;
  background-color: var(--color-teal-950);
  color: var(--color-text-dark-bg);
  position: relative;
  overflow: hidden;
}

.hero-home .container {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}

.hero-photo {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text { max-width: 560px; }

.hero-text .eyebrow-name {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.hero-text .role {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero-support {
  font-size: 1.0625rem;
  color: var(--color-text-dark-bg);
  opacity: 0.92;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

@media (min-width: 900px) {
  .hero-home .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hero-photo { max-width: 400px; order: 2; }
  .hero-text { order: 1; }
}

/* ==========================================================================
   Página Sobre — bloco de trajetória com foto
   Escopo exclusivo desta página; não reutiliza .hero-photo (Home) de propósito,
   para manter os dois blocos independentes e evitar acoplamento entre páginas.
   ========================================================================== */

.about-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text {
  max-width: var(--max-width-reading);
  width: 100%;
}

@media (min-width: 860px) {
  .about-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .about-photo { margin-top: 0.25rem; }
}

/* Epígrafe — tratamento editorial, nunca de slogan publicitário */
.epigraph {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: var(--fs-epigraph);
  line-height: 1.5;
  color: var(--color-text-dark-bg);
  opacity: 0.85;
  border: none;
  margin: 0 0 1.75rem;
  padding: 0;
  max-width: 440px;
}
.epigraph--on-light { color: var(--color-text-light-bg); opacity: 0.8; }

/* ==========================================================================
   Hero — páginas internas (Sobre, Áreas, Contato)
   ========================================================================== */

.hero-page {
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 2.5rem;
  background-color: var(--color-teal-950);
  color: var(--color-text-dark-bg);
}
.hero-page h1 { margin-bottom: 0.75rem; }
.hero-page p {
  font-size: 1.0625rem;
  max-width: 560px;
  opacity: 0.9;
}

/* ==========================================================================
   Cards — Áreas de atuação / Diferenciais
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .card-grid--2col { grid-template-columns: 1fr 1fr; }
}

.card {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  background-color: #fff;
  transition: border-color var(--transition-base);
}
.card:hover { border-color: var(--color-gold); }

.card--dark {
  background-color: transparent;
  border-color: rgba(244,241,234,0.14);
}
.card--dark:hover { border-color: var(--color-gold); }

.card-icon {
  width: 28px; height: 28px;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.9375rem; color: inherit; opacity: 0.85; margin-bottom: 0; }

/* Diferenciais — 3 colunas */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
}
.pillar h3 { font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.9375rem; opacity: 0.85; margin: 0; }

/* ==========================================================================
   Seção "Como eu atuo" (Home) — escopo exclusivo, não reutilizado em outras
   páginas. Não usa .pillar/.pillar-grid de propósito, pois essas classes
   também são usadas em sobre.html ("Meus princípios") e não devem ser
   afetadas por este refinamento.
   ========================================================================== */

.approach-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.approach-header h2 {
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}
.approach-header h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 0.85rem auto 0;
}
.approach-subtitle {
  font-size: 1rem;
  color: var(--color-neutral-400);
  margin: 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 900px) {
  .approach-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.approach-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border-light);
  border-top: 3px solid var(--color-teal-950);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.approach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 46, 43, 0.07);
  border-color: rgba(15, 46, 43, 0.22);
}

.approach-number {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  color: var(--color-gold-dark);
  opacity: 0.85;
  margin-bottom: 0.9rem;
}

.approach-icon {
  width: 26px;
  height: 26px;
  color: var(--color-teal-950);
  margin-bottom: 1.1rem;
}

.approach-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light-bg);
  margin-bottom: 0.65rem;
}
.approach-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-light-bg);
  opacity: 0.8;
  margin: 0;
}

/* ==========================================================================
   Lista de confiança (formação / atuação institucional)
   ========================================================================== */

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
}
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}
.trust-list .check-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  color: var(--color-gold);
}

/* ==========================================================================
   Bloco de identificação profissional (OAB) — Sobre e Footer
   ========================================================================== */

.identification-block {
  font-family: var(--font-body);
  line-height: 1.5;
}
.identification-block .id-name {
  font-weight: 600;
  font-size: 1rem;
}
.identification-block .id-role {
  font-size: 0.9375rem;
  color: var(--color-neutral-400);
}
.identification-block--large .id-name { font-size: 1.0625rem; }

/* ==========================================================================
   CTA final de seção
   ========================================================================== */

.cta-block {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-block h2 { margin-bottom: 0.75rem; }
.cta-block p { margin-bottom: 1.75rem; opacity: 0.85; }

/* ==========================================================================
   Formulário de contato
   ========================================================================== */

.form-wrapper { max-width: var(--max-width-narrow); margin: 0 auto; }

.form-field { margin-bottom: 1.375rem; }

.form-field label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--color-text-light-bg);
}

.form-field .required-mark { color: var(--color-gold-dark); margin-left: 2px; }

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid rgba(28,35,33,0.25);
  border-radius: var(--radius-sm);
  background-color: #fff;
  color: var(--color-text-light-bg);
  transition: border-color var(--transition-base);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--color-gold-dark);
  outline: none; /* substituído por :focus-visible acima via outline custom */
  box-shadow: 0 0 0 2px var(--color-gold-dark);
}

.form-field textarea { min-height: 140px; resize: vertical; }

.field-hint {
  font-size: 0.8125rem;
  color: var(--color-neutral-400);
  margin-top: 0.35rem;
}

.field-error {
  font-size: 0.8125rem;
  color: var(--color-error);
  margin-top: 0.4rem;
  display: none;
}
.form-field.has-error input,
.form-field.has-error textarea { border-color: var(--color-error); }
.form-field.has-error .field-error { display: block; }

/* Checkbox de consentimento */
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.consent-field input[type="checkbox"] {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-gold-dark);
}
.consent-field label {
  font-size: 0.9375rem;
  line-height: 1.5;
}
.consent-field a { text-decoration: underline; color: var(--color-text-light-bg); }
.consent-field a:hover { color: var(--color-gold-dark); }

/* Aviso legal fixo — sempre visível antes do envio, nunca colapsável */
.legal-notice {
  border-left: 3px solid var(--color-gold);
  background-color: rgba(201,169,97,0.06);
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  color: var(--color-text-light-bg);
}

.form-submit-row { margin-top: 0.5rem; }

.form-status {
  margin-top: 1rem;
  font-size: 0.9375rem;
}

/* Estado de sucesso */
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
}
.form-success.is-visible { display: block; }
.form-success .success-icon {
  width: 40px; height: 40px;
  color: var(--color-gold-dark);
  margin: 0 auto 1rem;
}
.form-success h3 { margin-bottom: 0.75rem; }
.form-success p { max-width: 460px; margin-left: auto; margin-right: auto; }

.contact-form.is-submitted { display: none; }

/* Canais alternativos */
.contact-channels {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border-light);
}
.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
}
.contact-channels-list a { text-decoration: underline; }

/* ==========================================================================
   Página legal (Privacidade / Avisos Legais)
   ========================================================================== */

.legal-page {
  max-width: var(--max-width-reading);
  margin: 0 auto;
}
.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
}
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page p, .legal-page li { font-size: 0.9375rem; line-height: 1.7; }
.legal-page .updated-at {
  font-size: 0.875rem;
  color: var(--color-neutral-400);
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--color-teal-950);
  color: var(--color-text-dark-bg);
  padding: 3rem 0 2rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--color-text-dark-bg);
  opacity: 0.85;
}
.footer-contact a:hover { color: var(--color-gold); }

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal-links a {
  text-decoration: underline;
  opacity: 0.8;
}
.footer-legal-links a:hover { opacity: 1; color: var(--color-gold); }

.footer-social-inline {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.6rem;
}
.footer-social-inline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(244,241,234,0.25);
  color: var(--color-text-dark-bg);
  opacity: 0.8;
  transition: opacity var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}
.footer-social-inline a:hover,
.footer-social-inline a:focus-visible {
  opacity: 1;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(244,241,234,0.12);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  opacity: 0.6;
  font-size: 0.8125rem;
}

.footer-credit {
  border-top: 1px solid rgba(244,241,234,0.12);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  opacity: 0.5;
  text-align: center;
}
.footer-credit a {
  text-decoration: underline;
  opacity: 1;
}
.footer-credit a:hover { color: var(--color-gold); }

.identification-block .id-role,
.footer-contact .id-role { color: var(--color-neutral-400); }

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Responsivo — ajustes finos de página interna em telas maiores
   ========================================================================== */

@media (min-width: 900px) {
  .card-grid--areas { grid-template-columns: 1fr 1fr; }
}
