/* =========================================================
   Fortis Fides Soluções - Landing Page
   ========================================================= */

/* ---------- Fontes self-hosted ---------- */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('assets/fonts/instrument-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('assets/fonts/instrument-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/instrument-serif-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/instrument-serif-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --navy: #0D1521;
  --gold: #957A43;
  --gold-dark: #7E6737;
  --gold-light: #BD9F60;
  --cream: #FAF4EA;
  --white: #FFFFFF;
  --blue: #BFD5F4;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans: 'Instrument Sans', Helvetica, Arial, sans-serif;
  --line-dark: rgba(255, 255, 255, 0.1);
  --line-light: rgba(13, 21, 33, 0.12);
  --shell: 1240px;
  --gut: clamp(20px, 4vw, 32px);
  --sec-y: clamp(68px, 8vw, 104px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dark); }
input, select, button, textarea { font: inherit; }
h1, h2, h3 { font-weight: 400; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--cream);
  color: var(--navy);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* ---------- Layout base ---------- */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
.section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
.section--cream { background: var(--cream); color: var(--navy); }
.section--white { background: var(--white); color: var(--navy); }
.section--bordered { border-bottom: 1px solid var(--line-dark); }

/* ---------- Tipografia ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.eyebrow--center { display: flex; justify-content: center; gap: 11px; text-align: center; }
.section--cream .eyebrow, .section--white .eyebrow { color: var(--gold); }
.eyebrow svg { flex: none; }

.h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.6vw, 61px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 20px 0 0;
  text-wrap: pretty;
}
.h2--center { text-align: center; margin-left: auto; margin-right: auto; }
.section:not(.section--cream):not(.section--white) .h2 { color: var(--white); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 32px;
  cursor: pointer;
  text-align: center;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.btn:hover { background: var(--gold-dark); color: var(--white); }
.btn svg { flex: none; }

.btn--sm {
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.btn--light {
  background: var(--white);
  color: var(--navy);
  padding: 22px 44px;
  font-size: 14px;
  transition: background .28s ease, color .28s ease, transform .28s ease, letter-spacing .28s ease;
}
.btn--light:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
  letter-spacing: 0.13em;
}
.btn--light:active { transform: translateY(-1px); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--gold);
  color: var(--navy);
  padding: 11px 0;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1.4;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: ff-marquee 42s linear infinite;
}
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  padding-left: 20px;
  flex: none;
}
.marquee__item span { font-size: 14px; color: var(--white); }
.marquee__item img { height: 20px; width: 14px; margin-left: 20px; flex: none; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes ff-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 21, 33, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 16px var(--gut);
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__logo { height: 38px; width: 110px; }
.site-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.site-nav a { color: rgba(250, 244, 234, 0.72); }
.site-nav a:hover { color: var(--cream); }

/* ---------- Hero ---------- */
.hero { position: relative; border-bottom: 1px solid var(--line-dark); }
.hero__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--gut) clamp(68px, 8vw, 104px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: start;
}
.hero__badge { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.hero__badge span {
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.hero__badge svg { flex: none; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--white);
  text-wrap: pretty;
}
.hero__sub {
  font-size: 19px;
  line-height: 1.62;
  color: var(--blue);
  margin: 0 0 40px;
  max-width: 33em;
  text-wrap: pretty;
}
.hero__list {
  display: grid;
  gap: 16px;
  padding-top: 34px;
  border-top: 1px solid var(--line-dark);
  margin: 0;
  list-style: none;
}
.hero__list li { display: flex; gap: 14px; align-items: baseline; }
.hero__list svg { flex: none; margin-top: 3px; stroke: #FFFFFF; }
.hero__list span { font-size: 17px; color: rgba(250, 244, 234, 0.7); }

/* ---------- Card do formulário ---------- */
.form-card {
  background: var(--cream);
  color: var(--navy);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 34px) clamp(20px, 3.2vw, 32px) clamp(22px, 3vw, 30px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.form-card__title {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.15;
  margin: 0 0 6px;
}
.form-card__lead {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(13, 21, 33, 0.62);
  margin: 0 0 26px;
}
.form-card__fields { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(13, 21, 33, 0.55);
  font-weight: 500;
}
.field__label svg { flex: none; }
.field input,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(13, 21, 33, 0.16);
  border-radius: 3px;
  background: var(--white);
  font-size: 15px;
  color: var(--navy);
  outline: none;
}
.field input:focus,
.field select:focus { border-color: var(--gold); }
.field select { appearance: none; padding-right: 38px; }
.select-wrap { position: relative; display: block; }
.select-wrap > svg {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.form-card__submit {
  width: 100%;
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--navy);
  color: var(--cream);
  font-size: 13.5px;
  animation: ff-cta-pulse 2.8s ease-in-out infinite;
  transition: background .28s ease, color .28s ease, transform .28s ease, letter-spacing .28s ease;
}
.form-card__submit:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  letter-spacing: 0.13em;
  animation: none;
}
.form-card__submit:active { transform: translateY(0); }
@keyframes ff-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(149, 122, 67, 0.45); }
  55%      { box-shadow: 0 0 0 12px rgba(149, 122, 67, 0); }
}
.form-card__note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
  color: rgba(13, 21, 33, 0.55);
  margin: 16px 0 0;
}
.form-card__note svg { flex: none; margin-top: 4px; }
.form-card__note span { font-size: 15px; }

