:root {
  --ld-navy: #254889;
  --ld-navy-deep: #152447;
  --ld-navy-ink: #0d1730;
  --ld-gold: #d4b45a;
  --ld-gold-soft: #e7d6a6;
  --ld-gold-deep: #8a6a1f;
  --ld-ink: #1a2238;
  --ld-muted: #6b7289;
  --ld-bg: #f3f1eb;
  --ld-bg-alt: #eeebe3;
  --ld-line: rgba(21, 36, 71, .1);
  --ld-shadow: 0 18px 44px rgba(21, 36, 71, .08);
  --ld-shadow-card: 0 12px 30px rgba(21, 36, 71, .05);
  --ld-shadow-card-hover: 0 18px 40px rgba(21, 36, 71, .1);
  --ld-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ld-sans: Poppins, "Segoe UI", sans-serif;
  /* Sobrescritos por landingTemaVars() com a paleta e as medidas da empresa. */
  --ld-header-bg: rgba(13, 23, 48, .82);
  --ld-header-line: rgba(231, 214, 166, .16);
  --ld-overlay-1: rgba(13, 23, 48, .92);
  --ld-overlay-2: rgba(37, 72, 137, .62);
  --ld-radius: 18px;
  --ld-radius-sm: 10px;
  --ld-radius-lg: 26px;
  --ld-radius-pill: 999px;
  --ld-espaco: 5.5rem;
  --ld-gap: 1.5rem;
  --ld-largura: 1160px;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.ld-public {
  font-family: var(--ld-sans);
  color: var(--ld-ink);
  background: var(--ld-bg);
  line-height: 1.65;
}

.ld-section a:not([class]),
.ld-hero-copy a:not([class]) {
  color: var(--ld-navy);
}
.ld-section-navy a:not([class]) {
  color: var(--ld-gold-soft);
}

body.ld-public img {
  max-width: 100%;
}

/* Slots vazios de bloco (logo, foto, etapa, coluna, botão) somem da página. */
body.ld-public .is-hidden,
body.ld-public .is-hidden,
body.ld-public .is-hidden,
body.ld-public .is-hidden { display: none; }

.ld-wrap { max-width: var(--ld-largura); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- cabeçalho ---------- */

.ld-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--ld-header-bg);
  border-bottom: 1px solid var(--ld-header-line);
  backdrop-filter: blur(16px);
}
.ld-header-inner { display: flex; align-items: center; gap: 1.25rem; min-height: 82px; }
.ld-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.01em;
}
.ld-brand img { height: 42px; width: auto; max-width: 180px; object-fit: contain; flex-shrink: 0; }
.ld-brand-name { line-height: 1.2; font-size: 1.02rem; }
.ld-nav { display: flex; gap: 1.5rem; margin-left: auto; font-size: .92rem; }
.ld-nav a {
  color: rgba(255, 255, 255, .74);
  text-decoration: none;
  font-weight: 500;
  padding: .2rem 0;
  border-bottom: 1px solid transparent;
}
.ld-nav a:hover { color: #fff; border-bottom-color: var(--ld-gold); }
.ld-header-tel {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: #fff;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, .16);
}
.ld-header-tel .ld-ico { color: var(--ld-gold); }
.ld-header-tel span { display: flex; flex-direction: column; line-height: 1.15; }
.ld-header-tel small {
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ld-gold-soft);
  font-weight: 600;
}
.ld-header-tel strong { font-size: .95rem; font-weight: 600; }

.ld-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.ld-nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.ld-header.is-nav-aberta .ld-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ld-header.is-nav-aberta .ld-nav-toggle span:nth-child(2) { opacity: 0; }
.ld-header.is-nav-aberta .ld-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* Variantes globais do cabeçalho, aplicadas no body. */
body.ld-header-transparente .ld-header {
  position: absolute;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(13, 23, 48, .62), transparent);
  border-bottom-color: transparent;
  backdrop-filter: none;
}
body.ld-header-solido .ld-header {
  background: var(--ld-navy-ink);
  backdrop-filter: none;
}
body.ld-header-centralizado .ld-header-inner {
  flex-wrap: wrap;
  justify-content: center;
  min-height: auto;
  padding: .85rem 0;
}
body.ld-header-centralizado .ld-brand {
  width: 100%;
  justify-content: center;
}
body.ld-header-centralizado .ld-nav {
  margin-left: 0;
  order: 3;
  width: 100%;
  justify-content: center;
  padding: .15rem 0 .35rem;
}
body.ld-header-centralizado .ld-header-tel {
  border-left: 0;
  padding-left: 0;
}
body.ld-header-transparente .ld-hero-copy {
  padding-top: 7.2rem;
}

/* ---------- botões ---------- */

.ld-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--ld-navy);
  color: #fff;
  border: 0;
  border-radius: var(--ld-radius-pill);
  padding: .82rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.ld-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(21, 36, 71, .2); }
.ld-btn-gold { background: var(--ld-gold); color: #4a3708; }
.ld-btn-gold:hover { box-shadow: 0 10px 26px rgba(138, 106, 31, .32); }
.ld-btn-ghost {
  background: transparent;
  color: var(--ld-navy);
  border: 1px solid rgba(37, 72, 137, .35);
  box-shadow: none;
}
.ld-btn-ghost:hover { box-shadow: none; border-color: var(--ld-navy); }
.ld-btn-plain { background: transparent; color: var(--ld-navy); box-shadow: none; }
.ld-btn-plain:hover { box-shadow: none; }
.ld-header .ld-btn { background: var(--ld-gold); color: #4a3708; flex-shrink: 0; padding: .7rem 1.3rem; }
.ld-link { color: var(--ld-navy); font-weight: 600; text-decoration: none; }
.ld-link:hover { color: var(--ld-navy-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- hero ---------- */

.ld-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 88vh;
  background: var(--ld-navy-deep);
  color: #fff;
  overflow: hidden;
}
.ld-hero.ld-tem-sep,
.ld-hero.ld-sep-onda,
.ld-hero.ld-sep-diagonal { overflow: visible; }
.ld-hero-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
}
.ld-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(115% 85% at 12% 45%, var(--ld-overlay-1) 0%, var(--ld-overlay-2) 45%, transparent 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .5));
}
.ld-hero-copy {
  width: 100%;
  max-width: var(--ld-largura);
  margin: 0 auto;
  padding: clamp(4.5rem, 12vh, 8rem) 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ld-hero-selo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.4rem;
  padding: .42rem .95rem .42rem .8rem;
  border: 1px solid rgba(231, 214, 166, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  font-size: .78rem;
  font-weight: 500;
  color: var(--ld-gold-soft);
  letter-spacing: .01em;
}
.ld-hero-selo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ld-gold);
  box-shadow: 0 0 0 4px rgba(212, 180, 90, .22);
}
.ld-kicker {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .68rem;
  color: var(--ld-gold);
  margin: 0 0 .85rem;
  font-weight: 600;
}
.ld-hero h1, .ld-hero-titulo {
  font-family: var(--ld-serif);
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  line-height: 1.06;
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -.02em;
  max-width: 20ch;
}
.ld-lead { font-size: 1.1rem; max-width: 46ch; color: rgba(255, 255, 255, .84); }
.ld-hero .ld-lead { margin: 0; }
.ld-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.ld-hero .ld-btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .45); }
.ld-hero .ld-btn-ghost:hover { border-color: #fff; }
.ld-hero .ld-btn-plain { color: var(--ld-gold-soft); }
.ld-hero .ld-btn:not(.ld-btn-gold):not(.ld-btn-ghost):not(.ld-btn-plain) {
  background: #fff;
  color: var(--ld-navy-deep);
}
.ld-hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.9rem;
  margin: 2.6rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .88rem;
  color: rgba(255, 255, 255, .8);
}
.ld-hero-trust li { display: flex; align-items: center; gap: .5rem; }
.ld-hero-trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ld-gold);
  flex-shrink: 0;
}

