/* ==========================================================================
   Laura Furquim da Silva — Advocacia de Aviação
   Sistema de design: navy profundo (da marca) + latão + papel
   ========================================================================== */

:root {
  /* Cor */
  --navy: #162947;
  --navy-deep: #0C1729;
  --navy-soft: #24395E;
  --paper: #F7F4EE;
  --paper-dim: #EFE9DC;
  --ink: #1A2233;
  --ink-soft: #565F70;
  --ink-faint: #8890A0;
  --brass: #B68D4C;
  --brass-dark: #8F6B34;
  --brass-soft: #EDE1C8;
  --line: #DDD4C0;
  --line-navy: rgba(255,255,255,0.16);
  --green: #3D7259;
  --green-soft: #E1EBE4;
  --white: #FFFFFF;

  /* Tipografia */
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Espaçamento */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 4px;
  --radius-lg: 10px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -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; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; color: var(--navy); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

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

.lf-container--narrow { max-width: 820px; }

section { padding: var(--section-pad) 0; }

.lf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 1.1rem;
}
.lf-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass-dark);
  display: inline-block;
}
.lf-eyebrow--on-navy { color: var(--brass); }
.lf-eyebrow--on-navy::before { background: var(--brass); }

h2.lf-h2 { font-size: clamp(1.7rem, 3.1vw, 2.5rem); margin-bottom: 0.6em; }
h1.lf-h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); letter-spacing: -0.01em; }

.lf-lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- Botões ---------- */
.lf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color .15s ease;
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 360px) {
  .lf-btn { white-space: normal; text-align: left; }
}
.lf-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.lf-btn--brass { background: var(--brass); color: var(--navy-deep); }
.lf-btn--brass:hover { background: var(--brass-dark); color: var(--white); transform: translateY(-1px); }
.lf-btn--ghost-navy { border-color: rgba(255,255,255,0.4); color: var(--white); }
.lf-btn--ghost-navy:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.lf-btn--ghost-ink { border-color: var(--line); color: var(--navy); }
.lf-btn--ghost-ink:hover { border-color: var(--navy); background: var(--paper-dim); }
.lf-btn--block { width: 100%; justify-content: center; }
.lf-btn--sm { padding: 0.7em 1.3em; font-size: 0.88rem; }

/* ==========================================================================
   Cabeçalho
   ========================================================================== */
.lf-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-navy);
}
.lf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.lf-logo { display: flex; align-items: center; flex-shrink: 0; }
.lf-logo img { height: 56px; width: auto; }

.lf-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.lf-nav__list {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.86);
}
.lf-nav__list a:hover { color: var(--brass); }
.lf-nav__list .is-active { color: var(--brass); }

.lf-dropdown { position: relative; }
.lf-dropdown__toggle { display: inline-flex; align-items: center; gap: 0.35em; }
.lf-dropdown__toggle svg { width: 12px; height: 12px; transition: transform .15s ease; }
.lf-dropdown__panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(12,23,41,0.22);
  padding: 0.6rem;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  translate: 0 6px;
  transition: opacity .15s ease, translate .15s ease, visibility .15s;
}
.lf-dropdown:hover .lf-dropdown__panel,
.lf-dropdown:focus-within .lf-dropdown__panel,
.lf-dropdown.is-open .lf-dropdown__panel {
  opacity: 1; visibility: visible; translate: 0 0;
}
.lf-dropdown:hover .lf-dropdown__toggle svg { transform: rotate(180deg); }
.lf-dropdown__panel a {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.65rem 0.8rem;
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--ink);
}
.lf-dropdown__panel a:hover { background: var(--paper-dim); color: var(--navy); }
.lf-dropdown__panel a .lf-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); flex-shrink: 0; }

.lf-header__cta { display: flex; align-items: center; gap: 1rem; }
.lf-burger {
  display: none;
  background: none;
  border: none;
  width: 30px; height: 22px;
  position: relative;
}
.lf-burger span, .lf-burger span::before, .lf-burger span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.lf-burger span { top: 10px; }
.lf-burger span::before { top: -8px; }
.lf-burger span::after { top: 8px; }
.lf-burger.is-open span { background: transparent; }
.lf-burger.is-open span::before { top: 0; transform: rotate(45deg); }
.lf-burger.is-open span::after { top: 0; transform: rotate(-45deg); }

.lf-mobile-panel {
  display: none;
  background: var(--navy-deep);
  border-top: 1px solid var(--line-navy);
}
.lf-mobile-panel.is-open { display: block; }
.lf-mobile-panel__list { padding: 0.6rem var(--gutter) 1.4rem; }
.lf-mobile-panel__list li { border-bottom: 1px solid var(--line-navy); }
.lf-mobile-panel__list a, .lf-mobile-panel__group-label {
  display: block;
  padding: 0.85rem 0;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}
.lf-mobile-panel__sub { padding-left: 1rem; }
.lf-mobile-panel__sub a { color: rgba(255,255,255,0.68); font-size: 0.94rem; padding: 0.6rem 0; }
.lf-mobile-panel__cta { margin-top: 1.2rem; }

