:root {
  --ink: #111111;
  --ink-soft: #242424;
  --paper: #f4f0e7;
  --paper-light: #fbfaf6;
  --white: #ffffff;
  --yellow: #f1e700;
  --yellow-soft: #fffbd0;
  --muted: #6b675f;
  --line: #d8d1c5;
  --line-dark: #343434;
  --max: 1240px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: auto; height: 53px; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.site-nav > a:not(.nav-cta) { padding: 11px 0; border-bottom: 2px solid transparent; }
.site-nav > a.active { border-bottom-color: var(--ink); }
.site-nav > a:not(.nav-cta):hover { border-bottom-color: #88827a; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  border: 1px solid var(--ink);
}
.nav-cta:hover { background: var(--yellow); color: var(--ink); }
.menu-button { display: none; border: 0; background: transparent; font-size: 25px; cursor: pointer; }

.kicker {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 12px;
  font-weight: 800;
}
.display,
.page-title,
.section-title,
.cta-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero {
  padding: 86px 0 72px;
  background:
    linear-gradient(90deg, transparent 0 73%, rgba(241, 231, 0, .11) 73%),
    var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: 72px;
  align-items: center;
}
.display {
  margin: 0;
  max-width: 900px;
  font-size: clamp(58px, 7.4vw, 104px);
  line-height: .91;
}
.display em {
  font-weight: 400;
  font-style: italic;
  background: linear-gradient(transparent 64%, var(--yellow) 64%);
}
.hero-copy {
  margin: 30px 0 0;
  max-width: 790px;
  font-size: 20px;
  color: #403c36;
}
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--yellow); color: var(--ink); }
.button-light { background: transparent; color: var(--ink); }
.button-light:hover { background: var(--white); }
.button-yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.button-yellow:hover { background: var(--white); border-color: var(--white); }