/* ---------- seções ---------- */

.ld-section { padding: var(--ld-espaco) 0; background: #fff; position: relative; }
.ld-section-alt { background: var(--ld-bg-alt); }
.ld-section-navy { background: var(--ld-navy-deep); color: #fff; }
.ld-fundo-branco { background: #fff; color: var(--ld-ink); }
.ld-pad-sm { padding-top: calc(var(--ld-espaco) * .55); padding-bottom: calc(var(--ld-espaco) * .55); }
.ld-pad-md { padding-top: var(--ld-espaco); padding-bottom: var(--ld-espaco); }
.ld-pad-lg { padding-top: calc(var(--ld-espaco) * 1.36); padding-bottom: calc(var(--ld-espaco) * 1.36); }
.ld-pt-0 { padding-top: 0; }
.ld-pt-sm { padding-top: calc(var(--ld-espaco) * .55); }
.ld-pt-md { padding-top: var(--ld-espaco); }
.ld-pt-lg { padding-top: calc(var(--ld-espaco) * 1.36); }
.ld-pb-0 { padding-bottom: 0; }
.ld-pb-sm { padding-bottom: calc(var(--ld-espaco) * .55); }
.ld-pb-md { padding-bottom: var(--ld-espaco); }
.ld-pb-lg { padding-bottom: calc(var(--ld-espaco) * 1.36); }
.ld-borda-sutil { box-shadow: inset 0 1px 0 rgba(21, 36, 71, .08); }
.ld-borda-media { box-shadow: inset 0 2px 0 rgba(21, 36, 71, .14); }
.ld-section-navy.ld-borda-sutil,
.ld-fundo-degrade.ld-borda-sutil,
.ld-fundo-foto.ld-borda-sutil { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16); }
.ld-section-navy.ld-borda-media,
.ld-fundo-degrade.ld-borda-media,
.ld-fundo-foto.ld-borda-media { box-shadow: inset 0 2px 0 rgba(255, 255, 255, .22); }
.ld-secao-sombra { box-shadow: 0 18px 40px rgba(21, 36, 71, .08); }

.ld-section h2, .ld-w-titulo {
  font-family: var(--ld-serif);
  font-size: clamp(1.95rem, 3.6vw, 2.9rem);
  line-height: 1.14;
  margin: 0 0 .9rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ld-navy-deep);
  max-width: 26ch;
}
.ld-w-texto { color: var(--ld-muted); margin: 0; }
.ld-w-texto-lead { font-size: 1.05rem; max-width: 60ch; margin-bottom: 2.6rem; }
.ld-section .ld-kicker { color: var(--ld-gold-deep); }

.ld-section-navy h2,
.ld-section-navy .ld-w-titulo { color: #fff; }
.ld-section-navy .ld-kicker { color: var(--ld-gold); }
.ld-section-navy .ld-lead,
.ld-section-navy .ld-w-texto,
.ld-section-navy .ld-card-texto { color: rgba(255, 255, 255, .82); }
.ld-section-navy .ld-link { color: var(--ld-gold-soft); }
.ld-section-navy .ld-card { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); box-shadow: none; }
.ld-section-navy .ld-card h3, .ld-section-navy .ld-card-titulo { color: #fff; }
.ld-section-navy .ld-btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .4); }

/* ---------- pilares ---------- */

.ld-pilares { padding: 4rem 0; }
.ld-pilar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--ld-gap); }
.ld-pilar {
  background: #fff;
  border: 1px solid var(--ld-line);
  border-radius: var(--ld-radius-lg);
  padding: 2rem 1.7rem 1.8rem;
  box-shadow: var(--ld-shadow);
}
.ld-hero + .ld-pilares {
  padding-top: 0;
  margin-top: clamp(-5.5rem, -6vw, -3rem);
  position: relative;
  z-index: 5;
  background: transparent;
}
.ld-hero + .ld-pilares + * { padding-top: 3.5rem; }
.ld-pilar-ico,
.ld-card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--ld-radius);
  background: linear-gradient(145deg, rgba(212, 180, 90, .22), rgba(212, 180, 90, .08));
  color: var(--ld-gold-deep);
  margin-bottom: 1.1rem;
}
.ld-pilar .ld-card-titulo,
.ld-pilar h3 {
  font-family: var(--ld-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ld-navy-deep);
  margin: 0 0 .5rem;
}
.ld-pilar .ld-card-texto { color: var(--ld-muted); margin: 0; font-size: .96rem; }

/* ---------- cards ---------- */