/* ---------- Split genérico ---------- */
.split { display: grid; gap: 64px; align-items: center; }
.split--dor { grid-template-columns: 1.05fr 0.95fr; }
.split--virada { grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items: stretch; }
.split--urgencia { grid-template-columns: 1fr 1fr; gap: 72px; }

/* ---------- Seção dor ---------- */
.dor h2 { margin: 20px 0 28px; font-size: clamp(32px, 4.6vw, 61px); }
.dor__lead {
  font-size: 19px;
  line-height: 1.68;
  color: rgba(13, 21, 33, 0.72);
  margin: 0 0 18px;
  max-width: 52ch;
}
.dor__foto {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  min-height: 320px;
  overflow: hidden;
  border-radius: 6px;
}
.dor__foto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dor__h2-secundario {
  font-family: var(--serif);
  font-size: clamp(32px, 3.9vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 72px 0 40px;
  max-width: 24ch;
  text-wrap: pretty;
}

.grid { display: grid; }
.grid--4 { grid-template-columns: repeat(4, 1fr); gap: 36px 32px; margin: 0 0 80px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }

.icon-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(149, 122, 67, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex: none;
}
.icon-ring--lg { width: 46px; height: 46px; margin-bottom: 22px; }

.dor-item__title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.22;
  margin: 0 0 10px;
}
.dor-item__desc {
  font-size: 17px;
  line-height: 1.62;
  color: rgba(13, 21, 33, 0.68);
  margin: 0;
}

.quote-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--navy);
}
.quote-band__body { padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px); }
.quote-band__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.14;
  color: var(--white);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.quote-band__text {
  font-size: 18px;
  line-height: 1.68;
  color: var(--blue);
  margin: 0;
  max-width: 48ch;
}
.quote-band__foto { position: relative; min-height: 340px; overflow: hidden; }
.quote-band__foto img {
  position: absolute;
  top: -14%;
  left: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
}

/* ---------- Seção virada ---------- */
.virada__col { position: relative; display: flex; flex-direction: column; }
.virada h2 { line-height: 1.04; margin: 20px 0 0; }
.virada__statue {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin: -26px 0 -6px;
  pointer-events: none;
}
.virada__statue img {
  height: clamp(320px, 37vw, 570px);
  width: auto;
  max-width: none;
  margin-left: calc(clamp(320px, 37vw, 570px) * -0.518 + 120px);
}
.virada__text {
  font-size: 18px;
  line-height: 1.68;
  color: rgba(250, 244, 234, 0.72);
  margin: 0 0 20px;
}
.virada__text:last-of-type { margin-bottom: 32px; }
.virada__callout {
  padding: 28px 30px;
  background: rgba(250, 244, 234, 0.05);
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
  margin-bottom: 32px;
}
.virada__callout-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 12px;
}
.virada__callout-title svg { flex: none; }
.virada__callout-desc {
  font-size: 17px;
  line-height: 1.62;
  color: var(--blue);
  margin: 0;
}

/* ---------- Áreas de atuação ---------- */
#atuacao h2 {
  margin: 20px auto 60px;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(30px, 4.6vw, 61px);
}
.area-card {
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 34px 30px;
  transition: border-color .25s ease;
}
.area-card:hover { border-color: rgba(149, 122, 67, 0.55); }
.area-card--soon { background: var(--cream); }
.area-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.area-card__head .icon-ring { margin-bottom: 0; }
.tag-soon {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(149, 122, 67, 0.5);
  padding: 5px 10px;
  border-radius: 2px;
  font-weight: 500;
}
.area-card h3 {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.15;
  margin: 0 0 14px;
}
.area-card p {
  font-size: 16px;
  line-height: 1.62;
  color: rgba(13, 21, 33, 0.68);
  margin: 0;
}

/* ---------- Como funciona ---------- */
#como h2 { margin: 20px auto 64px; text-align: center; max-width: 22ch; }
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline__rail {
  position: absolute;
  left: 31px;
  top: 14px;
  bottom: 62px;
  width: 1px;
  background: var(--line-dark);
}
.timeline__fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0%;
  background: var(--gold);
  transition: height .3s linear;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 30px;
  padding-bottom: 54px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.step.is-visible { opacity: 1; transform: none; }
