/* =============================================================
   PL System — site_v2 — design clássico corporativo
   Source Serif 4 (títulos) + Source Sans 3 (corpo)
   navy #1B2A4E primário · dourado #A9803C accent · simétrico
   ============================================================= */

:root {
  --navy:        #1B2A4E;
  --navy-dark:   #0F1A33;
  --navy-soft:   #2A3D6B;
  --gold:        #A9803C;
  --gold-soft:   #C99A55;
  --gold-pale:   #E8D8B6;
  --ink:         #16223D;
  --ink-2:       #344566;
  --ink-3:       #5A6783;
  --line:        #D8DDE7;
  --line-2:      #ECEEF4;
  --paper:       #FFFFFF;
  --paper-2:     #F7F6F1;
  --paper-3:     #F2F0EA;
  --highlight:   #FBF7EE;
  --max:         1200px;
  --r:           4px;
  --r-lg:        8px;
  --shadow-sm:   0 1px 2px rgba(15,26,51,.06);
  --shadow:      0 6px 20px rgba(15,26,51,.08);
  --shadow-lg:   0 12px 36px rgba(15,26,51,.12);
  --transition:  180ms cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 3.4vw + 1rem, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 2vw + 1rem, 2.35rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; letter-spacing: .02em; }

p  { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--navy); color: #fff; padding: 12px 18px;
  border-radius: var(--r);
}
.skip-link:focus { left: 16px; top: 16px; z-index: 100; outline: 2px solid var(--gold); }

/* TODO marker — visual cue for placeholders */
.todo {
  display: inline-block;
  background: rgba(169,128,60,.12); color: var(--gold);
  font-size: .78em; font-style: italic; font-weight: 500;
  padding: 1px 6px; border-radius: 2px; margin-left: 6px;
  letter-spacing: .01em;
}
.todo-line { color: var(--ink-3); font-size: .92rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: ""; display: block; height: 3px;
  background: var(--gold);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 78px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--navy);
}
.brand img { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: "Source Serif 4", serif;
  font-size: 1.3rem; font-weight: 700; letter-spacing: .01em;
}
.brand-text em {
  font-style: normal; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3);
  font-weight: 500;
}

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  text-decoration: none; color: var(--ink-2);
  font-size: .94rem; font-weight: 500;
  padding: 6px 0; position: relative;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform var(--transition);
}
.primary-nav a:hover { color: var(--navy); }
.primary-nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 10px 22px !important; border-radius: var(--r);
  text-decoration: none !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy-dark); color: #fff !important; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); background: transparent;
  border-radius: var(--r); cursor: pointer; padding: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--paper); border-top: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 0; box-shadow: var(--shadow);
    display: none;
  }
  .primary-nav.open { display: flex; }
  .primary-nav a {
    padding: 14px 24px; border-bottom: 1px solid var(--line-2);
  }
  .primary-nav a::after { display: none; }
  .nav-cta { margin: 12px 24px; text-align: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 40% at 100% 0%, rgba(169,128,60,.06) 0%, transparent 60%),
    radial-gradient(60% 35% at 0% 100%, rgba(27,42,78,.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: var(--gold);
  vertical-align: middle; margin-right: 10px;
}
.eyebrow-light { color: var(--gold-soft); }
.eyebrow-light::before { background: var(--gold-soft); }

.lede {
  font-size: 1.12rem; color: var(--ink-2);
  max-width: 60ch; margin: 18px 0 30px;
}
.lede-light { color: rgba(255,255,255,.8); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
  margin-top: 18px; font-size: .85rem;
  color: var(--ink-3); letter-spacing: .02em;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  padding: 14px 28px; border-radius: var(--r);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer; line-height: 1;
}
.btn-primary {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }

/* hero card — institutional info card */
.hero-card {
  background: var(--paper); border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 36px 32px; box-shadow: var(--shadow);
  border-radius: var(--r-lg);
  position: relative;
}
.hc-title {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--ink-3); font-family: "Source Sans 3", sans-serif;
  font-weight: 600; margin: 0 0 22px;
}
.hc-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  border-top: 1px solid var(--line-2);
}
.hc-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--line-2);
}
.hc-num {
  font-family: "Source Serif 4", serif; font-weight: 600;
  font-size: 1rem; color: var(--gold);
  width: 28px; flex-shrink: 0; padding-top: 2px;
}
.hc-list li > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.hc-list strong {
  font-family: "Source Serif 4", serif; font-weight: 600;
  font-size: 1.05rem; color: var(--navy);
}
.hc-list em {
  font-style: normal; font-size: .82rem; color: var(--ink-3);
}
.hc-foot {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  padding-top: 6px;
}
.hc-foot strong {
  display: block; font-family: "Source Serif 4", serif;
  font-size: 1.4rem; font-weight: 700; color: var(--navy); line-height: 1.1;
}
.hc-foot em {
  font-style: normal; font-size: .78rem; letter-spacing: .04em;
  color: var(--ink-3); margin-top: 4px; display: block;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--navy);
  color: rgba(255,255,255,.92);
  padding: 28px 0;
  border-bottom: 3px solid var(--gold);
}
.trust-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; align-items: center;
}
.trust-list li {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-list li:last-child { border-right: none; }
.trust-list strong {
  display: block; font-family: "Source Serif 4", serif;
  font-size: clamp(1.3rem, 2vw + .4rem, 1.6rem); font-weight: 700;
  color: #fff; line-height: 1.1;
}
.trust-list em {
  font-style: normal; display: block; margin-top: 6px;
  font-size: .82rem; letter-spacing: .04em;
  color: rgba(255,255,255,.7);
}
@media (max-width: 880px) {
  .trust-list { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-list li { border-right: none; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section-alt { background: var(--paper-2); }

.sec-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.sec-head .eyebrow::before { display: none; }
.sec-head .eyebrow {
  display: block; margin-bottom: 12px;
}
.sec-head h2 { margin-top: 6px; }
.sec-head::after {
  content: ""; display: block; width: 56px; height: 2px;
  background: var(--gold); margin: 24px auto 0;
}

/* A Empresa */
.prose-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
.prose-block { padding: 0; }
.prose-block h3 {
  position: relative; padding-bottom: 12px; margin-bottom: 16px;
}
.prose-block h3::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 36px; height: 2px; background: var(--gold);
}
.prose-block p { color: var(--ink-2); }
.prose-block strong { color: var(--navy); }

@media (max-width: 880px) {
  .prose-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   SERVIÇOS — cards
   ============================================================ */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.cards-4 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line);
  padding: 36px 32px; border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.card-highlight {
  background: var(--highlight); border-color: var(--gold-pale);
}
.card-highlight:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.card-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.card-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper-2); color: var(--navy);
  border-radius: 50%; margin-bottom: 22px;
  border: 1px solid var(--line);
}
.card-highlight .card-icon { background: #fff; border-color: var(--gold-pale); color: var(--gold); }
.card-icon svg { width: 28px; height: 28px; }
.card h3 {
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.card-highlight h3 { border-bottom-color: var(--gold-pale); }
.card-lead {
  color: var(--ink-2); font-size: 1rem;
  margin-bottom: 16px;
}
.card ul {
  list-style: none; padding: 0; margin: 0 0 18px;
  font-size: .96rem; color: var(--ink-2);
}
.card ul li {
  padding: 8px 0 8px 22px; position: relative;
  border-bottom: 1px dashed var(--line-2);
}
.card ul li:last-child { border-bottom: none; }
.card ul li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px;
  background: var(--gold); transform: rotate(45deg);
}
.card h4 {
  margin: 18px 0 10px;
  font-size: .88rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold); font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
}
.card-note {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--line-2);
  font-size: .92rem; color: var(--ink-3);
}
.card-highlight .card-note { border-top-color: var(--gold-pale); }
.card-note strong { color: var(--navy); }

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

