:root {
  --ink: #13201c;
  --muted: #5d6b65;
  --line: #dfe7e2;
  --paper: #f7f6f1;
  --white: #ffffff;
  --green: #315b49;
  --green-dark: #18352b;
  --gold: #b8914a;
  --blue: #284d68;
  --shadow: 0 20px 60px rgba(18, 32, 28, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 246, 241, 0.94);
  border-bottom: 1px solid rgba(49, 91, 73, 0.12);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; min-width: 220px; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--green-dark);
  color: #f5f1e8;
  font-weight: 800;
  letter-spacing: 0;
}
.brand-copy { max-width: 280px; font-size: 0.86rem; color: var(--muted); }
nav { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.94rem; color: var(--green-dark); }
nav a { text-decoration: none; }

.hero, .section, .site-footer {
  padding-left: clamp(18px, 5vw, 74px);
  padding-right: clamp(18px, 5vw, 74px);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 82vh;
  padding-top: 70px;
  padding-bottom: 70px;
  background:
    linear-gradient(120deg, rgba(19, 32, 28, 0.9), rgba(37, 78, 63, 0.78)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=70");
  background-size: cover;
  background-position: center;
  color: #fffdf6;
}
.hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.lead { max-width: 860px; font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,0.88); }
.eyebrow { margin: 0 0 12px; color: var(--gold); text-transform: uppercase; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; }
.hero .eyebrow { color: #e6c77b; }
.trust { color: rgba(255,255,255,0.78); font-size: 0.94rem; max-width: 820px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
}
.btn-primary { color: #fff; background: var(--gold); border-color: var(--gold); }
.btn-secondary { color: var(--green-dark); background: #fff; border-color: rgba(24, 53, 43, 0.18); }
.btn-ghost { color: inherit; background: transparent; border-color: currentColor; }
.hero-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-panel h2 { margin: 14px 0 10px; font-size: 1.45rem; }
.hero-panel p, .hero-panel li { color: rgba(255,255,255,0.82); }
.score-badge {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  font-weight: 900;
}

.section { padding-top: 74px; padding-bottom: 74px; }
.section-head { max-width: 980px; margin-bottom: 32px; }
.section h2 { margin: 0 0 16px; font-size: clamp(1.8rem, 3.4vw, 3.2rem); line-height: 1.12; letter-spacing: 0; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.cards { display: grid; gap: 14px; }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards article, .pill-grid span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(18, 32, 28, 0.05);
}
.authority, .diagnostic, .data-model { background: #ffffff; }
.pill-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}
.timeline li {
  counter-increment: step;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.timeline li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}
.form-shell {
  background: #f9faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 34px);
  box-shadow: var(--shadow);
}
.progress { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; color: var(--muted); }
.progress-line { flex: 1; height: 8px; background: #e6ece8; border-radius: 999px; overflow: hidden; }
.progress-line span { display: block; height: 100%; width: 14%; background: var(--green); transition: width 0.25s ease; }
.step { display: none; }
.step.active { display: block; }
.step h3 { margin: 0 0 18px; font-size: 1.45rem; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
label { display: grid; gap: 7px; color: var(--green-dark); font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cdd8d1;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.question-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.question {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.question label { font-weight: 800; }
.checkbox-line { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; }
.checkbox-line input { width: auto; margin-top: 5px; }
.honeypot { position: absolute; left: -9999px; height: 1px; width: 1px; opacity: 0; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.form-message { min-height: 24px; color: #9a4a21; font-weight: 700; }
.result-card {
  background: var(--green-dark);
  color: #fffdf6;
  border-radius: 8px;
  padding: clamp(22px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.result-grid { display: grid; grid-template-columns: 230px 1fr; gap: 28px; align-items: center; }
.result-score { font-size: clamp(4rem, 8vw, 7rem); font-weight: 900; line-height: 1; color: #e6c77b; }
.result-label { margin: 0; color: rgba(255,255,255,0.72); }
.result-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 28px; }
.result-card li, .result-card p { color: rgba(255,255,255,0.84); }
.recommendation {
  margin-top: 24px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
}
.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--green);
  color: #fffdf6;
}
.contact p { color: rgba(255,255,255,0.82); }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  padding-bottom: 28px;
  background: #101d18;
  color: rgba(255,255,255,0.76);
}

@media (max-width: 1040px) {
  .hero, .contact { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pill-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  nav { gap: 10px; }
  .hero { min-height: auto; padding-top: 46px; padding-bottom: 46px; }
  .cards-4, .timeline, .pill-grid, .field-grid, .question-grid, .result-grid, .result-columns { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .actions { width: 100%; }
  .site-footer { flex-direction: column; }
}


.security-consent-notice {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(184, 145, 74, 0.42);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff8e7;
  color: #513d16;
}
.security-consent-notice p { margin: 0; color: inherit; font-size: 0.96rem; }

/* PCEP-08K-LGPD-DISCLAIMERS */
.pcep-safety-notice {
  margin: clamp(32px, 5vw, 72px) auto;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(142, 119, 74, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,244,238,0.92));
  color: #20242b;
  box-shadow: 0 18px 48px rgba(21, 28, 38, 0.08);
}
.pcep-safety-notice h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: 0;
}
.pcep-safety-notice p {
  margin: 0 0 12px;
  line-height: 1.65;
}
.pcep-safety-notice .pcep-safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.pcep-safety-notice .pcep-safety-card {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 38, 50, 0.08);
}
.pcep-safety-notice .pcep-safety-card strong {
  display: block;
  margin-bottom: 6px;
  color: #6e5831;
}
.pcep-safety-note {
  font-size: 0.94rem;
  color: #4d5663;
}


/* VPS 09-I - padronizacao premium paginas publicas secundarias */
:root {
  --pcep-premium-gold: var(--gold);
  --pcep-premium-ink: var(--ink);
  --pcep-premium-deep: var(--green-dark);
  --pcep-premium-shadow: 0 26px 72px rgba(18, 32, 28, 0.14);
}

body {
  background:
    radial-gradient(circle at 14% 8%, rgba(184, 145, 74, 0.11), transparent 26%),
    linear-gradient(180deg, #f8f6ef, var(--paper));
}

.site-header {
  background: rgba(247, 246, 241, 0.96);
  box-shadow: 0 14px 38px rgba(18, 32, 28, 0.08);
}

.brand-mark {
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(18, 32, 28, 0.16);
}

.brand-text,
.brand-copy {
  font-size: clamp(0.94rem, 1.1vw, 1.05rem);
  line-height: 1.35;
  font-weight: 680;
}

nav a {
  font-weight: 820;
}

.hero {
  min-height: clamp(520px, 68vh, 720px);
  padding-top: clamp(48px, 7vw, 86px);
  padding-bottom: clamp(46px, 7vw, 82px);
  background-blend-mode: multiply;
}

.hero-copy,
.hero-panel {
  position: relative;
}

.hero-copy {
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border-left: 4px solid var(--pcep-premium-gold);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(17, 31, 27, 0.62), rgba(17, 31, 27, 0.18)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(3px);
}

.eyebrow,
.hero .eyebrow {
  color: #e6c77b;
  font-size: clamp(0.96rem, 1.16vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.hero h1 {
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.42),
    0 18px 48px rgba(0, 0, 0, 0.26);
}

.hero h2,
.hero p,
.lead,
.trust,
.safety-note {
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.58;
  font-weight: 650;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.48),
    0 0 18px rgba(0, 0, 0, 0.26);
}

.hero h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.55rem);
  font-weight: 850;
}

.section {
  padding-top: clamp(46px, 6vw, 72px);
  padding-bottom: clamp(46px, 6vw, 72px);
}

.section-head {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.section h2 {
  font-weight: 880;
  text-shadow: 0 12px 34px rgba(255, 255, 255, 0.34);
}

.section-head p,
.disclaimer,
.legal-note,
.flow-note,
.pcep-safety-note,
.notice-grid article p,
.cards article p,
.pill-grid span,
.steps li,
.timeline li,
.question,
.checkbox-line,
.opportunity-main p,
.opportunity-facts dd,
.hero-panel p,
.hero-panel li {
  font-size: clamp(1.03rem, 1.22vw, 1.18rem);
  line-height: 1.62;
  font-weight: 620;
}

.cards article,
.pill-grid span,
.steps li,
.timeline li,
.notice-grid article,
.question,
.form-shell,
form,
.disclaimer,
.legal-note,
.flow-note,
.pcep-safety-notice,
.opportunity-card,
.hero-panel {
  border-color: rgba(184, 145, 74, 0.22);
  box-shadow:
    var(--pcep-premium-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(8px);
}

.cards article,
.pill-grid span,
.steps li,
.timeline li,
.notice-grid article,
.question {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 250, 247, 0.86));
}

.cards h3,
.opportunity-main h3,
.notice-grid article strong,
.question label,
.step h3,
.pcep-safety-card strong {
  color: var(--pcep-premium-deep);
  font-size: clamp(1.14rem, 1.35vw, 1.3rem);
  font-weight: 880;
  line-height: 1.24;
}

.btn {
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(18, 32, 28, 0.1);
}

.btn-primary {
  color: #fffdf6;
  background: linear-gradient(135deg, var(--pcep-premium-gold), #d6b46f);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(184, 145, 74, 0.25);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.56);
}

.opportunity-card {
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.4rem, 3.4vw, 2.7rem);
}

.opportunity-facts {
  box-shadow: inset 0 0 0 1px rgba(230, 199, 123, 0.16);
}

dt,
.score-badge,
.steps li::before,
.timeline li::before {
  color: var(--pcep-premium-gold);
  font-weight: 900;
}

input,
select,
textarea {
  min-height: 48px;
  border-color: rgba(49, 91, 73, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(184, 145, 74, 0.24);
  border-color: var(--pcep-premium-gold);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) minmax(220px, 0.75fr);
  align-items: start;
  padding-top: clamp(1.4rem, 3vw, 2.2rem);
  padding-bottom: clamp(1.4rem, 3vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(16, 29, 24, 0.98), rgba(24, 53, 43, 0.96));
  color: rgba(255, 255, 255, 0.82);
}

.site-footer strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fffdf6;
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  font-weight: 900;
}

.footer-kicker,
.footer-contact span,
.footer-brand p,
.site-footer a {
  font-size: clamp(0.96rem, 1.08vw, 1.05rem);
  line-height: 1.48;
}

.footer-kicker {
  color: #e6c77b;
  font-weight: 800;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 760;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #e6c77b;
}

@media (max-width: 1040px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 0.8rem;
  }

  .brand {
    min-width: 0;
  }

  .hero-copy {
    padding: 1rem;
  }

  .actions,
  .btn {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
/* FIM VPS 09-I */


/* VPS 09-J - jornada publica e funil de conversao */
.conversion-microcopy,
.next-step-note,
.funnel-note {
  max-width: 860px;
  margin: clamp(0.75rem, 1.6vw, 1.15rem) 0 0;
  color: var(--gold);
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  font-weight: 800;
  line-height: 1.52;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.section-copy .conversion-microcopy,
.section-head .conversion-microcopy,
.form-section .next-step-note,
.access-flow .next-step-note,
.recommendation .next-step-note {
  color: var(--pcep-premium-deep, var(--green-dark, var(--blue-deep)));
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.76);
  box-shadow: 0 14px 34px rgba(18, 32, 28, 0.08);
  text-shadow: none;
}

.hero .conversion-microcopy,
.final-cta .conversion-microcopy,
.contact .conversion-microcopy {
  color: #f0d58c;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.46),
    0 0 18px rgba(0, 0, 0, 0.28);
}

.actions {
  align-items: center;
}

.actions .btn-primary:first-child {
  box-shadow:
    0 18px 42px rgba(18, 32, 28, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

@media (max-width: 720px) {
  .conversion-microcopy,
  .next-step-note,
  .funnel-note {
    font-size: 1rem;
  }
}
/* FIM VPS 09-J */