.commercial-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: var(--ink);
  color: var(--white);
  min-height: 465px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.commercial-panel::after {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--yellow);
  top: -110px;
  right: -80px;
}
.panel-label { font-size: 12px; text-transform: uppercase; letter-spacing: .18em; color: #d6d6d6; }
.challenge-list { position: relative; z-index: 1; display: grid; gap: 0; margin-top: 58px; }
.challenge-list div { padding: 17px 0; border-top: 1px solid #414141; }
.challenge-list strong { display: block; margin-bottom: 4px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.challenge-list span { color: #bdbdbd; font-size: 14px; }
.panel-link { position: relative; z-index: 1; font-size: 14px; font-weight: 800; color: var(--yellow); }

.metrics { background: var(--white); border-bottom: 1px solid var(--line); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { padding: 28px 24px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font-family: Georgia, serif; font-size: 36px; font-weight: 400; line-height: 1.1; }
.metric span { display: block; margin-top: 7px; font-size: 13px; color: var(--muted); }

section { padding: 90px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.section-title { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: .98; }
.section-summary { margin: 0; font-size: 18px; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.service-number { font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin: 38px 0 14px; font-family: Georgia, serif; font-size: 29px; line-height: 1.05; font-weight: 400; }
.service-card p { margin: 0; color: var(--muted); }
.service-card a { margin-top: auto; padding-top: 24px; font-size: 13px; font-weight: 800; }
.service-card.featured { background: var(--yellow); border-color: var(--yellow); }
.service-card.featured p { color: #34320a; }

.business-challenges { background: var(--ink); color: var(--white); }
.business-challenges .section-summary { color: #bdbdbd; }
.challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #3a3a3a; }
.challenge-item { padding: 27px 28px 28px 0; border-bottom: 1px solid #3a3a3a; }
.challenge-item:nth-child(3n+2), .challenge-item:nth-child(3n+3) { padding-left: 28px; border-left: 1px solid #3a3a3a; }
.challenge-item b { color: var(--yellow); font-size: 12px; letter-spacing: .12em; }
.challenge-item h3 { margin: 15px 0 8px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.challenge-item p { margin: 0; color: #bdbdbd; font-size: 14px; }

.training-band { background: var(--yellow-soft); }
.training-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 70px; align-items: center; }
.training-layout .section-title { max-width: 760px; }
.training-benefits { border-top: 1px solid var(--ink); }
.training-benefits div { display: grid; grid-template-columns: 40px 1fr; gap: 15px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.2); }
.training-benefits b { font-size: 12px; }
.training-benefits span { font-weight: 700; }

.method { background: var(--paper); }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.method-step { padding: 28px; border-right: 1px solid var(--line); }
.method-step:last-child { border-right: 0; }
.method-step b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-size: 13px;
}
.method-step h3 { margin: 24px 0 10px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.method-step p { margin: 0; color: var(--muted); }

.cta-section { padding: 72px 0; background: var(--ink); color: var(--white); }
.cta-layout { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-title { margin: 0; max-width: 850px; font-size: clamp(42px, 5vw, 70px); line-height: .98; }

.page-hero { padding: 90px 0 68px; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-title { margin: 0; max-width: 1080px; font-size: clamp(54px, 7vw, 96px); line-height: .92; }
.page-lead { max-width: 850px; margin: 28px 0 0; font-size: 20px; color: #403c36; }

.profile-intro-grid { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); gap: 76px; }
.profile-aside { padding: 30px; background: var(--yellow); min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; }
.profile-aside strong { font-family: Georgia, serif; font-size: 60px; font-weight: 400; line-height: 1; }
.profile-aside span { font-size: 14px; }
.prose { font-size: 18px; }
.prose p { margin: 0 0 24px; }

.results-band { padding: 0; background: var(--ink); color: var(--white); }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.result { padding: 30px 24px; border-right: 1px solid #3b3b3b; }
.result:last-child { border-right: 0; }
.result strong { display: block; color: var(--yellow); font-family: Georgia, serif; font-size: 35px; font-weight: 400; }
.result span { display: block; margin-top: 7px; color: #c3c3c3; font-size: 13px; }

.timeline-head { margin-bottom: 32px; }
.timeline { border-top: 1px solid var(--ink); }
.timeline-item { display: grid; grid-template-columns: 180px minmax(260px, .85fr) minmax(0, 1.15fr); gap: 34px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.timeline-item time { font-size: 13px; font-weight: 800; }
.timeline-item h3 { margin: 0; font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.timeline-item h4 { margin: 7px 0 0; font-size: 14px; }
.timeline-item p { margin: 0; color: var(--muted); }

.credentials { background: var(--paper); }
.credentials-grid { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); gap: 70px; }
.credential-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); }
.credential-list div { padding: 17px 18px 17px 0; border-bottom: 1px solid var(--line); }
.credential-list div:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }

.service-catalog { background: var(--paper-light); }
.service-detail {
  display: grid;
  grid-template-columns: 64px minmax(270px, .85fr) minmax(0, 1.15fr);
  gap: 32px;
  padding: 34px 0;
  border-top: 1px solid var(--ink);
}
.service-detail:last-child { border-bottom: 1px solid var(--ink); }
.service-detail > span { font-size: 12px; font-weight: 800; }
.service-detail h2 { margin: 0; font-family: Georgia, serif; font-size: 35px; line-height: 1.05; font-weight: 400; }
.service-detail p { margin: 0 0 14px; font-size: 17px; color: var(--muted); }
.service-detail ul { margin: 0; padding-left: 19px; }
.service-detail li { margin: 7px 0; }
.service-detail.featured { margin: 24px 0; padding: 34px 28px; background: var(--yellow); border: 0; }
.service-detail.featured p { color: #37340d; }

.format-section { background: var(--paper); }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 34px; }
.format-card { padding: 22px; border: 1px solid var(--line); background: var(--white); font-weight: 700; }

.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: 52px; }
.contact-panel { padding: 34px; background: var(--ink); color: var(--white); }
.contact-panel h2 { margin: 0 0 28px; font-family: Georgia, serif; font-size: 42px; font-weight: 400; line-height: 1.03; }
.contact-row { padding: 17px 0; border-top: 1px solid #404040; display: grid; gap: 4px; }
.contact-row small { color: var(--yellow); text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.contact-panel p { color: #c7c7c7; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 32px; background: var(--white); border: 1px solid var(--line); }
.contact-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 800; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; padding: 13px; border: 1px solid var(--line); background: var(--paper-light); color: var(--ink); }
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form small { grid-column: 1 / -1; color: var(--muted); }

footer { padding: 52px 0 22px; background: #090909; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 54px; }
.footer-brand img { height: 49px; width: auto; }
.footer-brand p { margin: 17px 0 0; color: #aaaaaa; }
.footer-column { display: grid; align-content: start; gap: 8px; }
.footer-column strong { color: var(--yellow); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; }
.footer-column span, .footer-column a { color: #d0d0d0; }
.copyright { margin-top: 38px; padding-top: 18px; border-top: 1px solid #2d2d2d; color: #858585; font-size: 12px; }

[data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero-grid, .section-head, .training-layout, .profile-intro-grid, .credentials-grid, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .commercial-panel { min-height: 380px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .challenge-grid { grid-template-columns: 1fr 1fr; }
  .challenge-item:nth-child(3n+2), .challenge-item:nth-child(3n+3) { padding-left: 0; border-left: 0; }
  .challenge-item:nth-child(even) { padding-left: 24px; border-left: 1px solid #3a3a3a; }
  .method-grid, .metrics-grid, .results-grid { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2), .result:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .result:nth-child(-n+2) { border-bottom: 1px solid #3b3b3b; }
  .timeline-item { grid-template-columns: 150px 1fr; }
  .timeline-item p { grid-column: 2; }
  .format-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    padding: 18px;
    background: var(--paper-light);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: 10px !important; border: 0 !important; }
  .menu-button { display: block; }
  .cta-layout { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .navbar { min-height: 72px; }
  .brand img { height: 43px; }
  .hero { padding: 62px 0 52px; background: var(--paper); }
  .display { font-size: clamp(49px, 15vw, 72px); }
  .hero-copy, .page-lead { font-size: 18px; }
  .actions { align-items: stretch; flex-direction: column; }
  .metrics-grid, .service-grid, .challenge-grid, .method-grid, .results-grid, .format-grid, .credential-list { grid-template-columns: 1fr; }
  .metric, .result, .method-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .result { border-bottom-color: #3b3b3b; }
  .challenge-item, .challenge-item:nth-child(even) { padding: 24px 0; border-left: 0; }
  .method-step:last-child, .metric:last-child, .result:last-child { border-bottom: 0; }
  .credential-list div:nth-child(even) { padding-left: 0; border-left: 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .timeline-item p { grid-column: auto; margin-top: 8px; }
  .service-detail { grid-template-columns: 1fr; gap: 12px; }
  .service-detail.featured { padding: 27px 20px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .contact-form .full { grid-column: auto; }
  .contact-form small { grid-column: auto; }
  section { padding: 68px 0; }
  .page-hero { padding: 68px 0 52px; }
  .page-title { font-size: clamp(48px, 14vw, 72px); }
}


/* ===== Opção 4 v2 — identidade reforçada da Think PM ===== */
.site-header {
  border-top: 5px solid var(--yellow);
  box-shadow: 0 8px 28px rgba(17,17,17,.045);
}
.navbar { min-height: 112px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}
.brand img {
  width: auto;
  height: 78px;
  flex: 0 0 auto;
}
.brand-tagline {
  max-width: 280px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: '';
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(241,231,0,.14);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 13%, rgba(241,231,0,.10) 0 72px, transparent 73px),
    linear-gradient(135deg, rgba(255,255,255,.56), transparent 48%),
    var(--paper);
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(17,17,17,.10);
  border-radius: 50%;
  pointer-events: none;
}
.display em {
  color: var(--ink);
  font-style: italic;
  text-decoration: none;
  background: linear-gradient(transparent 64%, var(--yellow) 64%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.commercial-panel {
  border-radius: 0 34px 0 0;
  box-shadow: 20px 20px 0 rgba(241,231,0,.18);
}
.commercial-panel::after {
  width: 78px;
  height: 78px;
  top: 25px;
  right: 25px;
}

/* Igualar os serviços, sem bloco amarelo em destaque */
.service-card.featured,
.service-card {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}
.service-card.featured p { color: var(--muted); }
.service-card:hover {
  border-color: var(--ink);
  box-shadow: inset 0 4px 0 var(--ink);
}
.service-number { color: var(--muted); }

/* A seção de treinamento dialoga com a marca sem usar um grande fundo amarelo */
.training-band {
  position: relative;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.training-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: var(--ink);
}
.training-benefits b { color: var(--muted); }

/* Página de serviços sem destaque amarelo isolado */
.service-detail.featured,
.service-detail {
  background: transparent;
  color: var(--ink);
}
.service-detail.featured p { color: var(--muted); }
.service-detail > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.service-detail > span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

/* Retrato executivo integrado à linguagem editorial */
.profile-intro-grid {
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
  align-items: start;
}
.profile-photo-card {
  position: relative;
  margin: 0;
  background: var(--ink);
  color: var(--white);
  box-shadow: 18px 18px 0 rgba(241,231,0,.42);
}
.profile-photo-card::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  border: 7px solid rgba(17,17,17,.78);
}
.profile-photo-frame {
  position: relative;
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  background: var(--paper);
}
.profile-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.profile-photo-card figcaption {
  display: grid;
  gap: 6px;
  padding: 22px 24px 25px;
}
.profile-photo-card figcaption span {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
  line-height: 1.05;
}
.profile-photo-card figcaption strong {
  color: #bdbdbd;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 34px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .9;
}

.footer-grid { grid-template-columns: 2.2fr 1fr 1fr; align-items: start; }
.footer-brand img {
  width: auto;
  height: 82px;
  margin-bottom: 20px;
}
.footer-brand p { max-width: 420px; font-size: 15px; }

@media (max-width: 1080px) {
  .brand-tagline { display: none; }
  .brand img { height: 70px; }
}

@media (max-width: 820px) {
  .navbar { min-height: 92px; }
  .site-nav { top: 92px; }
  .brand img { height: 62px; }
  .page-hero::after { width: 42px; height: 42px; }
}

@media (max-width: 620px) {
  .site-header { border-top-width: 4px; }
  .navbar { min-height: 84px; }
  .brand img { height: 54px; }
  .profile-photo-card { box-shadow: 10px 10px 0 rgba(241,231,0,.42); }
  .footer-brand img { height: 64px; }
  .commercial-panel { box-shadow: 10px 10px 0 rgba(241,231,0,.18); }
}


/* ===== Opção 4 v3 — ajustes de conteúdo, certificações e rodapé ===== */
.timeline-item {
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
}
.timeline-item p { grid-column: auto; }

.credentials-content { display: grid; gap: 28px; }
.certification-visuals {
  display: grid;
  grid-template-columns: minmax(180px, .78fr) minmax(260px, 1.22fr);
  gap: 14px;
}
.certification-logo-card {
  min-height: 150px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
}
.certification-logo-card img {
  width: 100%;
  max-width: 250px;
  max-height: 90px;
  object-fit: contain;
}
.certification-logo-card:first-child img { max-width: 120px; max-height: 105px; }
.certification-logo-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-column { gap: 12px; }
.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d0d0d0;
  line-height: 1.35;
}
.footer-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}
.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
a.footer-item:hover { color: var(--white); }

@media (max-width: 980px) {
  .timeline-item { grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr); }
}
@media (max-width: 620px) {
  .timeline-item { grid-template-columns: 1fr; }
  .certification-visuals { grid-template-columns: 1fr; }
  .certification-logo-card { min-height: 135px; }
}

/* ===== Opção 4 v4 — fluxo de seções, ícones e certificações compactas ===== */

/* Fluxo cromático do index */
.areas-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.method {
  background: #eee9df;
  border-bottom: 1px solid var(--line);
}
.business-challenges {
  background: #151515;
  border-top: 0;
}
.training-band {
  background: #f7f3e6;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}
.training-band::before { background: var(--yellow); width: 7px; }

/* Ícones semânticos nas áreas de atuação e serviços */
.service-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: #f3f0e8;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { margin-top: 28px; }
.service-card:hover .service-icon {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
}
.service-detail {
  grid-template-columns: 64px minmax(270px, .85fr) minmax(0, 1.15fr);
  align-items: start;
}
.service-detail > .service-icon::before { content: none; }
.service-detail-icon {
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--paper);
}

/* Desafios e treinamento sem numeração */
.challenge-item h3 { margin-top: 0; }
.challenge-item::before {
  content: '';
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 20px;
  background: var(--yellow);
}
.training-benefits div {
  grid-template-columns: 32px 1fr;
  align-items: center;
}
.training-check {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
}
.training-check svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Indicadores de experiência transferidos para o Perfil */
.profile-metrics {
  padding: 0;
  background: var(--ink);
  color: var(--white);
  border: 0;
}
.profile-metrics .metric { border-color: #3b3b3b; }
.profile-metrics .metric strong { color: var(--yellow); }
.profile-metrics .metric span { color: #c3c3c3; }

/* Certificações integradas, com logos menores e fundo realmente transparente */
.certification-visuals {
  grid-template-columns: minmax(150px, .72fr) minmax(230px, 1.28fr);
  gap: 24px;
  padding: 2px 0 20px;
  border-bottom: 1px solid var(--line);
}
.certification-logo-card {
  min-height: 82px;
  padding: 4px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: start;
  gap: 14px;
  background: transparent;
  border: 0;
}
.certification-logo-card img {
  width: auto;
  max-width: 150px;
  max-height: 46px;
  object-fit: contain;
}
.certification-logo-card:first-child img {
  width: 58px;
  max-width: 58px;
  max-height: 58px;
}
.certification-logo-card span {
  text-align: left;
  font-size: 10px;
  letter-spacing: .07em;
}

/* Rodapé sem título "Conexões" e LinkedIn a partir do ícone oficial enviado */
.footer-links-column { padding-top: 27px; }
.footer-icon-image img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .certification-visuals { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .certification-visuals { grid-template-columns: 1fr; gap: 8px; }
  .certification-logo-card { min-height: 68px; }
  .footer-links-column { padding-top: 0; }
  .service-detail { grid-template-columns: 1fr; }
}
.service-detail > .service-icon {
  display: inline-grid;
  place-items: center;
  color: var(--ink);
}

.footer-icon-whatsapp { width: 20px; height: 20px; }
.footer-icon-whatsapp img { width: 19px; height: 19px; object-fit: contain; display:block; }

/* ===== SEO v1 — acessibilidade e estabilidade visual ===== */
.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #111;
  background: var(--yellow);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}


/* Bilingual navigation */
.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 36px;
  padding: 8px 10px !important;
  border: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
}
.language-switch:hover,
.language-switch:focus-visible {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--ink) !important;
}
@media (max-width: 820px) {
  .language-switch { justify-content: flex-start; min-height: 42px; }
}


/* ===== Bilingual v2 — footer refinements ===== */
.footer-brand img {
  height: 108px;
  width: auto;
  margin-bottom: 0;
}
.footer-brand {
  align-self: start;
}
@media (max-width: 820px) {
  .footer-brand img { height: 92px; }
}
@media (max-width: 620px) {
  .footer-brand img { height: 78px; }
}


/* ===== Bilingual v3 — larger header logo and flag language switch ===== */
.navbar { min-height: 124px; }
.brand img { height: 90px; }
.language-switch {
  gap: 8px;
  min-width: 66px;
  padding: 8px 11px !important;
  letter-spacing: .09em;
}
.language-switch span { display: inline-block; }
.language-flag {
  display: block;
  width: 20px;
  height: 14px;
  object-fit: cover;
  border: 1px solid rgba(17,17,17,.18);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(17,17,17,.12);
}
@media (max-width: 1080px) {
  .navbar { min-height: 112px; }
  .brand img { height: 82px; }
}
@media (max-width: 820px) {
  .navbar { min-height: 100px; }
  .site-nav { top: 100px; }
  .brand img { height: 72px; }
  .language-switch { justify-content: flex-start; width: fit-content; }
}
@media (max-width: 620px) {
  .navbar { min-height: 92px; }
  .site-nav { top: 92px; }
  .brand img { height: 64px; }
}