.ld-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--ld-gap); margin-top: 2.4rem; }
.ld-card {
  background: #fff;
  border: 1px solid var(--ld-line);
  border-radius: var(--ld-radius-lg);
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: var(--ld-shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ld-card:hover { transform: translateY(-4px); box-shadow: var(--ld-shadow-card-hover); }
.ld-card h3, .ld-card-titulo {
  margin: 0 0 .55rem;
  color: var(--ld-navy-deep);
  font-family: var(--ld-serif);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.2;
}
.ld-card-texto { color: var(--ld-muted); margin: 0 0 .9rem; font-size: .96rem; }
.ld-card-texto:last-child { margin-bottom: 0; }
.ld-card-contato .ld-link { font-size: .92rem; overflow-wrap: anywhere; }
.ld-card-contato h3 { font-size: 1.25rem; }
.ld-section-alt .ld-card { background: #fff; }

/* ---------- serviços / planos ---------- */

.ld-planos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--ld-gap); }
.ld-plano {
  position: relative;
  background: #fff;
  border: 1px solid var(--ld-line);
  border-radius: var(--ld-radius-lg);
  padding: 2.2rem 1.9rem 2rem;
  box-shadow: var(--ld-shadow);
  display: flex;
  flex-direction: column;
}
.ld-plano-destaque {
  background: var(--ld-navy-deep);
  border-color: transparent;
  color: #fff;
}
.ld-plano-selo {
  align-self: flex-start;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(212, 180, 90, .18);
  color: var(--ld-gold-deep);
  margin-bottom: 1.1rem;
}
.ld-plano-destaque .ld-plano-selo { background: var(--ld-gold); color: #4a3708; }
.ld-plano-titulo {
  font-family: var(--ld-serif);
  font-size: 1.95rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 .5rem;
  color: var(--ld-navy-deep);
}
.ld-plano-destaque .ld-plano-titulo { color: #fff; }
.ld-plano-texto { color: var(--ld-muted); margin: 0 0 1.4rem; }
.ld-plano-destaque .ld-plano-texto { color: rgba(255, 255, 255, .8); }
.ld-plano-itens { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: .7rem; }
.ld-plano-itens li {
  position: relative;
  padding-left: 1.9rem;
  font-size: .96rem;
  color: var(--ld-ink);
}
.ld-plano-destaque .ld-plano-itens li { color: rgba(255, 255, 255, .9); }
.ld-plano-itens li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: rgba(212, 180, 90, .2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6a1f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / .72rem no-repeat;
}
.ld-plano-destaque .ld-plano-itens li::before {
  background-color: rgba(212, 180, 90, .28);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e7d6a6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}
.ld-plano-btn { margin-top: auto; align-self: flex-start; }
.ld-plano-destaque .ld-plano-btn { background: var(--ld-gold); color: #4a3708; }
.ld-servicos-nota {
  margin: 1.8rem 0 0;
  font-size: .92rem;
  color: var(--ld-muted);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.ld-servicos-nota::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--ld-gold);
  flex-shrink: 0;
}

/* ---------- como funciona ---------- */

.ld-passos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  counter-reset: passo;
}
.ld-passo { position: relative; padding-top: 1.6rem; }
.ld-passo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ld-line);
}
.ld-passo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--ld-gold);
}
.ld-passo-num {
  display: block;
  font-family: var(--ld-serif);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 600;
  color: var(--ld-gold);
  margin-bottom: .5rem;
}
.ld-passo-titulo {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ld-navy-deep);
  margin: 0 0 .45rem;
  font-family: var(--ld-sans);
}
.ld-passo-texto { color: var(--ld-muted); margin: 0; font-size: .95rem; }

/* ---------- quem somos ---------- */

.ld-sobre { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.ld-sobre-foto {
  min-height: 420px;
  border-radius: var(--ld-radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--ld-shadow);
  position: relative;
}
.ld-sobre-foto::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--ld-radius-lg);
  border: 1px solid rgba(255, 255, 255, .35);
  background: linear-gradient(180deg, rgba(21, 36, 71, 0) 55%, rgba(21, 36, 71, .35) 100%);
}
.ld-numeros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.4rem;
  margin: 2.2rem 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--ld-line);
}
.ld-numeros div { margin: 0; }
.ld-numero-valor {
  font-family: var(--ld-serif);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
  color: var(--ld-navy-deep);
}
.ld-numero-label {
  margin: .4rem 0 0;
  font-size: .84rem;
  color: var(--ld-muted);
  line-height: 1.45;
}

/* ---------- depoimentos ---------- */

.ld-deps { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: var(--ld-gap); margin-top: 2.4rem; }
.ld-dep {
  margin: 0;
  background: var(--ld-bg);
  border-radius: var(--ld-radius-lg);
  padding: 2.4rem 1.7rem 1.7rem;
  position: relative;
  border: 1px solid var(--ld-line);
}
.ld-dep::before {
  content: "\201C";
  position: absolute;
  top: .55rem;
  left: 1.4rem;
  font-family: var(--ld-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--ld-gold);
  opacity: .55;
}
.ld-dep-texto {
  margin: 0 0 1.3rem;
  font-family: var(--ld-serif);
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--ld-navy-deep);
  font-style: italic;
}
.ld-dep figcaption { display: flex; flex-direction: column; }
.ld-dep-autor { color: var(--ld-navy-deep); font-size: .95rem; }
.ld-dep-local { color: var(--ld-muted); font-size: .82rem; }
.ld-section-alt .ld-dep { background: #fff; }

/* ---------- dúvidas ---------- */

.ld-faq { max-width: 820px; border-top: 1px solid var(--ld-line); margin-top: 2.2rem; }
.ld-faq-item { border-bottom: 1px solid var(--ld-line); }
.ld-faq-p {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2.6rem 1.15rem 0;
  position: relative;
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--ld-navy-deep);
}
.ld-faq-p::-webkit-details-marker { display: none; }
.ld-faq-p::after {
  content: "";
  position: absolute;
  right: .4rem;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  border-radius: 50%;
  background: rgba(212, 180, 90, .18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6a1f' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / .8rem no-repeat;
  transition: transform .2s ease;
}
.ld-faq-item[open] .ld-faq-p::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6a1f' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}
.ld-faq-r {
  margin: 0;
  padding: 0 3rem 1.4rem 0;
  color: var(--ld-muted);
  font-size: .98rem;
}
.ld-faq-btn { margin-top: 2.2rem; }

/* ---------- formulários e faixas ---------- */

.ld-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.6rem; align-items: center; }
.ld-form {
  background: #fff;
  border-radius: var(--ld-radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--ld-line);
  display: grid;
  gap: .8rem;
  box-shadow: var(--ld-shadow);
}
.ld-form label {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ld-muted);
}
.ld-form input {
  border: 1px solid #d5d8e0;
  border-radius: var(--ld-radius-sm);
  padding: .85rem 1rem;
  font: inherit;
  background: #fbfaf7;
}
.ld-form input:focus { outline: 2px solid rgba(212, 180, 90, .35); border-color: var(--ld-gold); background: #fff; }
.ld-cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  background: var(--ld-navy-deep);
  color: #fff;
  border-radius: var(--ld-radius-lg);
  padding: 2.4rem 2.6rem;
  position: relative;
  overflow: hidden;
}
.ld-cta-band::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 180, 90, .22), transparent 70%);
}
.ld-cta-band .ld-kicker { color: var(--ld-gold); }
.ld-cta-band .ld-w-titulo { margin: 0 0 .4rem; color: #fff; max-width: 22ch; }
.ld-cta-texto { color: rgba(255, 255, 255, .78); max-width: 46ch; }
.ld-cta-band .ld-btn { flex-shrink: 0; position: relative; }

/* ---------- vídeo ---------- */

.ld-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--ld-radius-lg);
  background: var(--ld-navy-ink);
}
.ld-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ld-centralizado .ld-video { max-width: 900px; margin: 2.4rem auto 0; }
.ld-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  padding: 1rem;
  text-align: center;
  font-size: .95rem;
}