@media (max-width: 900px) {
  .lf-nav { display: none; }
  .lf-burger { display: block; }
}

@media (max-width: 480px) {
  .lf-header__cta > a.lf-btn { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.lf-hero {
  background: var(--navy);
  color: var(--white);
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.lf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(100deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 90px);
  pointer-events: none;
}
.lf-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}
.lf-hero__grid > div { min-width: 0; }
.lf-hero__eyebrow-row { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.3rem; flex-wrap: wrap; }
.lf-hero h1 { color: var(--white); }
.lf-hero h1 em { font-style: normal; color: var(--brass); }
.lf-hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
  max-width: 48ch;
  margin: 1.3rem 0 2rem;
}
.lf-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.lf-hero__note { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.lf-hero__note svg { width: 16px; height: 16px; color: var(--brass); flex-shrink: 0; }

@media (max-width: 900px) {
  .lf-hero__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Bilhete de embarque — elemento de assinatura visual
   Usado para: caso do visitante (hero), tipos de problema (grade), e
   resumo legal em cada página interna.
   ========================================================================== */
.lf-ticket {
  --notch-bg: var(--navy);
  background: var(--paper);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 88px 1fr;
  min-width: 0;
  box-shadow: 0 30px 60px -20px rgba(6,12,24,0.45);
  position: relative;
  color: var(--ink);
}
.lf-ticket__stub {
  background: var(--navy-deep);
  color: var(--brass);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  position: relative;
}
.lf-ticket__stub-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lf-ticket__perforation {
  position: absolute;
  top: 0; bottom: 0;
  right: -1px;
  width: 0;
  border-right: 2px dashed rgba(22,41,71,0.28);
}
.lf-ticket__notch {
  position: absolute;
  right: -10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--notch-bg);
  z-index: 2;
}
.lf-ticket__notch--top { top: -10px; }
.lf-ticket__notch--bottom { bottom: -10px; }
.lf-ticket__body { padding: 1.5rem 1.6rem; min-width: 0; }
.lf-ticket__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem 1rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
}
.lf-ticket__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); min-width: 0; }
.lf-ticket__tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green-soft);
  color: var(--green);
  padding: 0.3em 0.7em;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.lf-ticket__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.4rem; min-width: 0; }
.lf-ticket__field { min-width: 0; }
.lf-ticket__field-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.3em;
}
.lf-ticket__field-value { font-size: 0.98rem; color: var(--ink); font-weight: 600; }
.lf-ticket__field--wide { grid-column: 1 / -1; }
.lf-ticket__foot {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line);
  font-size: 0.86rem;
  color: var(--ink-soft);
}

/* Variante compacta (grade "situações mais comuns") */
.lf-ticket--mini { grid-template-columns: 56px 1fr; box-shadow: 0 14px 30px -14px rgba(22,41,71,0.22); }
.lf-ticket--mini .lf-ticket__body { padding: 1.25rem 1.3rem; }
.lf-ticket--mini .lf-ticket__stub-text { font-size: 0.64rem; }
.lf-ticket--mini .lf-ticket__title { font-size: 1.05rem; }
.lf-ticket--mini a.lf-ticket__link {
  display: inline-flex; align-items: center; gap: 0.4em;
  margin-top: 0.8rem; font-size: 0.86rem; font-weight: 700; color: var(--brass-dark);
}
.lf-ticket--mini a.lf-ticket__link svg { width: 14px; height: 14px; transition: transform .15s ease; }
.lf-ticket--mini:hover a.lf-ticket__link svg { transform: translateX(3px); }

/* ==========================================================================
   Faixa de confiança
   ========================================================================== */
.lf-trust {
  background: var(--paper-dim);
  border-bottom: 1px solid var(--line);
}
.lf-trust__row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  padding: 1.6rem 0;
}
.lf-trust__item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.94rem; color: var(--ink-soft); }
.lf-trust__item svg { width: 20px; height: 20px; color: var(--brass-dark); flex-shrink: 0; }
.lf-trust__item strong { color: var(--navy); }

/* ==========================================================================
   Grade de situações (cards de bilhete)
   ========================================================================== */
.lf-grid-situacoes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.4rem;
  margin-top: 2.6rem;
  min-width: 0;
}
.lf-grid-situacoes > a { min-width: 0; }

/* ==========================================================================
   Como funciona — passo a passo com trajeto tracejado
   ========================================================================== */
.lf-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 3rem;
}
.lf-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 0;
  border-top: 2px dashed var(--line);
  z-index: 0;
}
.lf-step { position: relative; z-index: 1; }
.lf-step__marker {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  margin-bottom: 1.3rem;
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line);
}
.lf-step h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.lf-step p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 0; }

@media (max-width: 760px) {
  .lf-steps { grid-template-columns: 1fr; gap: 2.2rem; }
  .lf-steps::before { display: none; }
}

/* ==========================================================================
   Seção navy (diferenciais / CTA)
   ========================================================================== */
.lf-section--navy { background: var(--navy); color: var(--white); }
.lf-section--navy h2 { color: var(--white); }
.lf-section--navy .lf-lede { color: rgba(255,255,255,0.72); }

