/* =========================
   GovTechWin - style.css
   Consolidado a partir de style_all.txt
   ========================= */

:root {
  --bg: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --primary: #123c66;
  --primary-2: #1c5d99;
  --accent: #d4a437;
  --accent-soft: #f4e2ad;
  --text: #17212b;
  --muted: #667789;
  --border: rgba(18, 60, 102, 0.12);
  --shadow: 0 18px 50px rgba(12, 31, 53, 0.10);
  --radius: 22px;
  --transition: 220ms ease;
}

/* Reset e base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 164, 55, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(28, 93, 153, 0.15), transparent 26%),
    linear-gradient(180deg, #eef3f9 0%, #f8fafc 48%, #eef2f7 100%);
  min-height: 100vh;
}

main {
  padding: 42px 0 40px;
}

footer,
.site-footer {
  padding: 22px 0 40px;
  color: var(--muted);
  font-size: 0.94rem;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 4px;
}

/* Header e navegação */
.header-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(245, 247, 251, 0.72);
  border-bottom: 1px solid rgba(18, 60, 102, 0.06);
}

header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 0;
  border: none;
  box-shadow: none;
}

.logo { height: auto; width: auto; }

.logo-image {
  width: auto;
  height: 84px;
  max-width: 324px;
  object-fit: contain;
  border-radius: 0;
}

.brand-text {
  min-width: 0;
}

.brand-text h1 {
  font-size: 1.08rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 4px;
}

.menu {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 6px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 60, 102, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(10, 24, 43, 0.05);
  flex-wrap: nowrap;
  overflow-x: auto;
  max-width: 100%;
}

.menu a,
.menu button {
  border: 0;
  background: transparent;
  color: #667789;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.menu a:hover,
.menu button:hover {
  color: var(--primary);
  background: rgba(18, 60, 102, 0.06);
  transform: translateY(-1px);
}

.menu a.active,
.menu button.active {
  background: linear-gradient(135deg, #184c80, #245f98);
  color: #fff;
  box-shadow: 0 8px 18px rgba(18, 60, 102, 0.16);
}

/* Blocos base */
.hero-card,
.stats-card,
.section-card,
.section-shell,
.card,
.panel,
.form-card,
.page-shell,
.compare-section,
.table-shell,
.cta,
.cta-band {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.card,
.panel,
.stat,
.metric-card,
.plan,
.flow-step {
  background: var(--surface-strong);
  border: 1px solid rgba(18, 60, 102, 0.08);
  border-radius: 18px;
}

.section-shell,
.table-shell {
  padding: 34px;
  margin-bottom: 24px;
}

.card,
.panel,
.metric-card {
  padding: 22px;
}

.badge {
  background: rgba(28, 93, 153, 0.08);
  color: var(--primary-2);
  border: 1px solid rgba(28, 93, 153, 0.14);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

footer.container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  width: fit-content;

  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: .02em;

  color: #8a6717;

  background: linear-gradient(135deg,
      rgba(212, 164, 55, 0.18),
      rgba(212, 164, 55, 0.08));

  border: 1px solid rgba(212, 164, 55, 0.35);

  border-radius: 999px;

  box-shadow: 0 6px 14px rgba(212, 164, 55, 0.18);

  margin-bottom: 22px;
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: #d4a437;

  box-shadow: 0 0 0 4px rgba(212, 164, 55, 0.15);
}

.btn {
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 1px solid transparent;
  font-family: inherit;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 14px 26px rgba(18, 60, 102, 0.22);
}

.btn-secondary {
  background: rgba(18, 60, 102, 0.06);
  color: var(--primary);
  border: 1px solid rgba(18, 60, 102, 0.1);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.mini-title {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Grids */
.grid-2,
.grid-3,
.stats-grid,
.metrics-grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.metrics-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
}

/* Hero base */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card {
  padding: 44px;
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 164, 55, 0.26) 0%, rgba(212, 164, 55, 0) 70%);
}

.hero h2,
h1 {
  color: #102a46;;
  /* color: #102a46; */
}

.hero h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.05;
  max-width: 22ch;
  margin-bottom: 16px;
  text-wrap: balance;
}

.hero-card h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.04;
  margin-bottom: 16px;
  max-width: 12ch;
  color: #fff;
}