/* ---------- rodapé ---------- */

.ld-footer { background: var(--ld-navy-ink); color: #c5c9d4; padding: 4rem 0 1.6rem; }
.ld-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.4rem;
  padding-bottom: 2.6rem;
}
.ld-footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 1.1rem;
  filter: brightness(0) invert(1);
  opacity: .88;
}
.ld-footer-texto { margin: 0; font-size: .92rem; color: rgba(255, 255, 255, .62); max-width: 34ch; }
.ld-footer-col { display: flex; flex-direction: column; gap: .6rem; }
.ld-footer-col h3 {
  margin: 0 0 .4rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ld-gold);
  font-weight: 600;
  font-family: var(--ld-sans);
}
.ld-footer-col a { color: rgba(255, 255, 255, .74); text-decoration: none; font-size: .92rem; }
.ld-footer-col a:hover { color: #fff; }
.ld-footer-tel { font-size: 1.12rem !important; font-weight: 600; color: #fff !important; }
.ld-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .84rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .55);
}
.ld-footer-copy { margin: 0; }
.ld-footer-links { display: flex; gap: 1.4rem; }
.ld-footer a { color: var(--ld-gold-soft); text-decoration: none; }

.ld-sociais { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; }
.ld-sociais:empty,
.ld-sociais:not(:has(a:not(.is-hidden))) { display: none; }
.ld-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff !important;
  background: rgba(255, 255, 255, .06);
}
.ld-social .ld-ico { width: 16px; height: 16px; }
.ld-social:hover { border-color: var(--ld-gold); color: var(--ld-gold) !important; background: rgba(232, 197, 71, .12); }

.ld-footer[data-estilo="compacto"] { padding-top: 1.8rem; }
.ld-footer[data-estilo="compacto"] .ld-footer-grid {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-bottom: 1.1rem;
}
.ld-footer[data-estilo="compacto"] .ld-footer-col,
.ld-footer[data-estilo="compacto"] .ld-footer-texto { display: none; }
.ld-footer[data-estilo="compacto"] .ld-footer-logo { margin-bottom: 0; height: 36px; }
.ld-footer[data-estilo="compacto"] .ld-sociais { margin-top: 0; margin-left: auto; }

/* ---------- presets de seção ---------- */