.lf-diffs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 1.8rem;
  margin-top: 2.6rem;
}
.lf-diff__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(182,141,76,0.16);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.lf-diff__icon svg { width: 22px; height: 22px; }
.lf-diff h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 0.4rem; }
.lf-diff p { color: rgba(255,255,255,0.68); font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   Conteúdo jurídico (páginas internas)
   ========================================================================== */
.lf-article {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.lf-article__body { min-width: 0; }
.lf-article__aside { min-width: 0; }
.lf-article__body h2 { font-size: 1.5rem; margin-top: 2.2rem; margin-bottom: 0.7rem; }
.lf-article__body h2:first-child { margin-top: 0; }
.lf-article__body p { color: var(--ink-soft); }
.lf-article__body ul { margin: 1rem 0 1.4rem; }
.lf-article__body li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--ink-soft);
}
.lf-article__body li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px;
  background: var(--brass);
  border-radius: 50%;
}
.lf-article__aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.6rem; }
.lf-callout {
  background: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.lf-callout h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.6rem; }
.lf-callout p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1rem; }

@media (max-width: 900px) {
  .lf-article { grid-template-columns: 1fr; }
  .lf-article__aside { position: static; }
}

.lf-breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex; gap: 0.5em; flex-wrap: wrap; margin-bottom: 1.2rem;
}
.lf-breadcrumb a:hover { color: var(--brass); }
.lf-breadcrumb .sep { opacity: 0.5; }

/* ==========================================================================
   FAQ acordeão
   ========================================================================== */
.lf-faq { border-top: 1px solid var(--line); }
.lf-faq__item { border-bottom: 1px solid var(--line); }
.lf-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--navy);
}
.lf-faq__q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .2s ease; color: var(--brass-dark); }
.lf-faq__item.is-open .lf-faq__q svg { transform: rotate(45deg); }
.lf-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.lf-faq__a-inner { padding-bottom: 1.4rem; color: var(--ink-soft); max-width: 68ch; }
.lf-faq__item.is-open .lf-faq__a { max-height: 600px; }

.lf-faq-preview-link { margin-top: 2.2rem; }

/* ==========================================================================
   CTA final
   ========================================================================== */
.lf-cta-final {
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
}
.lf-cta-final h2 { color: var(--white); margin-bottom: 0.6rem; }
.lf-cta-final p { color: rgba(255,255,255,0.7); max-width: 52ch; margin: 0 auto 2rem; }
.lf-cta-final__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   Rodapé
   ========================================================================== */
.lf-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding-top: 4rem; }
.lf-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-navy);
}
.lf-footer__brand img { height: 48px; margin-bottom: 1rem; }
.lf-footer__brand p { font-size: 0.9rem; max-width: 30ch; }
.lf-footer h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1rem;
}
.lf-footer__links li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.lf-footer__links a:hover { color: var(--white); }
.lf-footer__contact li { margin-bottom: 0.85rem; font-size: 0.92rem; display: flex; gap: 0.6em; }
.lf-footer__contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 0.15em; color: var(--brass); }
.lf-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.6rem 0 2.2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.lf-footer__disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.4); max-width: 720px; margin: 0 auto; text-align: center; padding: 1.6rem 0; border-bottom: 1px solid var(--line-navy); }

@media (max-width: 860px) {
  .lf-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .lf-footer__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Botão flutuante do WhatsApp
   ========================================================================== */
.lf-whatsapp-float {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(12,23,41,0.35);
}
.lf-whatsapp-float svg { width: 28px; height: 28px; }
.lf-whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--brass);
  animation: lf-pulse 2.4s ease-out infinite;
}
@keyframes lf-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .lf-whatsapp-float::before { animation: none; }
}

/* ==========================================================================
   Página de FAQ completa
   ========================================================================== */
.lf-faq-hero { background: var(--navy); color: var(--white); padding: 3rem 0; }
.lf-faq-cat { margin-bottom: 0.6rem; color: var(--brass-dark); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2.4rem; }
.lf-faq-cat:first-child { margin-top: 0; }

/* ==========================================================================
   Depoimentos de clientes
   ========================================================================== */
.lf-testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.2rem;
  margin-top: 2.6rem;
}
.lf-testimonial-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px -16px rgba(22,41,71,0.25);
}
.lf-testimonial-card img { width: 180px; height: auto; display: block; }
@media (max-width: 480px) {
  .lf-testimonial-card img { width: 42vw; min-width: 140px; }
}

/* ==========================================================================
   Utilidades
   ========================================================================== */
.lf-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; }
@media (max-width: 760px) { .lf-two-col { grid-template-columns: 1fr; } }
.lf-center { text-align: center; }
.lf-mx-auto { margin-left: auto; margin-right: auto; }
.lf-section-head { max-width: 640px; margin-bottom: 0.5rem; }
.lf-section-head.lf-center { margin-left: auto; margin-right: auto; text-align: center; }

.lf-skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--brass); color: var(--navy-deep);
  padding: 0.8em 1.2em; z-index: 999; border-radius: 0 0 8px 0;
}
.lf-skip-link:focus { left: 0; top: 0; }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