.step__dot {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(149, 122, 67, 0.45);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
  transition: background .5s ease, color .5s ease, border-color .5s ease;
}
.step.is-visible .step__dot { background: var(--gold); border-color: var(--gold); color: var(--white); }
.step__body { padding-top: 9px; }
.step__body h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.14;
  margin: 0 0 12px;
  color: var(--white);
}
.step__body h3 svg { flex: none; stroke: rgba(250, 244, 234, 0.72); }
.step__body p {
  font-size: 17px;
  line-height: 1.66;
  color: var(--blue);
  margin: 0;
  max-width: 58ch;
}
.timeline-cta { margin-top: 56px; text-align: center; }

/* ---------- Diferenciais ---------- */
.dif__head { max-width: 860px; margin: 0 auto 56px; text-align: center; }
.dif-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(13, 21, 33, 0.1);
  border-radius: 6px;
  padding: 32px 30px 34px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.dif-card:hover {
  border-color: rgba(149, 122, 67, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(13, 21, 33, 0.08);
}
.dif-card .icon-ring { width: 44px; height: 44px; margin-bottom: 0; }
.dif-card h3 {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.18;
  margin: 0;
}
.dif-card p {
  font-size: 16px;
  line-height: 1.62;
  color: rgba(13, 21, 33, 0.68);
  margin: 0;
}

/* ---------- Accordions ---------- */
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
details[open] .acc__plus { transform: rotate(45deg); }
.acc__plus {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  transition: transform .2s ease;
  flex: none;
}

#duvidas h2 { margin: 20px auto 52px; text-align: center; max-width: 26ch; }
#duvidas .shell { max-width: 1000px; }
.obj { border-top: 1px solid var(--line-dark); }
.obj:last-of-type { border-bottom: 1px solid var(--line-dark); }
.obj summary { display: flex; gap: 24px; align-items: baseline; padding: 26px 0; }
.obj__q {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  color: var(--white);
}
details[open] .obj__q { color: var(--gold); }
.obj p {
  font-size: 17px;
  line-height: 1.66;
  color: var(--blue);
  margin: 0 0 30px;
  padding-left: 44px;
  max-width: 62ch;
}

.faq-section .shell { max-width: 1000px; }
.faq-section h2 { margin: 20px auto 48px; text-align: center; max-width: 26ch; color: var(--navy); }
.faq { border-top: 1px solid rgba(13, 21, 33, 0.14); }
.faq:last-of-type { border-bottom: 1px solid rgba(13, 21, 33, 0.14); }
.faq summary { display: flex; gap: 20px; align-items: baseline; padding: 22px 0; }
.faq__q { font-size: clamp(22px, 2.4vw, 31px); font-weight: 500; line-height: 1.35; }
.faq p {
  font-size: 16.5px;
  line-height: 1.64;
  color: rgba(13, 21, 33, 0.68);
  margin: 0 0 26px;
  padding-left: 38px;
  max-width: 62ch;
}

/* ---------- Urgência ---------- */
.urgencia__icone {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(13, 21, 33, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 26px 0 0;
}
.urgencia h2 { text-align: left; margin: 20px 0 0; }
.urgencia__text {
  font-size: 18px;
  line-height: 1.68;
  color: rgba(13, 21, 33, 0.72);
  margin: 0 0 20px;
}
.urgencia__kicker {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.22;
  margin: 8px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(13, 21, 33, 0.18);
  max-width: 30ch;
}

/* ---------- CTA final ---------- */
#contato {
  background: linear-gradient(135deg, #C4A768 0%, #A98B4F 45%, #957A43 100%);
  color: var(--navy);
}
#contato .shell {
  max-width: 900px;
  padding-top: clamp(76px, 9vw, 112px);
  padding-bottom: clamp(76px, 9vw, 112px);
  text-align: center;
}
#contato h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 61px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--white);
}
#contato p.lead {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 40px;
  max-width: 46ch;
}
.selo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 700px;
  margin: 38px auto 0;
}
.selo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  white-space: nowrap;
  background: rgba(13, 21, 33, 0.12);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.selo svg { flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); border-top: 1px solid var(--line-dark); }