.ld-fundo-degrade {
  background: linear-gradient(var(--ld-degrade-angulo, 140deg), var(--ld-navy-ink) 0%, var(--ld-navy-deep) 48%, var(--ld-navy) 100%);
  color: #fff;
}
.ld-fundo-degrade.ld-degrade-radial {
  background: radial-gradient(ellipse at center, var(--ld-navy) 0%, var(--ld-navy-deep) 48%, var(--ld-navy-ink) 100%);
}
.ld-fundo-video-sec {
  background: var(--ld-navy-deep);
  color: #fff;
  overflow: hidden;
}
.ld-fundo-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.ld-fundo-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.ld-fundo-video-sec > *:not(.ld-fundo-video) {
  position: relative;
  z-index: 1;
}
.ld-tem-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(11, 31, 59, var(--ld-foto-overlay, .45));
  pointer-events: none;
}
.ld-tem-overlay > *:not(.ld-fundo-video) {
  position: relative;
  z-index: 1;
}
.ld-fundo-parallax.ld-fundo-foto {
  background-attachment: scroll;
}
.ld-fundo-degrade h2,
.ld-fundo-degrade .ld-w-titulo { color: #fff; }
.ld-fundo-degrade .ld-w-texto,
.ld-fundo-degrade .ld-lead { color: rgba(255, 255, 255, .82); }
.ld-fundo-degrade .ld-kicker { color: var(--ld-gold); }
.ld-fundo-degrade .ld-card,
.ld-fundo-degrade .ld-plano,
.ld-fundo-degrade .ld-pilar {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
  color: #fff;
}
.ld-fundo-degrade .ld-card-titulo,
.ld-fundo-degrade .ld-plano-titulo,
.ld-fundo-degrade h3 { color: #fff; }
.ld-fundo-degrade .ld-card-texto,
.ld-fundo-degrade .ld-plano-texto { color: rgba(255, 255, 255, .8); }

.ld-fundo-foto {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}
.ld-fundo-foto::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--ld-overlay-1), var(--ld-overlay-2));
  opacity: var(--ld-foto-overlay, .82);
}
.ld-fundo-foto h2,
.ld-fundo-foto .ld-w-titulo,
.ld-fundo-foto h3 { color: #fff; }
.ld-fundo-foto .ld-w-texto,
.ld-fundo-foto .ld-lead { color: rgba(255, 255, 255, .84); }
.ld-fundo-foto .ld-kicker { color: var(--ld-gold); }
.ld-fundo-foto .ld-card,
.ld-fundo-foto .ld-pilar,
.ld-fundo-foto .ld-plano {
  background: rgba(12, 18, 32, .42);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.ld-centralizado { text-align: center; }
.ld-centralizado .ld-w-titulo,
.ld-centralizado h2,
.ld-centralizado .ld-w-texto,
.ld-centralizado .ld-w-texto-lead { margin-left: auto; margin-right: auto; max-width: 60ch; }
.ld-centralizado .ld-actions,
.ld-centralizado .ld-plano-btn { justify-content: center; align-self: center; }
.ld-centralizado .ld-faq { margin-left: auto; margin-right: auto; text-align: left; }

.ld-sep-onda,
.ld-sep-diagonal,
.ld-tem-sep { overflow: visible; }
.ld-tem-sep > .ld-wrap,
.ld-tem-sep > .ld-hero-copy,
.ld-sep-onda > .ld-wrap,
.ld-sep-diagonal > .ld-wrap { position: relative; z-index: 2; }
.ld-sep-frente > .ld-wrap,
.ld-sep-frente > .ld-hero-copy { z-index: 0; }

.ld-sep-forma-onda,
.ld-sep-onda { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 42C180 120 320 8 500 48C680 88 820 4 1000 52V100H0Z'/></svg>"); }
.ld-sep-forma-ondas { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 58Q62 18 125 58T250 58T375 58T500 58T625 58T750 58T875 58T1000 58V100H0Z'/></svg>"); }
.ld-sep-forma-curva { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 0Q500 100 1000 0V100H0Z'/></svg>"); }
.ld-sep-forma-inclinada,
.ld-sep-forma-diagonal,
.ld-sep-diagonal { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 78L1000 0V100H0Z'/></svg>"); }
.ld-sep-forma-triangulo { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 0L500 100L1000 0V100H0Z'/></svg>"); }
.ld-sep-forma-asimetrico { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 0L720 100L1000 0V100H0Z'/></svg>"); }
.ld-sep-forma-picos { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 70L140 18L280 78L500 0L680 72L840 22L1000 68V100H0Z'/></svg>"); }
.ld-sep-forma-nuvens { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 72C40 72 48 40 88 40C108 12 160 12 184 40C230 22 280 48 300 72H1000V100H0Z'/></svg>"); }
.ld-sep-forma-ziguezague { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 58L80 18L160 58L240 18L320 58L400 18L480 58L560 18L640 58L720 18L800 58L880 18L1000 58V100H0Z'/></svg>"); }
.ld-sep-forma-seta { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 0H420L500 72L580 0H1000V100H0Z'/></svg>"); }
.ld-sep-forma-gotas { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 100V52Q125 0 250 52T500 52T750 52T1000 52V100Z'/></svg>"); }
.ld-sep-forma-livro { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 0Q250 0 500 78Q750 0 1000 0V100H0Z'/></svg>"); }
.ld-sep-forma-leque { --ld-sep-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'><path fill='%23fff' d='M0 100Q180 8 360 100Q500 30 640 100Q820 8 1000 100Z'/></svg>"); }

.ld-section { --ld-sep-fill: #fff; --ld-sep-h: 72px; --ld-sep-z: 1; }
.ld-section-alt { --ld-sep-fill: var(--ld-bg-alt); }
.ld-section-navy,
.ld-fundo-degrade,
.ld-fundo-foto,
.ld-fundo-video-sec { --ld-sep-fill: var(--ld-navy-deep); }

.ld-tem-sep.ld-sep-baixo::after,
.ld-tem-sep.ld-sep-cima::before,
.ld-sep-onda::after,
.ld-sep-diagonal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--ld-sep-h, 72px);
  background-color: var(--ld-sep-fill, #fff);
  -webkit-mask: var(--ld-sep-mask) no-repeat center / 100% 100%;
  mask: var(--ld-sep-mask) no-repeat center / 100% 100%;
  pointer-events: none;
  z-index: var(--ld-sep-z, 1);
}
.ld-tem-sep.ld-sep-baixo::after,
.ld-sep-onda::after,
.ld-sep-diagonal::after {
  bottom: -1px;
  transform: var(--ld-sep-flip, none) var(--ld-sep-inv, none);
}
.ld-tem-sep.ld-sep-cima::before {
  top: -1px;
  transform: scaleY(-1) var(--ld-sep-flip, none) var(--ld-sep-inv, none);
}
.ld-sep-virar { --ld-sep-flip: scaleX(-1); }
.ld-sep-invertido { --ld-sep-inv: scaleY(-1); }
.ld-sep-frente { --ld-sep-z: 5; }

/* Largura do conteúdo por seção, sobre o padrão de .ld-wrap. */
.ld-largura-estreita > .ld-wrap { max-width: min(860px, var(--ld-largura)); }
.ld-largura-total > .ld-wrap { max-width: none; padding-left: clamp(1.5rem, 4vw, 4rem); padding-right: clamp(1.5rem, 4vw, 4rem); }

/* Aparece só em um tamanho de tela. No editor tudo continua visível. */
.ld-so-desktop { display: none; }
@media (min-width: 901px) {
  .ld-so-desktop { display: block; }
  .ld-so-mobile { display: none; }
}

/* Entrada suave: sem JS ou com movimento reduzido, o conteúdo já nasce visível. */
.ld-anim { opacity: 1; }
.ld-js .ld-anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.ld-js .ld-anim.is-visivel { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ld-js .ld-anim { opacity: 1; transform: none; transition: none; }
}

/* ---------- parceiros ---------- */

.ld-parceiros-titulo {
  margin: 0 0 1.6rem;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ld-muted);
  font-weight: 600;
  text-align: center;
}
.ld-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem 2.8rem;
}
.ld-logo { display: inline-flex; align-items: center; }
.ld-logo img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .2s ease, opacity .2s ease;
}
.ld-logo img:hover { filter: none; opacity: 1; }
.ld-section-navy .ld-logo img,
.ld-fundo-degrade .ld-logo img { filter: brightness(0) invert(1); opacity: .78; }

/* ---------- galeria ---------- */

.ld-galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 168px;
  grid-auto-flow: dense;
  gap: .8rem;
  margin-top: 2.2rem;
}
.ld-galeria-item {
  margin: 0;
  border-radius: var(--ld-radius);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--ld-line);
}
.ld-galeria-1 { grid-column: span 2; grid-row: span 2; }

/* ---------- números em faixa ---------- */

.ld-numeros-faixa {
  border-top: 0;
  margin: 1.6rem 0 0;
  padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: center;
}
.ld-section-navy .ld-numero-valor,
.ld-fundo-degrade .ld-numero-valor { color: var(--ld-gold); }
.ld-section-navy .ld-numero-label,
.ld-fundo-degrade .ld-numero-label { color: rgba(255, 255, 255, .74); }

/* ---------- planos com preço ---------- */

.ld-plano-preco {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin: 0 0 1.2rem;
  color: var(--ld-navy-deep);
}
.ld-plano-preco .ld-preco-valor {
  font-family: var(--ld-serif);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
}
.ld-plano-preco .ld-preco-periodo { font-size: .9rem; color: var(--ld-muted); }
.ld-plano-destaque .ld-plano-preco { color: #fff; }
.ld-plano-destaque .ld-preco-periodo { color: rgba(255, 255, 255, .72); }

/* ---------- mapa ---------- */

.ld-mapa {
  position: relative;
  min-height: 340px;
  border-radius: var(--ld-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ld-line);
  box-shadow: var(--ld-shadow);
  background: var(--ld-bg-alt);
}
.ld-mapa-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ld-mapa-endereco {
  margin: 0 0 1.2rem;
  font-weight: 600;
  color: var(--ld-navy-deep);
}

/* ---------- faixa de aviso ---------- */

.ld-aviso { background: var(--ld-gold); color: #4a3708; padding: 1.1rem 0; }
.ld-aviso-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.ld-aviso-ico { display: inline-flex; flex-shrink: 0; }
.ld-aviso-texto { margin: 0; font-weight: 600; flex: 1 1 20ch; }
.ld-aviso .ld-btn {
  background: var(--ld-navy-ink);
  color: #fff;
  padding: .6rem 1.2rem;
  font-size: .9rem;
}
.ld-aviso-navy { background: var(--ld-navy-ink); color: #fff; }
.ld-aviso-navy .ld-aviso-ico { color: var(--ld-gold); }
.ld-aviso-navy .ld-btn { background: var(--ld-gold); color: #4a3708; }
.ld-aviso-claro { background: var(--ld-bg-alt); color: var(--ld-ink); }
.ld-aviso-claro .ld-aviso-ico { color: var(--ld-gold-deep); }
.ld-aviso-claro .ld-btn { background: var(--ld-navy); color: #fff; }

/* ---------- botão flutuante de WhatsApp ---------- */

.ld-wa {
  position: fixed;
  bottom: 1.3rem;
  right: 1.3rem;
  z-index: 40;
}
.ld-wa-esquerda { right: auto; left: 1.3rem; }
.ld-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #25d366;
  color: #08331a;
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  padding: .8rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .24);
}
.ld-wa-btn:hover { transform: translateY(-2px); }
@media (max-width: 620px) {
  .ld-wa-txt { display: none; }
  .ld-wa-btn { padding: .9rem; }
}

/* ---------- chamada final ---------- */

.ld-cta-final-acoes { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }
.ld-fundo-degrade .ld-cta-final-acoes .ld-btn-ghost,
.ld-fundo-foto .ld-cta-final-acoes .ld-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}

/* ---------- linha do tempo ---------- */

.ld-linha {
  list-style: none;
  margin: 2.6rem 0 0;
  padding: 0 0 0 1.9rem;
  border-left: 2px solid var(--ld-line);
  display: grid;
  gap: 2.1rem;
}
.ld-etapa { position: relative; }
.ld-etapa::before {
  content: "";
  position: absolute;
  left: calc(-1.9rem - 7px);
  top: .45rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ld-gold);
  box-shadow: 0 0 0 4px var(--ld-bg-alt);
}
.ld-etapa-data {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ld-gold-deep);
  margin-bottom: .3rem;
}
.ld-etapa-titulo {
  margin: 0 0 .35rem;
  font-family: var(--ld-serif);
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--ld-navy-deep);
  line-height: 1.2;
}
.ld-etapa-texto { margin: 0; color: var(--ld-muted); font-size: .96rem; max-width: 62ch; }
.ld-section-navy .ld-etapa::before,
.ld-fundo-degrade .ld-etapa::before,
.ld-fundo-foto .ld-etapa::before { box-shadow: 0 0 0 4px rgba(255, 255, 255, .1); }
.ld-section-navy .ld-etapa-titulo,
.ld-fundo-degrade .ld-etapa-titulo,
.ld-fundo-foto .ld-etapa-titulo { color: #fff; }
.ld-section-navy .ld-etapa-texto,
.ld-fundo-degrade .ld-etapa-texto,
.ld-fundo-foto .ld-etapa-texto { color: rgba(255, 255, 255, .8); }
.ld-section-navy .ld-etapa-data,
.ld-fundo-degrade .ld-etapa-data,
.ld-fundo-foto .ld-etapa-data { color: var(--ld-gold); }
.ld-section-navy .ld-linha,
.ld-fundo-degrade .ld-linha,
.ld-fundo-foto .ld-linha { border-left-color: rgba(255, 255, 255, .18); }

/* ---------- texto em colunas ---------- */

.ld-colunas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.6rem, 4vw, 3.4rem);
  margin-top: 2.2rem;
}
.ld-coluna-titulo {
  margin: 0 0 .6rem;
  font-family: var(--ld-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ld-navy-deep);
  line-height: 1.2;
}
.ld-coluna-texto { margin: 0; color: var(--ld-muted); }

/* ---------- equipe / citação / newsletter ---------- */

.ld-equipe { margin-top: 2rem; }
.ld-pessoa { overflow: hidden; padding: 0 0 1.5rem; }
.ld-pessoa-foto {
  height: 210px;
  background: var(--ld-bg-alt) center/cover no-repeat;
  margin-bottom: 1.15rem;
}
.ld-pessoa-nome {
  margin: 0 1.4rem .25rem;
  font-family: var(--ld-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ld-navy-deep);
}
.ld-pessoa-cargo {
  margin: 0 1.4rem .55rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ld-gold-deep);
  font-weight: 600;
}
.ld-pessoa-texto { margin: 0 1.4rem; color: var(--ld-muted); font-size: .95rem; }

.ld-caixas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ld-gap);
  margin-top: 2.2rem;
}
.ld-caixa {
  text-align: center;
  padding: 1.6rem 1.2rem;
  border: 1px solid var(--ld-line);
  border-radius: var(--ld-radius);
  background: #fff;
}
.ld-caixa-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(232, 197, 71, .16);
  color: var(--ld-navy-deep);
  margin-bottom: .9rem;
}
.ld-caixa-titulo {
  margin: 0 0 .45rem;
  font-family: var(--ld-serif);
  font-size: 1.25rem;
  color: var(--ld-navy-deep);
}
.ld-caixa-texto { margin: 0; color: var(--ld-muted); font-size: .95rem; }
.ld-caixa-link { display: inline-block; margin-top: .85rem; font-weight: 600; color: var(--ld-navy); }
.ld-botoes-faixa {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  align-items: center;
}
.ld-depo {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}
.ld-depo-foto {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.2rem;
  border-radius: 999px;
  background: var(--ld-bg-alt) center/cover no-repeat;
  border: 3px solid var(--ld-gold);
}
.ld-depo-texto {
  margin: 0 0 1.1rem;
  font-family: var(--ld-serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ld-navy-deep);
}
.ld-depo-autor { display: block; font-weight: 600; color: var(--ld-navy-deep); }
.ld-depo-local { display: block; color: var(--ld-muted); font-size: .9rem; }
.ld-contador {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
  text-align: center;
}
.ld-cnt-valor {
  margin: 0;
  font-family: var(--ld-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--ld-gold);
  letter-spacing: -.03em;
}
.ld-cnt-label { margin: .35rem 0 0; color: var(--ld-muted); }
.ld-section-navy .ld-cnt-label,
.ld-fundo-degrade .ld-cnt-label,
.ld-fundo-video-sec .ld-cnt-label { color: rgba(255,255,255,.74); }
.ld-acordeao { max-width: 760px; margin-top: 1.8rem; border-top: 1px solid var(--ld-line); }
.ld-acc { border-bottom: 1px solid var(--ld-line); }
.ld-acc-p {
  cursor: pointer;
  list-style: none;
  padding: 1rem 2rem 1rem 0;
  font-weight: 600;
  color: var(--ld-navy-deep);
}
.ld-acc-p::-webkit-details-marker { display: none; }
.ld-acc-r { margin: 0 0 1rem; color: var(--ld-muted); }

.ld-citacao { max-width: 44rem; }
.ld-citacao blockquote { margin: 0; }
.ld-citacao-texto {
  margin: 0 0 1.2rem;
  font-family: var(--ld-serif);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.35;
  color: #fff;
}
.ld-citacao-autor {
  display: block;
  font-style: normal;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ld-gold-soft);
  font-weight: 600;
}
.ld-section:not(.ld-section-navy):not(.ld-fundo-degrade):not(.ld-fundo-foto) .ld-citacao-texto { color: var(--ld-navy-deep); }
.ld-section:not(.ld-section-navy):not(.ld-fundo-degrade):not(.ld-fundo-foto) .ld-citacao-autor { color: var(--ld-gold-deep); }

.ld-news {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: end;
}
.ld-news-form { display: flex; gap: .7rem; flex-wrap: wrap; }
.ld-news-campo { flex: 1 1 220px; }
.ld-news-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--ld-line);
  border-radius: var(--ld-radius-pill);
  padding: .85rem 1.15rem;
  font: inherit;
  color: var(--ld-ink);
  background: #fff;
}
.ld-news-input:focus { outline: 2px solid var(--ld-navy); outline-offset: 1px; }
.ld-news-btn { flex: 0 0 auto; }
.ld-section-navy .ld-coluna-titulo,
.ld-fundo-degrade .ld-coluna-titulo,
.ld-fundo-foto .ld-coluna-titulo { color: #fff; }
.ld-section-navy .ld-coluna-texto,
.ld-fundo-degrade .ld-coluna-texto,
.ld-fundo-foto .ld-coluna-texto { color: rgba(255, 255, 255, .8); }

/* ---------- barra de pré-visualização ---------- */

.ld-preview-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ld-gold);
  color: #4a3708;
  text-align: center;
  padding: .7rem 1rem;
  font-weight: 600;
  font-family: var(--ld-sans);
}
.ld-preview-bar a { color: var(--ld-navy-deep); }