.hero p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  width: 100%;
}

.lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 62ch;
}

.hero-copy {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.hero-copy p {
  color: inherit;
}

.hero .tag {
  font-weight: 800;
}

.tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(212, 164, 55, 0.25);
}

.stats-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.stat {
  padding: 18px;
}

.stat strong,
.metric-card strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat span,
.metric-card span,
.metric-card small {
  color: var(--muted);
  line-height: 1.5;
}

/* Seções */
.content {
  margin-top: 28px;
  display: grid;
  gap: 22px;
}

.section-card {
  padding: 34px;
  display: none;
  animation: fadeUp 320ms ease;
}

.section-card.active {
  display: block;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.section-head h2,
.section-head h3 {
  font-size: 1.7rem;
  color: #102a46;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
  max-width: 74ch;
  line-height: 1.7;
}

.item {
  background: var(--surface-strong);
  border: 1px solid rgba(18, 60, 102, 0.08);
  border-radius: 18px;
  padding: 22px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(10, 24, 43, 0.08);
  border-color: rgba(28, 93, 153, 0.18);
}

.item h4,
.card h3,
.card h4,
.panel h3,
.flow-step h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.item p,
.item li,
.card p,
.card li,
.panel li,
.flow-step p,
.compare td,
.intro,
.compare-header p,
.callout p,
.founder-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.intro {
  margin-bottom: 32px;
}

.item ul,
.card ul,
.panel ul,
.clean,
.leadership-list {
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

/* Timeline */
.timeline {
  display: grid;
  gap: 14px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: var(--surface-strong);
  border: 1px solid rgba(18, 60, 102, 0.08);
  border-radius: 18px;
}

.timeline-step strong {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(18, 60, 102, 0.12), rgba(28, 93, 153, 0.16));
  color: var(--primary);
  font-size: 1rem;
}

/* CTA */
.cta,
.cta-band {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(18, 60, 102, 0.97), rgba(28, 93, 153, 0.95));
  color: #fff;
  margin-top: 24px;
}

.cta h3,
.cta-band h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.cta p,
.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 160ch;
}

.cta .btn-secondary,
.cta-band .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* Método */
.flow-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.flow-step {
  padding: 22px;
  min-height: 160px;
}

.flow-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(212, 164, 55, 0.16);
  color: #8a6717;
  font-weight: 800;
}

.pillars .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pillars .tese {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.pillars .goal {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 60, 102, 0.08);
}

.compare-wrap {
  overflow-x: auto;
  border-radius: 18px;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: #fff;
}