.site-footer__top {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 72px) var(--gut) 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}
.site-footer__logo { height: 35px; width: 102px; margin-bottom: 22px; }
.site-footer__slogan {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 12px;
}
.site-footer__contatos {
  font-style: normal;
  display: grid;
  gap: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 244, 234, 0.6);
}
.site-footer__contatos a { color: rgba(250, 244, 234, 0.75); }
.site-footer__contatos a:hover { color: var(--cream); }
.site-footer__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer__actions nav { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.site-footer__actions nav a { font-size: 14px; color: rgba(250, 244, 234, 0.6); }
.site-footer__actions nav a:hover { color: var(--cream); }
.site-footer__wa {
  padding: 15px 26px;
  font-size: 12.5px;
}
.site-footer__legal {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 26px var(--gut) 44px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.6;
  color: var(--blue);
}
.site-footer__legal span:last-child { max-width: 58ch; }

/* ---------- FAB WhatsApp ---------- */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  background: var(--gold);
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  animation: ff-wa-pulse 2.6s ease-in-out infinite;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.wa-fab:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}
@keyframes ff-wa-pulse {
  0%   { background-color: #957A43; box-shadow: 0 6px 16px rgba(0,0,0,0.18), 0 0 0 0 rgba(149,122,67,0.4); }
  55%  { background-color: #BD9F60; box-shadow: 0 6px 16px rgba(0,0,0,0.18), 0 0 0 14px rgba(149,122,67,0); }
  100% { background-color: #957A43; box-shadow: 0 6px 16px rgba(0,0,0,0.18), 0 0 0 0 rgba(149,122,67,0); }
}

/* ---------- Reveal por scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--statue { transform: translateY(56px) scale(1.04); transform-origin: bottom left; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 1180px) {
  .grid--4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .split, .hero__inner, .quote-band, .site-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .site-nav { display: none; }
  .h2, .dor h2, .urgencia h2, #como h2, #duvidas h2, .faq-section h2, #contato h2 {
    font-size: clamp(30px, 5.2vw, 48px);
  }
  #atuacao h2 { white-space: normal; }
  .site-footer__actions { justify-content: flex-start; }

  /* A coluna vira largura total: o sangramento a esquerda da estatua
     (margem negativa do desktop) passaria por cima do h2. Centraliza. */
  .virada__statue { margin: 8px 0 -6px; justify-content: center; }
  .virada__statue img { margin-left: 0; }
}

@media (max-width: 820px) {
  .grid--4, .grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section, #contato .shell { padding-top: 62px; padding-bottom: 62px; }
  .hero h1 { font-size: clamp(40px, 10.2vw, 54px); }
  .h2, .dor h2, #como h2, #duvidas h2, .faq-section h2, #contato h2 { font-size: clamp(27px, 7.2vw, 38px); }
  .hero__sub { max-width: none; }
  .hero__sub br, .urgencia h2 br { display: none; }

  .step { grid-template-columns: 46px 1fr; gap: 18px; padding-bottom: 40px; }
  .step__dot { width: 46px; height: 46px; font-size: 19px; }
  .timeline__rail { left: 23px; }
  .step__body h3 { font-size: 26px; }

  .obj summary { gap: 14px; }
  .obj p { padding-left: 30px; }
  .marquee__item span { font-size: 13px; }

  .dor__foto { order: -1; margin-bottom: 4px; }
  .quote-band__foto { order: -1; min-height: 260px; }
  #atuacao h2 { font-size: clamp(34px, 9vw, 48px); max-width: 12ch; margin-left: auto; margin-right: auto; }

  .virada .btn { display: block; width: max-content; margin-left: auto; margin-right: auto; }

  .urgencia h2 { text-align: center; font-size: clamp(32px, 8.6vw, 46px); }
  .urgencia__icone { margin-left: auto; margin-right: auto; }

  .selo-row { flex-direction: column; align-items: stretch; width: max-content; max-width: 100%; margin: 16px auto 0; }
  .selo { justify-content: flex-start; white-space: normal; }

  .site-footer__top { justify-items: center; text-align: center; }
  .site-footer__top > div { align-items: center; justify-content: center; }
  .site-footer__logo { margin-left: auto; margin-right: auto; }
  .site-footer__actions { justify-content: center; }
  .site-footer__actions nav { justify-content: center; }
  .site-footer__legal { justify-content: center; text-align: center; }

  .wa-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .btn--light { padding: 20px 28px; }
}

@media (max-width: 380px) {
  .btn--sm { padding: 11px 14px; font-size: 12px; letter-spacing: 0.05em; }
  .site-header__inner { gap: 12px; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track,
  .wa-fab,
  .form-card__submit { animation: none !important; }
  .reveal, .step {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  * { transition-duration: .01ms !important; }
}

/* =========================================================
   Página de agradecimento (obrigado.html)
   ========================================================= */
.obrigado { min-height: 60vh; display: flex; align-items: center; }
.obrigado .shell { max-width: 760px; text-align: center; }
.obrigado__ring { margin: 0 auto 26px; }
.obrigado h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--white);
}
.obrigado__lead {
  font-size: 19px;
  line-height: 1.62;
  color: var(--blue);
  margin: 0 auto 36px;
  max-width: 52ch;
}
.obrigado__alt { font-size: 15px; line-height: 1.6; color: rgba(250, 244, 234, 0.6); margin: 34px 0 0; }
.obrigado__voltar { margin: 28px 0 0; }
.push-right { margin-left: auto; }