/* ---------- responsivo ---------- */

@media (max-width: 1080px) {
  .ld-header-tel { display: none; }
  .ld-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .ld-header-inner { position: relative; flex-wrap: wrap; }
  .ld-nav-toggle { display: inline-flex; }
  .ld-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 8;
    margin: 0;
    padding: .35rem 0 1rem;
    gap: .15rem;
  }
  .ld-header.is-nav-aberta .ld-nav { display: flex; }
  .ld-nav a {
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .ld-header-cta { order: 3; }
  .ld-nav-toggle { order: 4; }
  .ld-brand { margin-right: 0; }
  body.ld-header-centralizado .ld-nav-toggle {
    position: absolute;
    right: 0;
    top: .7rem;
  }
  .ld-news { grid-template-columns: 1fr; }
  .ld-section { padding: calc(var(--ld-espaco) * .66) 0; }
  .ld-pad-lg { padding-top: calc(var(--ld-espaco) * .8); padding-bottom: calc(var(--ld-espaco) * .8); }
  .ld-hero { min-height: 0; }
  .ld-hero-copy { padding: 4rem 1.4rem 3.4rem; }
  .ld-hero h1, .ld-hero-titulo { max-width: none; }
  .ld-hero .ld-lead { max-width: none; }
  .ld-hero + .ld-pilares { margin-top: 0; padding-top: 3rem; background: #fff; }
  .ld-hero + .ld-pilares + * { padding-top: 3.6rem; }
  .ld-sobre, .ld-split, .ld-planos, .ld-grid-3, .ld-pilar-grid, .ld-deps, .ld-passos, .auth-shell,
  .ld-caixas, .ld-contador {
    grid-template-columns: 1fr;
  }
  .ld-sobre-foto { min-height: 260px; order: -1; }
  .ld-cta-band { flex-direction: column; align-items: flex-start; padding: 2rem 1.6rem; }
  .ld-footer { padding-top: 3rem; }
  .ld-footer-grid { grid-template-columns: 1fr; gap: 1.9rem; }
  .ld-faq-r { padding-right: 1rem; }
  .ld-galeria { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 132px; }
  .ld-galeria-1 { grid-column: auto; grid-row: auto; }
  .ld-tem-sep.ld-sep-baixo::after,
  .ld-tem-sep.ld-sep-cima::before,
  .ld-sep-onda::after,
  .ld-sep-diagonal::after { height: min(var(--ld-sep-h, 72px), 48px); }
  .ld-aviso-inner { gap: .7rem; }
}

/* ---------- login ---------- */

body.ld-auth {
  min-height: 100vh;
  font-family: var(--ld-sans);
  background: var(--ld-auth-bg, var(--ld-bg));
  color: var(--ld-ink);
}
.auth-shell {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 100vh;
}
.auth-photo {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ld-navy-ink);
}
.auth-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.auth-slide.is-on { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .auth-slide { transition: none; }
}
.auth-photo::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--ld-gold);
  z-index: 3;
}
.auth-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, var(--ld-auth-ov1, rgba(21, 36, 71, .12)) 0%, var(--ld-auth-ov2, rgba(21, 36, 71, .42)) 100%);
}
.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}