.compare th,
.compare td {
  border-bottom: 1px solid rgba(18, 60, 102, 0.08);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.compare th {
  color: var(--primary);
  background: rgba(18, 60, 102, 0.04);
  font-size: 0.95rem;
}

.compare .note {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 4px;
}

.cmp {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.cmp-ok {
  background: rgba(28, 93, 153, 0.1);
  color: var(--primary-2);
}

.cmp-opt {
  background: rgba(212, 164, 55, 0.12);
  color: #8a6717;
}

.cmp-no {
  background: rgba(102, 119, 137, 0.12);
  color: var(--muted);
}

.faq details {
  background: #fff;
  border: 1px solid rgba(18, 60, 102, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
}

.faq details+details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  color: var(--primary);
  font-weight: 700;
}

.faq p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* Serviços */
.page-shell {
  padding: 40px;
}

.page-shell .tag {
  background: rgba(212, 164, 55, 0.12);
  color: #8a6717;
  border: 1px solid rgba(212, 164, 55, 0.22);
  margin-bottom: 18px;
}

.page-subtitle {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.plan {
  overflow: hidden;
}

.plan summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  cursor: pointer;
}

.plan summary::-webkit-details-marker {
  display: none;
}

.plan-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.plan-sub {
  color: var(--muted);
  line-height: 1.6;
}

.plan-badge {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  color: #8a6717;
  background: rgba(212, 164, 55, 0.14);
  border: 1px solid rgba(212, 164, 55, 0.24);
}

.plan-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.t-open {
  display: none;
}

.plan[open] .t-open {
  display: inline;
}

.plan[open] .t-closed {
  display: none;
}

.plan[open] .t-arrow {
  transform: rotate(180deg);
}

.t-arrow {
  transition: transform var(--transition);
}

.plan-body {
  padding: 0 22px 22px;
  border-top: 1px solid rgba(18, 60, 102, 0.08);
}

.plan-body h4 {
  margin: 18px 0 12px;
  color: var(--primary);
  font-size: 1rem;
}

/* Destaque visual dos cards de planos */
.grid-3 .plan {
  background: linear-gradient(180deg, rgba(232, 242, 252, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(28, 93, 153, 0.18);
  box-shadow: 0 14px 30px rgba(18, 60, 102, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.grid-3 .plan:hover {
  transform: translateY(-4px);
  border-color: rgba(28, 93, 153, 0.28);
  box-shadow: 0 20px 38px rgba(18, 60, 102, 0.12);
}

.grid-3 .plan summary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.grid-3 .plan-title {
  color: #0f3d68;
  font-size: 1.18rem;
}

.grid-3 .plan-sub {
  color: #4f6478;
}

.grid-3 .plan-body {
  background: rgba(255, 255, 255, 0.55);
}

.grid-3 .plan[open] {
  border-color: rgba(28, 93, 153, 0.30);
  box-shadow: 0 22px 42px rgba(18, 60, 102, 0.14);
}

.grid-3 .plan.plan-soon {
  background: linear-gradient(180deg, rgba(244, 234, 201, 0.42), rgba(232, 242, 252, 0.92));
  border: 1px solid rgba(212, 164, 55, 0.42);
}

.grid-3 .plan.plan-soon .plan-sub {
  color: #8a6717;
  font-weight: 700;
}

.mono {
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
}

.compare-section {
  margin-top: 30px;
  padding: 28px;
}

.compare-header h2 {
  font-size: 1.7rem;
  color: #102a46;
  margin-bottom: 8px;
}

.compare-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid rgba(18, 60, 102, 0.08);
}

.compare-section .compare {
  min-width: 860px;
}

.compare tbody tr:last-child td {
  border-bottom: 0;
}

.compare .cmp {
  justify-content: center;
  min-width: 78px;
  padding: 7px 12px;
  font-weight: 800;
}

.callout {
  margin-top: 24px;
  padding: 26px;
}

.callout h3 {
  font-size: 1.35rem;
  color: #102a46;
  margin-bottom: 14px;
}

/* Mercado / diferenciais */
.metric {
  display: grid;
  gap: 8px;
}

.metric strong {
  font-size: 1.85rem;
  color: var(--primary);
}

.note {
  display: inline-block;
  margin-top: 6px;
  color: #8a6717;
  font-size: 0.85rem;
  font-weight: 700;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(18, 60, 102, 0.08);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.95rem;
}

td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(18, 60, 102, 0.08);
  color: var(--muted);
  vertical-align: top;
  line-height: 1.55;
}

tbody tr:hover {
  background: rgba(18, 60, 102, 0.03);
}

.legend {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Contato */
.form-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.96);
}

.form-card h2 {
  font-size: 1.55rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.form-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
  color: var(--primary);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(18, 60, 102, 0.14);
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(28, 93, 153, 0.5);
  box-shadow: 0 0 0 4px rgba(28, 93, 153, 0.08);
}

.panel-white {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border-radius: 18px;
  padding: 24px;
}

.panel-white h2,
.panel-white h3,
.signature-name,
.founder-name {
  color: var(--primary);
}

.panel-white ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.founder-shell {
  padding: 42px;
  text-align: center;
  background: linear-gradient(135deg, rgba(18, 60, 102, 0.04), rgba(212, 164, 55, 0.08));
}

.founder-intro {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.ceo-photo-wrap {
  width: min(100%, 320px);
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 60, 102, 0.08);
  box-shadow: 0 18px 40px rgba(12, 31, 53, 0.10);
}

.ceo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}

.signature-block {
  display: grid;
  gap: 4px;
  justify-items: center;
  margin-top: 4px;
}

.signature-label {
  color: #8a6717;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-name {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.signature-role {
  color: var(--muted);
  font-weight: 600;
}

.founder-copy {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: left;
}

.leadership-list {
  max-width: 620px;
  margin: 6px auto 0;
  text-align: left;
}

.leadership-card {
  background: linear-gradient(135deg, rgba(18, 60, 102, 0.05), rgba(212, 164, 55, 0.08));
  border: 1px solid rgba(18, 60, 102, 0.08);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 14px;
  height: 100%;
}

.leadership-card .kicker,
.founder-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8a6717;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadership-card .kicker::before,
.founder-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.leadership-card h3,
.founder-name {
  font-size: 1.55rem;
}

/* Animação */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 980px) {
  header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }

  .logo {
    height: 64px;
    width: auto;
  }

  .hero,
  .grid-2,
  .grid-3,
  .metrics-grid,
  .flow-strip {
    grid-template-columns: 1fr;
  }

  .founder-shell,
  .hero-card,
  .form-card,
  .section-shell,
  .table-shell,
  .page-shell,
  .compare-section,
  .cta,
  .cta-band,
  .stats-card {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .brand {
    padding: 8px 12px;
  }

  .logo {
    height: 64px;
    width: auto;
  }

  .hero-card,
  .form-card,
  .section-shell,
  .table-shell,
  .page-shell,
  .compare-section,
  .cta,
  .cta-band,
  .stats-card,
  .callout,
  .founder-shell {
    padding: 22px;
  }

  .menu a,
  .menu button {
    padding: 11px 16px;
  }

  h1,
  .hero-card h1 {
    max-width: 13ch;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .plan summary {
    flex-direction: column;
  }

  .ceo-photo-wrap {
    width: min(100%, 260px);
  }

  .founder-copy {
    text-align: left;
  }
}

/* Home premium - padrão consultoria */
.hero-premium {
  grid-template-columns: 1fr;
  margin-bottom: 34px;
}

.hero-card h2,
.hero-card p {
  text-align: justify;
  text-justify: inter-word;
}

.hero-card-premium {
  grid-column: 1 / -1;
  max-width: 100%;
  padding: 52px;
  background:
    radial-gradient(circle at top right, rgba(212, 164, 55, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(18, 60, 102, 0.08);
  box-shadow: 0 22px 56px rgba(10, 24, 43, 0.08);
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .hero-card-premium .tag, */
.hero-card-premium h2,
.hero-card-premium p {
  width: 100%;
  max-width: none;
}

.hero-card-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(18, 60, 102, 0.01));
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #8a6717;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, #d4a437, #ead7a4);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #0f2b46;
  max-width: 14ch;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-description {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #5b6b7c;
  max-width: 62ch;
}

.hero-card-premium .hero-actions {
  margin-top: 30px;
}

.hero-card-premium .btn-primary {
  background: linear-gradient(135deg, #123c66, #1c5d99);
  color: #fff;
  box-shadow: 0 14px 24px rgba(18, 60, 102, 0.18);
}

.hero-card-premium .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #123c66;
  border: 1px solid rgba(18, 60, 102, 0.14);
}

@media (max-width: 980px) {
  .hero-card-premium {
    padding: 36px;
  }

  .hero-title {
    max-width: 15ch;
    font-size: clamp(2.3rem, 7vw, 3.6rem);
  }

  .hero-description {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-card-premium {
    padding: 26px;
  }

  .hero-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .hero-kicker::before {
    width: 28px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
}

/* Header canonico padronizado */
.header-wrap {
  position: sticky;
  top: 0;
  z-index: 60;
}
.header-wrap .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.header-wrap .brand,
.header-wrap .brand:link,
.header-wrap .brand:visited {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
.header-wrap .brand img,
.header-wrap .brand .logo-image {
  width: auto !important;
  height: 93px !important;
  max-width: 357px !important;
  object-fit: contain;
}
.header-wrap .menu {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 6px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 60, 102, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(10, 24, 43, 0.05);
}
.header-wrap .menu .nav-link {
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #667789;
  white-space: nowrap;
}
.header-wrap .menu .nav-link:hover {
  color: var(--primary);
  background: rgba(18, 60, 102, 0.06);
}
.header-wrap .menu .nav-link.active {
  background: linear-gradient(135deg, #184c80, #245f98);
  color: #fff;
  box-shadow: 0 8px 18px rgba(18, 60, 102, 0.16);
}
@media (max-width: 980px) {
  .header-wrap header {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .header-wrap .brand img,
  .header-wrap .brand .logo-image {
    height: 64px !important;
    max-width: 240px !important;
  }
  .header-wrap .menu {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }
}