/* ============================================================
   FERRAMENTAS — countdown + calculadora
   ============================================================ */
.tools-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
}
.tool {
  background: var(--paper); border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 32px 30px; border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.tool-head { margin-bottom: 22px; }
.tool-tag {
  display: inline-block;
  background: rgba(169,128,60,.12); color: var(--gold);
  font-size: .68rem; font-weight: 700;
  padding: 4px 10px; border-radius: 3px;
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 14px;
}
.tool h3 {
  margin: 0 0 6px;
  font-family: "Source Serif 4", serif;
  font-size: 1.35rem; font-weight: 600;
}
.tool-sub {
  margin: 0; color: var(--ink-3);
  font-size: .94rem;
}
.tool-foot {
  margin-top: auto; padding-top: 14px;
  font-size: .8rem; color: var(--ink-3);
  font-style: italic;
}

/* Countdown */
.countdown {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-bottom: 16px;
}
.cd-block {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 8px;
  text-align: center;
}
.cd-num {
  display: block;
  font-family: "Source Serif 4", serif;
  font-size: 1.85rem; font-weight: 700;
  color: var(--navy); line-height: 1;
  letter-spacing: -.02em;
}
.cd-lbl {
  display: block; margin-top: 6px;
  font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3);
  font-weight: 600;
}
.cd-target {
  margin-bottom: 16px; padding: 14px 16px;
  background: var(--paper-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: .92rem; color: var(--ink-2);
}
.cd-target strong {
  color: var(--navy); font-family: "Source Serif 4", serif;
  font-weight: 600;
}
.cd-target span {
  display: block; margin-top: 3px;
  color: var(--ink-3); font-size: .8rem; font-style: italic;
}
.cd-phases {
  list-style: none; padding: 0; margin: 0;
  font-size: .88rem; color: var(--ink-2);
}
.cd-phases li {
  padding: 9px 0; display: flex; gap: 12px;
  border-bottom: 1px solid var(--line-2);
}
.cd-phases li:last-child { border-bottom: none; }
.cd-phases li b {
  color: var(--gold); font-weight: 600;
  font-family: "Source Sans 3", sans-serif;
}
.cd-phases span {
  flex-shrink: 0; width: 90px;
  font-family: "Source Serif 4", serif;
  font-size: .9rem; font-weight: 600;
  color: var(--ink-3);
}
.cd-phases li b span { color: var(--gold); }

/* Calculadora */
.calc {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 18px;
}
.calc label {
  display: block; font-size: .78rem;
  font-weight: 700; color: var(--ink-2);
  letter-spacing: .06em; text-transform: uppercase;
}
.calc select {
  display: block; width: 100%; margin-top: 6px;
  padding: 11px 13px; font: 500 .95rem inherit;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r);
  transition: border var(--transition);
  text-transform: none; letter-spacing: 0;
}
.calc select:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,78,.12);
}
.calc-result {
  margin: 14px 0 8px; padding: 18px 20px;
  background: var(--navy); color: #fff;
  border-radius: var(--r);
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.cr-main { display: flex; align-items: baseline; gap: 10px; }
.calc-result strong {
  font-family: "Source Serif 4", serif;
  font-size: 2.1rem; font-weight: 700;
  line-height: 1; color: #fff;
}
.calc-result em {
  font-style: normal; font-size: .82rem;
  color: rgba(255,255,255,.7); letter-spacing: .04em;
}
.cr-range {
  font-size: .8rem; color: rgba(255,255,255,.55);
  font-family: "Source Sans 3", sans-serif;
}

@media (max-width: 1000px) { .tools-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) {
  .countdown { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .cd-num { font-size: 1.5rem; }
  .calc { grid-template-columns: 1fr; }
}

/* ============================================================
   METODOLOGIA
   ============================================================ */
.method {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; counter-reset: method;
  background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.method-step {
  padding: 36px 28px; position: relative;
  border-right: 1px solid var(--line-2);
}
.method-step:last-child { border-right: none; }
.ms-num {
  font-family: "Source Serif 4", serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 18px;
}
.method-step h3 { margin-bottom: 10px; }
.method-step p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.method-step::after {
  content: ""; position: absolute; right: -1px; top: 28px; bottom: 28px;
  width: 1px; background: var(--gold-pale);
}
.method-step:last-child::after { display: none; }

@media (max-width: 1000px) {
  .method { grid-template-columns: 1fr 1fr; }
  .method-step:nth-child(2) { border-right: none; }
  .method-step:nth-child(2)::after, .method-step:last-child::after { display: none; }
  .method-step { border-bottom: 1px solid var(--line-2); }
  .method-step:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 720px) {
  .method { grid-template-columns: 1fr; }
  .method-step { border-right: none; border-bottom: 1px solid var(--line-2); }
  .method-step:last-child { border-bottom: none; }
  .method-step::after { display: none; }
}

/* ============================================================
   DIFERENCIAL
   ============================================================ */
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.diff {
  background: var(--paper); border: 1px solid var(--line);
  padding: 32px 28px; border-radius: var(--r-lg);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.diff:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.diff-num {
  position: absolute; top: -16px; left: 28px;
  background: var(--navy); color: #fff;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Source Serif 4", serif; font-weight: 700; font-size: 1.05rem;
  border: 3px solid var(--paper-2); border-radius: 50%;
  letter-spacing: .02em;
}
.section .diff-num { border-color: var(--paper); }
.section-alt .diff-num { border-color: var(--paper-2); }
.diff h3 {
  margin: 20px 0 10px; font-size: 1.15rem;
}
.diff p { margin: 0; color: var(--ink-2); font-size: .96rem; }

@media (max-width: 1000px) { .diff-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .diff-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MISSÃO · VISÃO · VALORES
   ============================================================ */
.mvv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.mvv {
  background: var(--paper); border-top: 3px solid var(--gold);
  padding: 36px 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); border-top-width: 3px;
  border-top-color: var(--gold);
}
.mvv h3 {
  font-size: 1.2rem; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: .04em;
}
.mvv p { color: var(--ink-2); margin: 0; }

@media (max-width: 880px) { .mvv-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTATO
   ============================================================ */
.section-cta {
  background: var(--navy);
  color: #fff;
  position: relative;
}
.section-cta::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
}
.section-cta h2 { color: #fff; }
.section-cta a { color: #fff; }
.section-cta a:hover { color: var(--gold-soft); }

.cta-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact-list {
  list-style: none; padding: 0; margin: 28px 0 0;
}
.contact-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 1.05rem;
}
.contact-list .todo {
  background: rgba(201,154,85,.18); color: var(--gold-soft);
}
.ci {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08); border-radius: 50%;
  color: var(--gold-soft);
  flex-shrink: 0;
}
.ci svg { width: 18px; height: 18px; display: block; }
.ci-wpp { background: rgba(37,211,102,.15); color: #25D366; }

.contact-form {
  background: var(--paper); color: var(--ink);
  padding: 36px 32px; border-radius: var(--r-lg);
  border-top: 4px solid var(--gold);
}
.form-intro {
  margin: 0 0 20px; font-size: .98rem; color: var(--ink-2);
  padding-bottom: 16px; border-bottom: 1px solid var(--line-2);
}
.form-intro strong { color: var(--navy); }

.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--ink-2); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .06em;
}
.req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line);
  background: var(--paper); border-radius: var(--r);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,78,.12);
}