/* ---------- variantes do login ---------- */

.auth-marca {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .5rem;
  padding: 3rem 3.2rem;
  color: #fff;
  box-sizing: border-box;
}
.auth-marca img {
  height: 54px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  align-self: flex-start;
  margin-bottom: 1.2rem;
  /* A logo padrão é navy escuro: sobre a foto ela some, então vira monocromática clara. */
  filter: brightness(0) invert(1);
  opacity: .92;
}
.auth-marca-nome {
  margin: 0;
  font-family: var(--ld-serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.1;
  font-weight: 600;
}
.auth-marca-frase {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, .82);
  font-size: 1.02rem;
}

.ld-auth-split-invertido .auth-shell { grid-template-columns: .95fr 1.05fr; }
.ld-auth-split-invertido .auth-photo { order: 2; }
.ld-auth-split-invertido .auth-photo::before { right: auto; left: 0; }

.ld-auth-foto-cheia .auth-shell,
.ld-auth-minimal .auth-shell,
.ld-auth-marca .auth-shell { position: relative; }
.ld-auth-foto-cheia .auth-shell { grid-template-columns: 1fr; }
.ld-auth-foto-cheia .auth-photo {
  position: absolute;
  inset: 0;
  min-height: 0;
}
.ld-auth-foto-cheia .auth-photo::before { display: none; }
.ld-auth-foto-cheia .auth-panel {
  position: relative;
  z-index: 4;
  padding: 3rem 2rem;
}
.ld-auth-foto-cheia .auth-card {
  box-shadow: 0 30px 70px rgba(0, 0, 0, .34);
  border-color: rgba(255, 255, 255, .5);
}

.ld-auth-minimal .auth-shell {
  grid-template-columns: 1fr;
  background: var(--ld-auth-degrade, linear-gradient(140deg, #0d1730, #254889));
}
.ld-auth-minimal .auth-panel { padding: 3rem 2rem; }
.ld-auth-minimal .auth-card { box-shadow: 0 30px 70px rgba(0, 0, 0, .3); }

.ld-auth-marca .auth-shell { grid-template-columns: 1.15fr .85fr; }
.ld-auth-marca .auth-panel { background: var(--ld-auth-bg, var(--ld-bg)); }
.ld-auth-marca .auth-card { border: 0; box-shadow: none; background: transparent; padding: 1rem 0; }

.ld-auth-foto-cheia.ld-auth-pos-esquerda .auth-panel,
.ld-auth-minimal.ld-auth-pos-esquerda .auth-panel { justify-content: flex-start; padding-left: clamp(2rem, 8vw, 7rem); }
.ld-auth-foto-cheia.ld-auth-pos-direita .auth-panel,
.ld-auth-minimal.ld-auth-pos-direita .auth-panel { justify-content: flex-end; padding-right: clamp(2rem, 8vw, 7rem); }
.auth-card {
  width: min(420px, 100%);
  background: var(--ld-auth-card, #fff);
  border-radius: var(--ld-radius-lg);
  padding: 2.4rem 2.1rem 2rem;
  box-shadow: 0 18px 50px rgba(21, 36, 71, .08);
  border: 1px solid var(--ld-line);
}
.auth-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ld-navy-deep);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1.7rem;
}
.auth-brand img {
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  flex-shrink: 0;
  padding: .45rem .65rem;
  border-radius: var(--ld-radius-sm);
  background: var(--ld-navy-deep);
  box-sizing: content-box;
}
.auth-brand span { line-height: 1.25; }
.auth-panel .ld-kicker { margin-bottom: .4rem; color: var(--ld-gold-deep); }
.auth-title {
  font-family: var(--ld-serif);
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 .4rem;
  color: var(--ld-navy-deep);
  font-weight: 600;
}
.auth-lead { color: var(--ld-muted); margin: 0 0 1.5rem; }
.auth-field { margin-bottom: 1rem; }
.auth-field label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .4rem;
  color: #64708a;
}
.auth-field input {
  width: 100%;
  border: 1px solid #d5d8e0;
  border-radius: var(--ld-radius-sm);
  padding: .9rem 1rem;
  font: inherit;
  box-sizing: border-box;
  background: #fbfaf7;
}
.auth-field input:focus {
  outline: 2px solid rgba(212, 180, 90, .4);
  border-color: var(--ld-gold);
  background: #fff;
}
.auth-pass { position: relative; }
.auth-pass input { padding-right: 5.2rem; }
.auth-pass button {
  position: absolute;
  right: .7rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--ld-muted);
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
}
.auth-row { margin-top: 1.35rem; }
.auth-submit { width: 100%; padding: .95rem 1.15rem; }
.auth-help { font-size: .84rem; color: var(--ld-muted); margin: 1.15rem 0 0; line-height: 1.5; }
.auth-help a,
.auth-back a { color: var(--ld-navy); font-weight: 600; text-decoration: none; }
.auth-back { font-size: .84rem; margin: .7rem 0 0; }
.auth-alert {
  border-radius: var(--ld-radius-sm);
  padding: .85rem 1rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  border-left: 3px solid var(--ld-gold);
}
.auth-alert-danger { background: #fdf6f2; color: #8a3b2a; }
.auth-alert-success { background: #f3f8f4; color: #1f6b45; }

@media (max-width: 900px) {
  .auth-photo { min-height: 200px; }
  .auth-photo::before { width: 100%; height: 4px; right: auto; bottom: 0; top: auto; }
  .auth-panel { padding: 1.4rem 1.1rem 2.4rem; }
  .auth-card { padding: 1.7rem 1.3rem 1.5rem; }
  .ld-auth-split-invertido .auth-photo { order: -1; }
  .ld-auth-marca .auth-photo { min-height: 320px; }
  .ld-auth-marca .auth-marca { padding: 2rem 1.4rem; }
  .ld-auth-foto-cheia .auth-photo { min-height: 0; }
  .ld-auth-foto-cheia .auth-panel,
  .ld-auth-minimal .auth-panel { padding: 2rem 1.1rem; justify-content: center; }
}