.radio-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 14px; margin-top: 4px;
}
.radio-row label {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 400; color: var(--ink-2);
  text-transform: none; letter-spacing: 0;
  cursor: pointer; padding: 4px 0;
  margin: 0;
}
.radio-row input[type=radio] { accent-color: var(--navy); }

.check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .88rem; color: var(--ink-2); line-height: 1.45;
  padding: 12px 0; margin-bottom: 16px;
  cursor: pointer;
}
.check input[type=checkbox] {
  margin-top: 3px; accent-color: var(--navy);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.check a { color: var(--navy); }

.form-note {
  margin-top: 14px; font-size: .85rem; color: var(--ink-3); text-align: center;
}
.form-note strong { color: var(--navy); }

@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .radio-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark); color: rgba(255,255,255,.75);
  padding: 56px 0 24px; font-size: .92rem;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 40px; align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.f-brand {
  display: flex; align-items: center; gap: 12px;
}
.f-brand strong {
  display: block; color: #fff; font-family: "Source Serif 4", serif;
  font-size: 1.15rem; font-weight: 700;
}
.f-brand span {
  display: block; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.f-nav { display: flex; flex-direction: column; gap: 8px; }
.f-nav h4 {
  color: #fff; font-family: "Source Sans 3", sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 8px;
}
.f-nav a {
  color: rgba(255,255,255,.7); text-decoration: none;
  font-size: .92rem; padding: 2px 0;
  transition: color var(--transition);
}
.f-nav a:hover { color: var(--gold-soft); }

.f-meta h4 {
  color: #fff; font-family: "Source Sans 3", sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 12px;
}
.f-meta p { margin: 0 0 6px; }
.f-meta a { color: rgba(255,255,255,.85); text-decoration: none; }
.f-meta a:hover { color: var(--gold-soft); }
.f-meta .todo {
  background: rgba(201,154,85,.18); color: var(--gold-soft);
  margin-left: 0;
}

.f-social {
  display: flex; gap: 10px; margin-top: 14px;
}
.f-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
  transition: background var(--transition), color var(--transition);
}
.f-social a:hover { background: var(--gold); color: #fff; }
.f-social svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; font-size: .82rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-soft); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { justify-content: flex-start; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wpp {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid #fff;
}
.float-wpp:hover {
  transform: scale(1.08); color: #fff;
  box-shadow: 0 14px 32px rgba(37,211,102,.4);
}
.float-wpp svg {
  width: 30px; height: 30px; display: block;
}

/* ============================================================
   COOKIES BANNER
   ============================================================ */
.cookies {
  position: fixed; left: 16px; bottom: 16px; right: 90px;
  max-width: 540px; z-index: 90;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 18px 22px;
}
.cookies p {
  margin: 0 0 14px; font-size: .9rem; line-height: 1.5;
  color: var(--ink-2);
}
.cookies a { color: var(--navy); }
.cookies-actions {
  display: flex; gap: 10px; justify-content: flex-end;
}
@media (max-width: 600px) {
  .cookies { left: 12px; right: 12px; bottom: 86px; max-width: none; }
  .cookies-actions { justify-content: stretch; }
  .cookies-actions .btn { flex: 1; }
}

/* ============================================================
   PRIVACIDADE PAGE
   ============================================================ */
.legal {
  max-width: 760px;
  padding: clamp(48px, 6vw, 80px) 0;
}
.legal h1 { margin-bottom: 24px; }
.legal h2 {
  margin-top: 36px; margin-bottom: 12px;
  font-size: 1.35rem;
}
.legal p, .legal li { color: var(--ink-2); }
.legal ul { padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--navy); }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav-toggle, .float-wpp, .cookies, .site-header::after { display: none !important; }
  .hero-card, .card, .diff, .mvv, .method-step { box-shadow: none; }
  body { font-size: 11pt; }
}
