:root {
  --navy: #002b4f;
  --navy-deep: #001f39;
  --navy-soft: #0a3b62;
  --orange: #f36d00;
  --orange-bright: #ff7a0a;
  --white: #ffffff;
  --mist: #f3f6f8;
  --ice: #e7eef3;
  --graphite: #263746;
  --text-soft: #c9d5df;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --content: 1240px;
  --radius: 18px;
  --header-height: 84px;
  --font: Lato, Arial, Helvetica, sans-serif;
  --section-space-lg: clamp(4rem, 5vw, 5.5rem);
  --section-space-md: clamp(2.5rem, 4vw, 4rem);
  --section-space-sm: clamp(1.5rem, 2.5vw, 2.5rem);
  --content-gap-lg: clamp(2rem, 4vw, 4rem);
  --content-gap-md: clamp(1.25rem, 2.5vw, 2.5rem);
  --content-gap-sm: clamp(0.75rem, 1.5vw, 1.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-170%);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 31, 57, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: clamp(1.25rem, 2.4vw, 2rem);
}

.brand-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(260px, 20vw, 290px);
  max-width: 310px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  border: 0;
  background: none;
  box-shadow: none;
}

.site-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.25vw, 1.15rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation a {
  position: relative;
  display: inline-flex;
  padding: 0.55rem 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.site-navigation a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-navigation a:hover,
.site-navigation a.is-active,
.site-navigation a[aria-current="page"] {
  color: var(--white);
}

.site-navigation a:not(.nav-contact):hover::after,
.site-navigation a.is-active::after,
.site-navigation a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-navigation .nav-contact {
  min-height: 38px;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(243, 109, 0, 0.72);
  border-radius: 999px;
  color: var(--white);
}

.site-navigation .nav-contact:hover {
  border-color: var(--orange);
  background: rgba(243, 109, 0, 0.12);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.section-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(580px, calc(100svh - var(--header-height)), 720px);
  padding: clamp(3.75rem, 5.5vw, 5rem) 0;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(243, 109, 0, 0.17), transparent 23%),
    radial-gradient(circle at 70% 75%, rgba(37, 105, 154, 0.34), transparent 36%),
    linear-gradient(125deg, var(--navy) 0%, var(--navy-deep) 72%);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000 40%, #000);
  pointer-events: none;
}

.hero-with-image {
  isolation: isolate;
  background: var(--navy-deep);
}

.hero-with-image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 31, 57, 0.97) 0%, rgba(0, 43, 79, 0.88) 39%, rgba(0, 31, 57, 0.34) 72%, rgba(0, 31, 57, 0.16) 100%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  object-position: center center;
}

.hero-with-image .hero-grid {
  grid-template-columns: minmax(0, 760px);
}

.hero-with-image .hero-visual {
  display: none;
}

/* Ativar a classe somente após inserir e aprovar o arquivo previsto. */
.hero.has-approved-image {
  background-image:
    linear-gradient(90deg, rgba(0, 31, 57, 0.92) 0%, rgba(0, 43, 79, 0.74) 48%, rgba(0, 31, 57, 0.4) 100%),
    url("../images/backgrounds/radio-studio-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero-position,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.2rem;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-position::before,
.eyebrow::before {
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--orange);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  text-wrap: balance;
}

h1 {
  max-width: 19ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.15rem, 4vw, 3.85rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h2 {
  max-width: 24ch;
  margin-bottom: 1.2rem;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  line-height: 1.25;
}

main p,
main li {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.hero-copy {
  max-width: 60ch;
  margin: 0 0 1.75rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.58;
}

.button-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--navy-deep);
}

.button-primary:hover {
  background: var(--orange-bright);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--orange);
}

.button[hidden] {
  display: none;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 40% 18px 40% 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    var(--navy-soft);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.26);
}

.hero-visual::before,
.hero-visual::after,
.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: "";
}

.hero-visual::before {
  width: 84%;
  aspect-ratio: 1;
  top: -11%;
  right: -18%;
}

.hero-visual::after {
  width: 58%;
  aspect-ratio: 1;
  top: 8%;
  right: -5%;
  border-color: rgba(243, 109, 0, 0.42);
}

.orbit-one {
  width: 35%;
  aspect-ratio: 1;
  top: 21%;
  right: 8%;
}

.orbit-two {
  width: 13%;
  aspect-ratio: 1;
  top: 32%;
  right: 19%;
  border: 0;
  background: rgba(243, 109, 0, 0.12);
}

.broadcast-dot {
  position: absolute;
  top: 37.5%;
  right: 24%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 9px rgba(243, 109, 0, 0.14);
}

.hero-visual-caption {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  padding-top: 1.4rem;
  border-top: 3px solid var(--orange);
}

.hero-visual-caption span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-visual-caption strong {
  display: block;
  max-width: 300px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.pillar-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
  color: var(--navy);
}

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

.pillar-grid article {
  position: relative;
  padding: 2.1rem 2rem 2.2rem;
  border-right: 1px solid #d9e1e7;
}

.pillar-grid article:last-child {
  border-right: 0;
}

.pillar-grid span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pillar-grid h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.pillar-grid p {
  margin: 0;
  color: #526675;
}

.section {
  padding: var(--section-space-lg) 0;
}

.section-light {
  background: var(--mist);
  color: var(--graphite);
}

.section-navy {
  background: var(--navy);
}

.section-deep {
  background: var(--navy-deep);
}

.section-light h2,
.section-light h3 {
  color: var(--navy);
}

.section-navy .section-intro,
.section-deep .section-intro {
  color: var(--text-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: 2.5rem;
  align-items: end;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 60ch;
  color: #526675;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}

.section-heading-light > p {
  color: var(--text-soft);
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.challenge-item {
  position: relative;
  min-height: 210px;
  padding: 1.8rem;
  overflow: hidden;
  border: 1px solid #d9e1e7;
  border-radius: 14px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.challenge-item:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 109, 0, 0.55);
  box-shadow: 0 18px 40px rgba(0, 43, 79, 0.08);
}

.challenge-item::after {
  position: absolute;
  right: -36px;
  bottom: -66px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(0, 43, 79, 0.09);
  border-radius: 50%;
  content: "";
}

.challenge-item strong,
.service-card .card-number {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.challenge-item h3 {
  color: var(--navy);
  font-size: 1.32rem;
}

.challenge-item p,
.service-card p {
  max-width: 34ch;
  margin: 0;
  color: #526675;
}

.solutions-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(243, 109, 0, 0.11), transparent 23%),
    var(--navy);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 220px;
  padding: 1.7rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 109, 0, 0.65);
  background: rgba(255, 255, 255, 0.07);
}

.service-card h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-soft);
}

.section-link {
  display: inline-flex;
  margin-top: 2.2rem;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-weight: 900;
  text-decoration-color: var(--orange);
  text-underline-offset: 5px;
}

.strategy-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(0, 31, 57, 0.98), rgba(0, 43, 79, 0.86)),
    var(--navy-deep);
}

.strategy-with-image {
  isolation: isolate;
  min-height: clamp(500px, 43vw, 650px);
  background: var(--navy-deep);
}

.strategy-with-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 31, 57, 0.94) 0%, rgba(0, 43, 79, 0.72) 48%, rgba(0, 31, 57, 0.38) 100%);
  content: "";
  pointer-events: none;
}

.strategy-media img {
  object-position: center 58%;
}

.strategy-with-image .container {
  position: relative;
  z-index: 3;
}

.strategy-visual.has-approved-image {
  background-image:
    linear-gradient(110deg, rgba(0, 31, 57, 0.94), rgba(0, 43, 79, 0.72)),
    url("../images/backgrounds/radio-console-strategy.webp");
  background-position: center;
  background-size: cover;
}

.strategy-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), transparent 70%);
  content: "";
}

.strategy-waves,
.strategy-waves::before,
.strategy-waves::after {
  position: absolute;
  width: 58vw;
  height: 58vw;
  max-width: 840px;
  max-height: 840px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.strategy-waves {
  z-index: 2;
  right: -15vw;
}

.strategy-waves::before {
  width: 72%;
  height: 72%;
  top: 14%;
  left: 14%;
  border-color: rgba(243, 109, 0, 0.24);
}

.strategy-waves::after {
  width: 42%;
  height: 42%;
  top: 29%;
  left: 29%;
}

.strategy-visual blockquote {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin: 0;
  padding-left: 2rem;
  border-left: 5px solid var(--orange);
  font-size: clamp(1.9rem, 3.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.results-section {
  position: relative;
  background:
    radial-gradient(circle at 10% 90%, rgba(243, 109, 0, 0.1), transparent 20%),
    var(--navy-deep);
}

.results-with-image {
  isolation: isolate;
  background: var(--navy-deep);
}

.results-with-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 31, 57, 0.97) 0%, rgba(0, 31, 57, 0.89) 54%, rgba(0, 31, 57, 0.72) 100%);
  content: "";
  pointer-events: none;
}

.results-media img {
  object-position: center center;
}

.results-with-image > .container {
  position: relative;
  z-index: 2;
}

.results-with-image .result-group {
  background: rgba(0, 43, 79, 0.88);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.results-section.has-approved-image {
  background-image:
    linear-gradient(180deg, rgba(0, 31, 57, 0.72), rgba(0, 31, 57, 0.95)),
    url("../images/backgrounds/broadcast-equipment-results.webp");
  background-position: center;
  background-size: cover;
}

.results-note {
  max-width: 70ch;
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--orange);
  font-size: 0.88rem !important;
  line-height: 1.5;
}

.results-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.result-group {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--orange);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.result-group-reduction {
  background: linear-gradient(215deg, rgba(243, 109, 0, 0.075), rgba(255, 255, 255, 0.018) 48%);
}

.result-group h3 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  letter-spacing: 0.015em;
}

.result-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.result-item {
  min-height: 180px;
  padding: 1.6rem 1rem 0.5rem 0;
}

.result-item + .result-item {
  padding-left: 1.25rem;
  border-left: 1px solid var(--line);
}

.result-number {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--orange);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.result-item p {
  max-width: 21ch;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
}

.result-item-long p {
  max-width: 30ch;
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  line-height: 1.45;
}

.expert-section {
  padding-bottom: var(--section-space-sm);
  background: var(--ice);
  color: var(--graphite);
}

.expert-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.expert-content {
  order: 1;
}

.expert-portrait {
  order: 2;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 18px 120px 18px 18px;
  background: var(--navy-deep);
  box-shadow: 0 30px 70px rgba(0, 43, 79, 0.2);
}

.expert-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photo-placeholder {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 120px 18px 18px 18px;
  background:
    radial-gradient(circle at 55% 28%, rgba(243, 109, 0, 0.18), transparent 23%),
    linear-gradient(145deg, var(--navy-soft), var(--navy-deep));
  box-shadow: 0 30px 70px rgba(0, 43, 79, 0.2);
}

.photo-placeholder.has-approved-image {
  background-image:
    linear-gradient(rgba(0, 43, 79, 0.18), rgba(0, 31, 57, 0.28)),
    url("../images/backgrounds/fabio-cardoso-profile.webp");
  background-position: center top;
  background-size: cover;
}

.photo-marker {
  position: absolute;
  inset: 14% 17% 18%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50% 50% 16px 16px;
}

.photo-marker::after {
  position: absolute;
  right: 0;
  bottom: -28px;
  width: 48%;
  height: 4px;
  background: var(--orange);
  content: "";
}

.placeholder-label {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  left: 1.6rem;
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.expert-content h2 {
  color: var(--navy);
}

.expert-name {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
}

.expert-name span {
  color: var(--navy);
  font-size: 0.92rem;
}

.section-intro {
  max-width: 60ch;
  margin: 0 0 2rem;
  color: #526675;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}

.expert-list,
.detail-list,
.legal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.expert-list li,
.detail-list li {
  position: relative;
  padding-left: 1rem;
  color: #526675;
}

.expert-list li::before,
.detail-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.expert-actions {
  margin-top: 2rem;
}

.current-work-section {
  padding-top: var(--section-space-md);
  padding-bottom: var(--section-space-sm);
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 109, 0, 0.12), transparent 24%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.company-rail-header,
.insights-rail-header {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.8rem;
}

.company-rail-header > p,
.insights-rail-header > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.company-rail-controls,
.insights-rail-controls {
  display: flex;
  gap: 0.55rem;
}

.company-rail-controls button,
.insights-rail-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.company-rail-controls button:hover:not(:disabled),
.insights-rail-controls button:hover:not(:disabled) {
  border-color: var(--orange);
  background: rgba(243, 109, 0, 0.1);
}

.company-rail-controls button:disabled,
.insights-rail-controls button:disabled {
  cursor: default;
  opacity: 0.36;
}

.company-rail-shell,
.insights-rail-shell {
  position: relative;
}

.company-rail-shell::after,
.insights-rail-shell::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0.85rem;
  width: 42px;
  background: linear-gradient(90deg, transparent, var(--navy-deep));
  content: "";
  pointer-events: none;
}

.company-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 3.5rem 0.9rem 0;
  scrollbar-color: rgba(243, 109, 0, 0.68) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
}

.insights-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.2rem 3.5rem 0.9rem 0;
  scrollbar-color: rgba(243, 109, 0, 0.68) rgba(0, 43, 79, 0.1);
  scrollbar-width: thin;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.insights-rail-shell::after {
  background: linear-gradient(90deg, transparent, #edf2f5);
}

.insights-rail-header > p {
  color: #526675;
}

.insights-rail-controls button {
  border-color: rgba(0, 43, 79, 0.24);
  background: var(--white);
  color: var(--navy);
}

.insights-rail-controls button:hover:not(:disabled) {
  border-color: var(--orange);
  background: rgba(243, 109, 0, 0.08);
}

.company-card {
  display: grid;
  min-height: 270px;
  flex: 0 0 calc((100% - 2rem) / 3.25);
  grid-template-rows: 120px 1fr;
  gap: 1.15rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 59, 98, 0.56);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  scroll-snap-align: start;
}

.company-logo-frame {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.company-logo-frame img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 101px;
  object-fit: contain;
}

.company-card h3 {
  margin-bottom: 0.55rem;
  color: var(--white);
}

.company-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

/* Página do fundador */
.founder-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background:
    radial-gradient(circle at 74% 22%, rgba(243, 109, 0, 0.13), transparent 23%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.founder-hero::after {
  position: absolute;
  right: -10%;
  bottom: -38%;
  width: min(620px, 48vw);
  aspect-ratio: 1;
  border: 1px solid rgba(243, 109, 0, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.founder-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.founder-hero-content h1 {
  max-width: 15ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.7rem, 5.2vw, 5.1rem);
}

.founder-hero-content > p:last-of-type {
  max-width: 62ch;
  margin-bottom: 2rem;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.3vw, 1.28rem);
}

.founder-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.founder-portrait {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-strong);
  border-radius: 18px 120px 18px 18px;
  background: var(--navy-deep);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-summary-section,
.founder-career-section {
  background: var(--mist);
  color: var(--graphite);
}

.founder-summary-section h2,
.founder-career-section h2,
.founder-career-section h3 {
  color: var(--navy);
}

.founder-summary-layout,
.founder-education-layout,
.founder-skills-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.founder-summary-copy {
  max-width: 68ch;
}

.founder-summary-copy p {
  color: #526675;
  font-size: clamp(1.08rem, 1.35vw, 1.25rem);
}

.founder-summary-copy p:first-child {
  margin-top: 0;
}

.founder-current-section {
  background: var(--navy-deep);
}

.founder-current-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.founder-current-grid article {
  min-height: 220px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 59, 98, 0.58);
}

.founder-current-grid span,
.career-tag,
.education-period {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-current-grid p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.current-company-heading {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.55rem;
}

.current-company-heading img {
  width: auto;
  max-width: 77px;
  height: auto;
  max-height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.current-company-heading h3 {
  margin: 0;
}

.founder-results-section {
  background:
    linear-gradient(112deg, rgba(243, 109, 0, 0.08), transparent 35%),
    var(--navy);
}

.founder-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.founder-results-grid article {
  min-height: 210px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  background: rgba(0, 31, 57, 0.58);
}

.founder-results-grid strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: clamp(2.7rem, 4.4vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.founder-results-grid p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.career-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.career-card {
  min-height: 300px;
  padding: 1.75rem;
  border: 1px solid #d5e0e7;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 43, 79, 0.06);
}

.career-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}

.career-tag {
  margin-bottom: 0.65rem;
}

.career-period {
  flex: 0 0 auto;
  margin: 0;
  color: #657a89;
  font-size: 0.82rem;
  font-weight: 800;
}

.career-role {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 900;
}

.career-card > p:last-child {
  margin-bottom: 0;
  color: #526675;
  font-size: 1rem;
}

.founder-education-section {
  background: var(--navy-deep);
}

.education-timeline {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding-left: 1.75rem;
}

.education-timeline::before {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 0.35rem;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.education-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.education-entry::before {
  position: absolute;
  top: 1.65rem;
  left: -1.72rem;
  width: 9px;
  height: 9px;
  border: 2px solid var(--navy-deep);
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.education-entry-latest {
  border-color: rgba(243, 109, 0, 0.62);
  background: linear-gradient(112deg, rgba(243, 109, 0, 0.1), rgba(255, 255, 255, 0.045));
}

.education-entry-no-logo {
  grid-template-columns: 1fr;
}

.education-period {
  margin: 0.7rem 0 0;
}

.education-entry h3 {
  margin-bottom: 0.35rem;
  color: var(--white);
}

.education-institution {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.education-logo-slot {
  display: flex;
  width: 132px;
  height: 72px;
  align-items: center;
  justify-content: center;
}

.education-logo {
  display: block;
  width: auto;
  max-width: 120px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.education-logo-wide {
  max-width: 115px;
}

.education-logo-fgv {
  max-width: 65px;
  max-height: 65px;
}

.education-logo-unip {
  max-width: 120px;
  max-height: 62px;
}

.education-logo-senac {
  max-width: 96px;
  max-height: 52px;
}

.founder-skills-section {
  background: var(--ice);
  color: var(--graphite);
}

.founder-skills-section h2 {
  color: var(--navy);
}

.founder-skills-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-skills-list li {
  position: relative;
  padding: 1rem 1rem 1rem 2rem;
  border: 1px solid #d5e0e7;
  border-radius: 10px;
  background: var(--white);
  color: #526675;
}

.founder-skills-list li::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.insights-section {
  padding-top: var(--section-space-sm);
  padding-bottom: var(--section-space-md);
  background: #edf2f5;
  color: var(--graphite);
}

.insights-section h2,
.insights-section h3 {
  color: var(--navy);
}

.insight-card-media {
  aspect-ratio: 4 / 5;
  background: var(--white);
}

.insight-card {
  display: flex;
  min-width: 0;
  flex: 0 0 calc((100% - 2rem) / 2.65);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d5e0e7;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0, 43, 79, 0.07);
  scroll-snap-align: start;
}

.insight-card-media,
.editorial-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(243, 109, 0, 0.3), transparent 18%),
    linear-gradient(145deg, var(--navy-soft), var(--navy-deep));
}

.insight-card-media.is-placeholder::after,
.editorial-card-media.is-placeholder::after {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  content: "ZY";
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.insight-card-media img,
.editorial-card-media img,
.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-card-media img {
  object-fit: contain;
}

.insight-card-content,
.editorial-card-content {
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  padding: 1.35rem;
}

.insight-card-title,
.editorial-card-title {
  display: -webkit-box;
  margin-bottom: 0.8rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.insight-card-excerpt,
.editorial-card-excerpt,
.editorial-card-subtitle {
  margin: 0 0 1rem;
  color: #526675;
}

.editorial-category {
  margin: 0 0 0.7rem;
  color: var(--orange);
  font-size: 0.72rem !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.editorial-date {
  display: block;
  margin-top: auto;
  color: #667b8a;
  font-size: 0.82rem;
}

.insight-link {
  width: auto;
  min-height: 44px;
  margin-top: 1rem;
  border-color: rgba(0, 43, 79, 0.28);
  color: var(--navy);
}

.editorial-latest-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(243, 109, 0, 0.12), transparent 24%),
    var(--navy-deep);
}

.editorial-rail-shell {
  position: relative;
}

.editorial-rail {
  display: flex;
  gap: 1rem;
  padding: 0.25rem 0 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--orange) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.editorial-rail .editorial-card {
  min-width: 0;
  flex: 0 0 calc((100% - 3rem) / 4);
  scroll-snap-align: start;
}

.editorial-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.editorial-latest-section .editorial-card-title,
.editorial-latest-section .editorial-card-link {
  color: var(--white);
}

.editorial-latest-section .editorial-date,
.editorial-latest-section .editorial-card-excerpt,
.editorial-latest-section .editorial-card-subtitle {
  color: var(--text-soft);
}

.editorial-card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 900;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.editorial-control {
  position: absolute;
  z-index: 2;
  top: 34%;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(0, 31, 57, 0.94);
  color: var(--white);
  cursor: pointer;
}

.editorial-control:hover {
  border-color: var(--orange);
}

.editorial-control-prev {
  left: -22px;
}

.editorial-control-next {
  right: -22px;
}

.editorial-more {
  margin-top: 1.5rem;
}

.editorial-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 82% 30%, rgba(243, 109, 0, 0.17), transparent 20%),
    var(--navy);
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.editorial-hero-with-image {
  position: relative;
  display: flex;
  min-height: clamp(470px, 42vw, 650px);
  align-items: flex-end;
  isolation: isolate;
  background: var(--navy-deep);
}

.editorial-hero-with-image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 31, 57, 0.06) 48%, rgba(0, 31, 57, 0.88) 100%);
  content: "";
  pointer-events: none;
}

.editorial-hero-media img {
  object-position: center center;
}

.editorial-hero-content {
  position: relative;
  z-index: 2;
}

.editorial-hero-with-image .eyebrow,
.editorial-hero-with-image h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.editorial-hero-with-image .editorial-hero-content > p:last-child {
  max-width: 48ch;
  margin: 0 0 0 auto;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--orange);
  background: rgba(0, 31, 57, 0.86);
  color: var(--white);
}

.editorial-page {
  background: var(--mist);
  color: var(--graphite);
}

.editorial-opening {
  max-width: 72ch;
  margin-bottom: 3rem;
}

.editorial-opening h2,
.editorial-empty h2 {
  color: var(--navy);
}

.editorial-opening > p:last-child,
.editorial-empty p {
  color: #526675;
}

.editorial-empty {
  display: grid;
  min-height: 340px;
  padding: clamp(2rem, 5vw, 4rem);
  place-items: center;
  align-content: center;
  border: 1px solid #d5e0e7;
  border-top: 4px solid var(--orange);
  border-radius: 16px;
  background: var(--white);
  text-align: center;
}

.editorial-empty > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.editorial-empty h2 {
  max-width: 24ch;
  margin-bottom: 0.8rem;
}

.editorial-empty p {
  max-width: 58ch;
  margin: 0;
}

.editorial-featured {
  margin-bottom: 2rem;
}

.editorial-featured .editorial-card-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  border-color: #d5e0e7;
  background: var(--white);
  box-shadow: 0 24px 55px rgba(0, 43, 79, 0.1);
}

.editorial-featured .editorial-card-media {
  min-height: 390px;
  aspect-ratio: auto;
}

.editorial-featured .editorial-card-content {
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.editorial-filters {
  display: flex;
  margin: 0 0 2rem;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.editorial-filter {
  min-height: 42px;
  padding: 0.55rem 1rem;
  border: 1px solid #c9d6df;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.editorial-filter[aria-pressed="true"] {
  border-color: var(--orange);
  background: var(--navy);
  color: var(--white);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.editorial-grid .editorial-card {
  display: flex;
  flex-direction: column;
  border-color: #d5e0e7;
  background: var(--white);
}

.article-page {
  padding: clamp(4.5rem, 6vw, 6rem) 0;
  background: var(--mist);
  color: var(--graphite);
}

.article-header,
.article-body {
  max-width: 72ch;
}

.article-header h1 {
  max-width: 20ch;
  color: var(--navy);
}

.article-subtitle {
  color: #526675;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

.article-meta {
  display: flex;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  color: #667b8a;
}

.article-hero-image {
  max-width: 1100px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.article-hero-image img {
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.article-hero-image figcaption {
  margin-top: 0.7rem;
  color: #667b8a;
  font-size: 0.82rem;
}

.article-draft-notice {
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--orange);
  background: rgba(243, 109, 0, 0.1);
  color: var(--navy);
  font-weight: 800;
}

.article-breadcrumb {
  margin-bottom: 1.5rem;
  color: #526675;
  font-size: 0.86rem;
}

.article-breadcrumb a {
  color: var(--navy);
}

.article-carousel {
  max-width: 920px;
  margin: 3rem auto;
}

.article-carousel-viewport {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid #d5e0e7;
  border-radius: 16px;
  background: var(--navy-deep);
  touch-action: pan-y;
}

.article-carousel-slide {
  grid-area: 1 / 1;
  margin: 0;
}

.article-carousel-slide[hidden] {
  display: none;
}

.article-carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(74vh, 1000px);
  margin: 0 auto;
  object-fit: contain;
}

.article-carousel-controls {
  display: grid;
  margin-top: 1rem;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
}

.article-carousel-button {
  display: inline-flex;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.article-carousel-button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.article-carousel-indicator {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.article-body h2 {
  margin-top: 2.5rem;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
}

.article-body p,
.article-body li {
  color: #526675;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--orange);
  background: var(--white);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
}

.article-sources,
.article-related {
  padding-top: 0.5rem;
}

.article-actions {
  display: flex;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.article-back-header {
  min-height: 44px;
}

.contact-section {
  position: relative;
  padding-top: var(--section-space-md);
  padding-bottom: var(--section-space-sm);
  background:
    linear-gradient(112deg, rgba(243, 109, 0, 0.1), transparent 34%),
    var(--navy);
}

.contact-section::after {
  position: absolute;
  right: -12%;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 109, 0, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
}

.contact-layout h2 {
  max-width: 800px;
  margin-bottom: 1.8rem;
}

.contact-email {
  display: inline-block;
  color: var(--white);
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 900;
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px) + var(--whatsapp-footer-clearance, 0px));
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: #25d366;
  color: #073d20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus-visible .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.site-footer {
  padding: 2.75rem 0;
  border-top: 1px solid var(--line);
  background: var(--navy-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.footer-brand {
  display: flex;
  max-width: 320px;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-brand-link {
  display: inline-flex;
  margin: 0;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 290px;
  max-width: 320px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  border: 0;
  background: none;
  box-shadow: none;
}

.footer-copy,
.footer-legal {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.footer-copy {
  margin: 0;
  max-width: 290px;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--orange);
}

.footer-navigation {
  justify-self: center;
}

.footer-legal {
  display: grid;
  justify-self: end;
  gap: 0.2rem;
  text-align: right;
}

/* Páginas complementares */
.inner-hero {
  position: relative;
  padding: clamp(4.5rem, 6vw, 6rem) 0;
  background:
    radial-gradient(circle at 82% 32%, rgba(243, 109, 0, 0.12), transparent 23%),
    var(--navy);
}

.services-hero {
  display: grid;
  min-height: clamp(500px, 42vw, 650px);
  align-items: center;
  isolation: isolate;
  background: var(--navy-deep);
}

.services-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 31, 57, 0.94) 0%, rgba(0, 43, 79, 0.72) 49%, rgba(0, 31, 57, 0.32) 100%);
  content: "";
  pointer-events: none;
}

.services-hero-media img {
  object-position: center 58%;
}

.services-hero > .container {
  position: relative;
  z-index: 2;
}

.services-hero h1,
.services-hero p:last-child {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
}

.inner-hero h1 {
  max-width: 21ch;
  font-size: clamp(2.15rem, 3.6vw, 3.5rem);
}

.inner-hero p:last-child {
  max-width: 65ch;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}

.detail-stack {
  display: grid;
  gap: 1px;
  border: 1px solid #d9e1e7;
  background: #d9e1e7;
}

.detail-block {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 3rem;
  padding: 2.3rem;
  background: var(--white);
}

.detail-block h3 {
  color: var(--navy);
}

.detail-block p,
.detail-block .detail-list li {
  color: #526675;
}

.detail-block p {
  margin-top: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process;
}

.process-step {
  min-height: 250px;
  padding: 1.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  counter-increment: process;
}

.process-step::before {
  display: block;
  margin-bottom: 2.8rem;
  color: var(--orange);
  font-weight: 900;
  content: "0" counter(process);
}

.process-step p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.accent-statement {
  margin: 0;
  padding: 2rem;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.05);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
}

.legal-content {
  max-width: 72ch;
}

.legal-content h2 {
  margin-top: 2.5rem;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
}

.legal-content p,
.legal-content li {
  color: #526675;
}

.legal-review {
  margin: 2rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--orange);
  background: #fff6ee;
  color: var(--graphite);
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 4rem 0;
  background:
    radial-gradient(circle at 72% 25%, rgba(243, 109, 0, 0.14), transparent 25%),
    var(--navy-deep);
  text-align: center;
}

.not-found-brand-link {
  display: inline-flex;
  margin: 0 auto 2.5rem;
  align-items: center;
}

.not-found-logo {
  display: block;
  width: 150px;
  max-width: 160px;
  height: auto;
  object-fit: contain;
  border: 0;
  background: none;
  box-shadow: none;
}

.not-found-code {
  margin: 0;
  color: var(--orange);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.not-found h1 {
  margin: 2.25rem auto 1.25rem;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

.not-found p {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--text-soft);
}

@media (max-width: 1199px) {
  .brand-logo {
    width: clamp(220px, 23vw, 250px);
  }
}

@media (max-width: 1050px) {
  :root {
    --header-height: 78px;
  }

  .menu-button {
    display: block;
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    visibility: hidden;
    background: rgba(0, 31, 57, 0.985);
    opacity: 0;
    transition: opacity 160ms ease, visibility 160ms ease;
  }

  .site-navigation.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-navigation ul {
    width: min(calc(100% - 40px), var(--content));
    margin: 2rem auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-navigation a,
  .site-navigation .nav-contact {
    min-height: 52px;
    padding: 0.9rem 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.05rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid,
  .section-heading,
  .split-layout,
  .expert-layout {
    grid-template-columns: 1fr;
  }

  .expert-portrait {
    width: min(100%, 560px);
    justify-self: center;
  }

  .hero-visual {
    min-height: 360px;
  }

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

  .founder-current-grid,
  .founder-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-logo {
    width: clamp(240px, 28vw, 280px);
  }

  .not-found-logo {
    width: 130px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

  .insight-card {
    flex-basis: calc((100% - 1rem) / 2.15);
  }

  .editorial-rail .editorial-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .editorial-featured .editorial-card-featured {
    grid-template-columns: 1fr;
  }

  .editorial-featured .editorial-card-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .company-card {
    flex-basis: calc((100% - 1rem) / 2.35);
  }
}

@media (max-width: 900px) {
  .founder-hero-layout,
  .founder-summary-layout,
  .founder-education-layout,
  .founder-skills-layout {
    grid-template-columns: 1fr;
  }

  .founder-hero-content h1 {
    max-width: 17ch;
  }

  .founder-portrait {
    width: min(100%, 560px);
    justify-self: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.4rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-navigation,
  .footer-legal {
    justify-self: center;
  }

  .footer-legal {
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {

  :root {
    --section-space-lg: clamp(2.25rem, 10vw, 3.25rem);
    --section-space-md: clamp(1.5rem, 8vw, 2.5rem);
    --section-space-sm: clamp(1rem, 6vw, 1.75rem);
    --content-gap-lg: clamp(1.5rem, 8vw, 2.5rem);
    --content-gap-md: clamp(1rem, 6vw, 1.75rem);
    --content-gap-sm: clamp(0.65rem, 4vw, 1rem);
  }
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand-logo {
    width: clamp(180px, 50vw, 210px);
    max-width: calc(100vw - 92px);
    height: auto;
  }

  .footer-logo {
    width: clamp(210px, 62vw, 250px);
    height: auto;
  }

  .not-found-logo {
    width: clamp(105px, 29.5vw, 125px);
    height: auto;
  }

  .hero {
    padding: 3.8rem 0 4.5rem;
  }

  .hero-with-image {
    padding-bottom: calc(56.25vw + 2rem);
    background: var(--navy-deep);
  }

  .hero-with-image::after {
    bottom: calc(56.25vw - 64px);
    background: linear-gradient(180deg, rgba(0, 31, 57, 0.98) 0%, rgba(0, 43, 79, 0.92) 72%, rgba(0, 31, 57, 0.12) 100%);
  }

  .hero-with-image .hero-media {
    top: auto;
    height: 56.25vw;
  }

  .hero-with-image .hero-media img {
    object-position: center;
  }

  .hero-position,
  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(2.15rem, 9vw, 2.4rem);
  }

  .hero-title-line {
    display: inline;
    white-space: normal;
  }

  h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button-row,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-visual {
    min-height: 300px;
    border-radius: 80px 14px 80px 14px;
  }

  .hero-visual-caption {
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    padding-block: 0.4rem;
  }

  .pillar-grid article {
    padding: 1.35rem 0;
    border-right: 0;
    border-bottom: 1px solid #d9e1e7;
  }

  .pillar-grid article:last-child {
    border-bottom: 0;
  }

  .pillar-grid h2 {
    font-size: 1.35rem;
  }

  .section-heading {
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .challenge-grid,
  .service-grid,
  .process-grid,
  .footer-grid,
  .expert-list,
  .detail-list,
  .founder-current-grid,
  .founder-results-grid,
  .career-list,
  .founder-skills-list {
    grid-template-columns: 1fr;
  }

  .company-card {
    min-height: 250px;
    grid-template-rows: 118px auto;
  }

  .founder-hero {
    padding: 3.6rem 0;
  }

  .founder-hero-layout {
    gap: 2.75rem;
  }

  .founder-hero-content h1 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .founder-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .founder-portrait {
    border-radius: 14px 80px 14px 14px;
  }

  .founder-current-grid article,
  .founder-results-grid article,
  .career-card {
    min-height: 0;
  }

  .career-card-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .career-period {
    margin-bottom: 0.8rem;
  }

  .education-timeline {
    padding-left: 1.4rem;
  }

  .education-entry::before {
    left: -1.37rem;
  }

  .education-entry {
    grid-template-columns: 1fr;
  }

  .education-logo-slot {
    width: 100%;
    height: 60px;
    margin-top: 0.25rem;
    justify-content: flex-start;
  }

  .education-logo {
    max-width: 108px;
    max-height: 58px;
  }

  .education-logo-fgv {
    max-width: 58px;
    max-height: 58px;
  }

  .education-logo-senac {
    max-width: 90px;
    max-height: 48px;
  }

  .challenge-item,
  .service-card {
    min-height: 0;
    padding: 1.4rem;
  }

  .challenge-item strong,
  .service-card .card-number {
    margin-bottom: 1.3rem;
  }

  .strategy-visual {
    min-height: 390px;
  }

  .strategy-with-image {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .strategy-with-image::before {
    bottom: auto;
    height: 56.25vw;
    background: linear-gradient(180deg, rgba(0, 31, 57, 0.08), rgba(0, 31, 57, 0.48));
  }

  .strategy-with-image .strategy-media {
    position: relative;
    inset: auto;
    height: 56.25vw;
  }

  .strategy-with-image .strategy-media img {
    object-position: center;
  }

  .strategy-with-image .container {
    padding-top: 3rem;
    padding-bottom: 3.25rem;
  }

  .strategy-with-image .strategy-waves {
    display: none;
  }

  .strategy-visual blockquote {
    padding-left: 1.2rem;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .results-groups {
    grid-template-columns: 1fr;
  }

  .result-item {
    min-height: 150px;
    padding-top: 1.35rem;
  }

  .result-number {
    font-size: clamp(2.6rem, 12vw, 3.4rem);
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .insights-rail {
    padding-right: 14%;
  }

  .insight-card {
    flex-basis: 87%;
  }

  .insights-rail-shell::after {
    width: 36px;
  }

  .editorial-rail {
    padding-right: 12%;
  }

  .editorial-rail .editorial-card {
    flex-basis: 87%;
  }

  .editorial-control {
    display: none;
  }

  .editorial-rail-shell::after {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 1rem;
    width: 42px;
    background: linear-gradient(90deg, transparent, var(--navy-deep));
    content: "";
    pointer-events: none;
  }

  .editorial-empty {
    min-height: 300px;
  }

  .article-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .article-actions .button {
    width: 100%;
  }

  .photo-placeholder {
    min-height: 410px;
    border-radius: 80px 14px 14px 14px;
  }

  .expert-portrait {
    border-radius: 14px 80px 14px 14px;
  }

  .services-hero,
  .editorial-hero-with-image {
    display: block;
    min-height: 0;
    padding-top: calc(50vw + 2.75rem);
    padding-bottom: 3.5rem;
    background: var(--navy-deep);
  }

  .services-hero .services-hero-media,
  .editorial-hero-with-image .editorial-hero-media {
    bottom: auto;
    height: 50vw;
  }

  .services-hero .services-hero-media img,
  .editorial-hero-with-image .editorial-hero-media img {
    object-position: center;
  }

  .services-hero::after,
  .editorial-hero-with-image::after {
    bottom: auto;
    height: 50vw;
    background: linear-gradient(180deg, rgba(0, 31, 57, 0.06), rgba(0, 31, 57, 0.38));
  }

  .editorial-hero-with-image .editorial-hero-content > p:last-child {
    margin-left: 0;
  }

  .contact-email {
    overflow-wrap: anywhere;
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px) + var(--whatsapp-footer-clearance, 0px));
    width: 54px;
    height: 54px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .has-whatsapp .site-footer {
    padding-top: 4.75rem;
  }

  .footer-inner {
    gap: 1.25rem;
  }

  .footer-links {
    gap: 0.85rem 1.15rem;
  }

  .article-carousel-controls {
    gap: 0.65rem;
  }

  .detail-block {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 600px) {
  .company-rail-header {
    align-items: flex-end;
  }

  .company-rail-header > p {
    max-width: 24ch;
  }

  .company-rail {
    padding-right: 2.6rem;
  }

  .company-card {
    flex-basis: 80%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* === ZY-INFORME SIMPLES E EDITORIAL === */
.zy-wallpaper {
  position: relative;
  background: #f7f9fa url("../images/editorial/zy-informe-wallpaper.svg") center top / min(1600px, 100vw) auto fixed no-repeat;
  color: var(--navy);
}
.zy-wallpaper::before {
  position: fixed; inset: 0; z-index: 0; background: rgba(247, 249, 250, 0.91); content: ""; pointer-events: none;
}
.zy-wallpaper > * { position: relative; z-index: 1; }
.zy-reading-container { width: min(calc(100% - 40px), 820px); }
.zy-latest-article, .zy-article-simple, .zy-archive-section { padding: clamp(3.4rem, 7vw, 6.25rem) 0 clamp(3rem, 6vw, 5rem); }
.zy-latest-article h1, .zy-article-header h1, .zy-archive-section h1 {
  max-width: 19ch; margin: .6rem 0 1.15rem; color: var(--navy); font-size: clamp(2.25rem, 5.2vw, 4.6rem); line-height: 1.03; letter-spacing: -.035em;
}
.zy-article-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-bottom: clamp(2rem, 4vw, 3rem); color: #5d6f7b; font-size: .98rem; }
.zy-article-meta span + span::before { margin-right: 1rem; color: var(--orange); content: "•"; }
.zy-article-text { font-size: clamp(1.06rem, 1.25vw, 1.22rem); line-height: 1.78; }
.zy-article-text p { margin: 0 0 1.45em; color: #344c5c; }
.zy-latest-text { padding-bottom: 0; }
.zy-source-block { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(0,43,79,.15); }
.zy-source-block h2 { margin: 0 0 .7rem; color: var(--navy); font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.zy-source-block ul { margin: 0; padding-left: 1.15rem; color: #5d6f7b; font-size: .95rem; }
.zy-author-quote { margin: clamp(2.8rem, 6vw, 4.8rem) 0 0; padding: 1.4rem 0 1.4rem 1.6rem; border-left: 4px solid var(--orange); background: transparent; }
.zy-author-quote p { margin: 0 0 .65rem; color: var(--navy); font-size: clamp(1.35rem, 2.6vw, 2.05rem); font-weight: 850; line-height: 1.28; }
.zy-author-quote cite { color: #5d6f7b; font-style: normal; font-weight: 700; }
.zy-previous-section { padding: 0 0 clamp(3.2rem, 6vw, 5rem); }
.zy-previous-section h2 { margin: 0 0 1.2rem; color: var(--navy); font-size: clamp(1.45rem, 2.6vw, 2rem); }
.zy-simple-list { border-top: 1px solid rgba(0,43,79,.14); }
.zy-simple-row { display: grid; grid-template-columns: 4px minmax(0,1fr); gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid rgba(0,43,79,.14); }
.zy-simple-bar { width: 4px; height: 100%; min-height: 42px; border-radius: 999px; background: var(--orange); }
.zy-simple-row-content { min-width: 0; }
.zy-simple-title { color: var(--navy); font-size: clamp(1rem, 1.4vw, 1.15rem); font-weight: 850; line-height: 1.35; text-decoration: none; }
.zy-simple-title:hover { color: var(--orange); text-decoration: underline; text-underline-offset: 4px; }
.zy-simple-meta { margin: .35rem 0 0; color: #6b7d89; font-size: .86rem; }
.zy-more-row { display: flex; justify-content: flex-end; margin-top: 1rem; }
.zy-more-row a { color: var(--navy); font-weight: 850; text-decoration-color: var(--orange); text-underline-offset: 4px; }
.zy-home-latest { padding: clamp(2.2rem, 5vw, 4rem) 0; background: #eef3f6; }
.zy-home-container { width: min(calc(100% - 40px), 980px); }
.zy-home-heading { margin-bottom: 1.25rem; }
.zy-home-heading h2 { margin: .45rem 0 0; color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.5rem); }
.zy-archive-intro { max-width: 60ch; color: #5d6f7b; font-size: 1.1rem; }
.zy-archive-list { margin-top: 2.3rem; border-top: 1px solid rgba(0,43,79,.16); }
.zy-archive-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(0,43,79,.16); align-items: end; }
.zy-archive-edition { margin: 0 0 .35rem; color: var(--orange); font-size: .75rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.zy-archive-row h2 { margin: 0; font-size: clamp(1.18rem, 2vw, 1.55rem); }
.zy-archive-row h2 a { color: var(--navy); text-decoration: none; }
.zy-archive-row h2 a:hover { color: var(--orange); }
.zy-archive-excerpt { max-width: 66ch; margin: .55rem 0 0; color: #5d6f7b; }
.zy-loading { color: #5d6f7b; }
@media (max-width: 768px) {
  .zy-wallpaper { background-attachment: scroll; background-size: 1200px auto; background-position: 58% 0; }
  .zy-wallpaper::before { position: absolute; }
  .zy-reading-container, .zy-home-container { width: min(calc(100% - 28px), 820px); }
  .zy-latest-article, .zy-article-simple, .zy-archive-section { padding-top: 2.5rem; }
  .zy-article-meta { display: grid; gap: .3rem; }
  .zy-article-meta span + span::before { display: none; }
  .zy-article-text { line-height: 1.68; }
  .zy-author-quote { padding-left: 1.1rem; }
  .zy-archive-row { grid-template-columns: 1fr; gap: .5rem; align-items: start; }
}


/* === AJUSTES FINAIS: INSIGHTS, RODAPÉ E ZY-INFORME === */
.site-footer {
  position: relative;
  z-index: 20;
  border-top-color: rgba(255, 255, 255, 0.12);
  background-color: #001f39 !important;
  opacity: 1;
}

.footer-copy {
  width: calc(100% - 10px);
  margin-left: 10px;
}

.footer-copy,
.footer-legal,
.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.zy-editorial-page {
  background: #f7f9fa;
}

.zy-wallpaper {
  background-color: #f7f9fa;
  background-image: url("../images/editorial/zy-informe-wallpaper.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: min(1600px, 100vw) auto;
  background-attachment: fixed;
}

.zy-wallpaper::before {
  background: rgba(247, 249, 250, 0.76);
}

.zy-latest-article h1,
.zy-article-header h1,
.zy-archive-section h1 {
  max-width: 24ch;
  font-size: clamp(1.95rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

@media (max-width: 900px) {
  .footer-copy {
    width: auto;
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .zy-wallpaper {
    background-attachment: scroll;
    background-position: 56% 0;
    background-size: 1100px auto;
  }

  .zy-wallpaper::before {
    background: rgba(247, 249, 250, 0.8);
  }

  .zy-latest-article h1,
  .zy-article-header h1,
  .zy-archive-section h1 {
    max-width: none;
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }
}

/* === FECHAMENTO FINAL: IMAGENS DOS INSIGHTS, ARTIGO ZY E RODAPÉ === */
.insight-card-media {
  aspect-ratio: 4 / 5;
  background: #ffffff;
}

.insight-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.zy-wallpaper {
  background-color: #f7f9fa;
  background-image: url("../images/editorial/zy-informe-wallpaper.svg");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: min(1500px, 100vw) auto;
  background-attachment: fixed;
}

.zy-wallpaper::before {
  background: rgba(247, 249, 250, 0.54);
}

.zy-article-header h1,
.zy-latest-article h1 {
  max-width: 22ch;
  font-size: clamp(1.9rem, 3.65vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
}

.zy-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.zy-article-meta .zy-meta-separator {
  color: var(--orange);
  font-size: 1.08em;
  font-weight: 900;
  line-height: 1;
}

.zy-article-meta span + span::before,
.zy-article-meta time + span::before {
  content: none;
}

.zy-article-text {
  position: relative;
  padding-left: clamp(1.2rem, 2.5vw, 2rem);
  border-left: 4px solid var(--orange);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.zy-article-text p {
  text-align: justify;
}

.zy-article-text strong {
  color: var(--navy);
  font-weight: 800;
}

.footer-brand {
  align-items: center;
  text-align: center;
}

.footer-brand-link {
  justify-content: center;
  width: 100%;
}

.footer-copy {
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .zy-wallpaper {
    background-attachment: scroll;
    background-position: center top;
    background-size: 1050px auto;
  }

  .zy-wallpaper::before {
    background: rgba(247, 249, 250, 0.62);
  }

  .zy-article-meta {
    display: flex;
    gap: 0.4rem;
  }

  .zy-article-meta .zy-meta-separator {
    display: inline;
  }

  .zy-article-text {
    padding-left: 1rem;
    border-left-width: 3px;
    text-align: left;
    hyphens: none;
  }

  .zy-article-text p {
    text-align: left;
  }
}


/* === AJUSTE EXECUTIVO FINAL: INSIGHTS COMPACTOS E CITAÇÃO AUTORAL === */
.insights-rail {
  gap: 0.9rem;
  padding-right: 2.5rem;
}

.insight-card {
  flex: 0 0 clamp(230px, 22vw, 300px);
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 43, 79, 0.065);
}

.insight-card-media {
  aspect-ratio: 4 / 5;
}

.insight-card-content {
  padding: 0.95rem 1rem 1rem;
}

.insight-card .editorial-category {
  margin-bottom: 0.45rem;
  font-size: 0.66rem !important;
  letter-spacing: 0.1em;
}

.insight-card-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.22;
  -webkit-line-clamp: 2;
}

.insight-card-excerpt {
  display: none !important;
}

.insight-card .editorial-date {
  margin-top: 0;
  font-size: 0.76rem;
}

.insight-link {
  min-height: 38px;
  margin-top: 0.75rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.84rem;
}

.zy-author-quote {
  position: relative;
  width: min(72%, 660px);
  margin: clamp(2.2rem, 4vw, 3.4rem) 0 0 auto;
  padding: 1.2rem 2.8rem 1rem 2.8rem;
  border-left: 0;
  background: transparent;
  text-align: right;
}

.zy-author-quote::before,
.zy-author-quote::after {
  position: absolute;
  color: rgba(93, 111, 123, 0.32);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.8vw, 5.2rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.zy-author-quote::before {
  top: 0.15rem;
  left: 0;
  content: "“";
}

.zy-author-quote::after {
  right: 0;
  bottom: 0.35rem;
  content: "”";
}

.zy-author-quote p {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-style: italic;
  font-weight: 650;
  line-height: 1.48;
}

.zy-author-quote cite {
  color: #5d6f7b;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 900px) {
  .insight-card {
    flex-basis: clamp(220px, 38vw, 270px);
    max-width: 270px;
  }
}

@media (max-width: 768px) {
  .insights-rail {
    gap: 0.75rem;
  }

  .insight-card {
    flex-basis: min(76vw, 255px);
    max-width: 255px;
  }

  .insight-card-content {
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .zy-author-quote {
    width: 92%;
    margin-left: auto;
    padding: 1rem 2.05rem 0.9rem;
  }

  .zy-author-quote p {
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .zy-author-quote::before,
  .zy-author-quote::after {
    font-size: 3.2rem;
  }
}


/* === PRÉ-PUBLICAÇÃO: WALLPAPER EDITORIAL === */
.zy-wallpaper {
  background-size: min(1280px, 100vw) auto;
}

.zy-wallpaper::before {
  background: rgba(247, 249, 250, 0.38);
}

@media (max-width: 768px) {
  .zy-wallpaper {
    background-size: 900px auto;
  }

  .zy-wallpaper::before {
    background: rgba(247, 249, 250, 0.46);
  }
}


/* === AJUSTE FINAL: QUATRO INSIGHTS COMPACTOS EM MÍDIA 1:1 === */
.insights-rail {
  gap: 0.8rem;
  padding-right: 1.5rem;
}

.insight-card {
  flex: 0 0 clamp(165px, 14vw, 200px);
  max-width: 200px;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(0, 43, 79, 0.055);
}

.insight-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0.38rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 43, 79, 0.98), rgba(0, 64, 105, 0.94) 58%, rgba(243, 109, 0, 0.82));
}

.insight-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(120deg, transparent 64%, rgba(243, 109, 0, 0.18));
  pointer-events: none;
}

.insight-card-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.98);
}

.insight-card-content {
  padding: 0.75rem 0.78rem 0.82rem;
}

.insight-card .editorial-category {
  margin-bottom: 0.32rem;
  font-size: 0.58rem !important;
  letter-spacing: 0.09em;
}

.insight-card-title {
  margin: 0 0 0.42rem;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  line-height: 1.2;
  -webkit-line-clamp: 3;
}

.insight-card .editorial-date {
  font-size: 0.67rem;
}

.insight-link {
  min-height: 33px;
  margin-top: 0.58rem;
  padding: 0.42rem 0.62rem;
  font-size: 0.72rem;
}

@media (min-width: 1100px) {
  .insights-rail {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .insight-card {
    flex-basis: clamp(160px, 25vw, 185px);
    max-width: 185px;
  }
}

@media (max-width: 768px) {
  .insights-rail {
    gap: 0.68rem;
    padding-right: 1.2rem;
  }

  .insight-card {
    flex-basis: min(58vw, 180px);
    max-width: 180px;
  }

  .insight-card-content {
    padding: 0.7rem 0.72rem 0.78rem;
  }
}


/* === PÁGINA SOBRE E POLÍTICA DE PRIVACIDADE — PRÉ-LANÇAMENTO === */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0 clamp(5rem, 8vw, 7.5rem);
  background:
    radial-gradient(circle at 82% 30%, rgba(243, 109, 0, 0.16), transparent 22%),
    linear-gradient(135deg, #001f3a, #00345d 62%, #002b4f);
  color: #fff;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 48%, rgba(255,255,255,.025));
  pointer-events: none;
}
.about-hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about-hero-copy { max-width: 760px; }
.about-hero-copy h1 { max-width: 760px; margin: .7rem 0 1.35rem; color: #fff; font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: 1.02; }
.about-hero-copy > p:not(.eyebrow) { max-width: 660px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.7; }
.about-hero-actions { margin-top: 1.8rem; }
.about-hero-visual { position: relative; min-height: 340px; display: grid; place-items: center; }
.about-core { position: relative; z-index: 2; display: grid; place-items: center; width: 118px; height: 118px; border: 2px solid rgba(255,255,255,.88); border-radius: 50%; color: #fff; font-size: 2.2rem; font-weight: 800; box-shadow: 0 0 0 18px rgba(243,109,0,.08); }
.about-signal { position: absolute; border: 2px solid rgba(255,255,255,.25); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(45deg); }
.about-signal-one { width: 185px; height: 185px; }
.about-signal-two { width: 255px; height: 255px; border-color: rgba(243,109,0,.32); border-left-color: transparent; border-bottom-color: transparent; }
.about-signal-three { width: 325px; height: 325px; border-color: rgba(255,255,255,.12); border-left-color: transparent; border-bottom-color: transparent; }
.about-narrative { display: grid; grid-template-columns: minmax(260px,.8fr) minmax(0,1.2fr); gap: clamp(2rem,6vw,6rem); align-items: start; }
.about-narrative h2, .about-section-heading h2, .about-founder-copy h2, .about-cta h2 { color: var(--navy); }
.about-copy-flow { max-width: 760px; font-size: clamp(1.02rem,1.2vw,1.14rem); line-height: 1.75; }
.about-copy-flow p + p { margin-top: 1.15rem; }
.about-principles { background: var(--navy); color: #fff; }
.about-principles .eyebrow { color: var(--orange); }
.about-principles .about-section-heading h2, .about-principles .about-section-heading > p { color: #fff; }
.about-principles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.about-principle { padding: clamp(1.45rem,2.5vw,2.2rem); border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.035); }
.about-principle span { color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.about-principle h3 { margin: 1.2rem 0 .7rem; color: #fff; font-size: clamp(1.3rem,2vw,1.7rem); }
.about-principle p { color: rgba(255,255,255,.72); line-height: 1.65; }
.about-areas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .85rem; }
.about-areas-grid > div { min-height: 135px; padding: 1.35rem; border: 1px solid rgba(0,43,79,.12); border-top: 2px solid var(--orange); border-radius: 12px; background: #fff; box-shadow: 0 10px 30px rgba(0,43,79,.045); }
.about-areas-grid strong { display: block; color: var(--navy); font-size: 1.05rem; }
.about-areas-grid span { display: block; margin-top: .55rem; color: #5d6f7b; line-height: 1.55; }
.about-founder { background: #eef3f6; }
.about-founder-layout { display: grid; grid-template-columns: minmax(260px,.75fr) minmax(0,1.25fr); align-items: center; gap: clamp(2rem,6vw,6rem); }
.about-founder-photo { display: block; max-width: 370px; border-radius: 38px 38px 38px 8px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,43,79,.14); }
.about-founder-photo img { display: block; width: 100%; height: auto; }
.about-founder-copy { max-width: 680px; }
.about-founder-copy p:not(.eyebrow) { color: #506776; font-size: 1.04rem; line-height: 1.7; }
.about-founder-copy p + p { margin-top: .85rem; }
.about-founder-copy .button { margin-top: 1.35rem; }
.about-cta { padding-top: clamp(3.5rem,6vw,5.5rem); padding-bottom: clamp(3.5rem,6vw,5.5rem); background: #fff; }
.about-cta-inner { display: flex; justify-content: space-between; gap: 2rem; align-items: center; }
.about-cta-inner h2 { max-width: 750px; margin-bottom: 0; }
.privacy-content { max-width: 920px; }
.privacy-content h2 { margin-top: 2.3rem; color: var(--navy); font-size: clamp(1.35rem,2vw,1.7rem); }
.privacy-content p, .privacy-content li { color: #415a69; line-height: 1.75; }
.privacy-content ul { margin: .75rem 0 1.1rem; padding-left: 1.35rem; }
.privacy-content li + li { margin-top: .42rem; }
.legal-summary { margin: 1.6rem 0 2.3rem; padding: 1.25rem 1.4rem; border-left: 4px solid var(--orange); border-radius: 0 10px 10px 0; background: #eef3f6; }
.legal-summary p { margin: 0; }
.legal-updated { color: #6b7e89 !important; }
@media (max-width: 900px) {
  .about-hero-layout, .about-narrative, .about-founder-layout { grid-template-columns: 1fr; }
  .about-hero-visual { min-height: 260px; }
  .about-principles-grid, .about-areas-grid { grid-template-columns: repeat(2,1fr); }
  .about-founder-photo { max-width: 330px; }
  .about-cta-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .about-hero { padding-top: 4.2rem; padding-bottom: 4rem; }
  .about-hero-visual { min-height: 220px; }
  .about-core { width: 92px; height: 92px; font-size: 1.75rem; }
  .about-signal-one { width: 145px; height: 145px; }
  .about-signal-two { width: 200px; height: 200px; }
  .about-signal-three { width: 250px; height: 250px; }
  .about-principles-grid, .about-areas-grid { grid-template-columns: 1fr; }
  .about-founder-photo { max-width: none; }
}


/* Ajustes finais — Sobre, navegação e rodapé */
.expert-actions .button,
.about-founder-copy .button,
.about-hero-actions .button,
.about-cta .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding-inline: 1.4rem;
  border-width: 1px;
  text-decoration: none;
}

.expert-actions .button-primary,
.about-founder-copy .button,
.about-hero-actions .button-primary,
.about-cta .button-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(243, 109, 0, 0.18);
}

.expert-actions .button-primary:hover,
.about-founder-copy .button:hover,
.about-hero-actions .button-primary:hover,
.about-cta .button-primary:hover {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
  color: var(--navy-deep);
}

.about-hero-visual {
  min-height: 380px;
}

.about-brand-symbol {
  position: relative;
  width: min(100%, 470px);
  min-height: 320px;
}

.about-brand-symbol img {
  position: absolute;
  left: 0;
  top: 50%;
  width: clamp(170px, 26vw, 250px);
  height: auto;
  transform: translateY(-50%);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.12));
}

.about-wave-group {
  position: absolute;
  right: 0;
  top: 50%;
  width: clamp(170px, 24vw, 260px);
  height: clamp(170px, 24vw, 260px);
  transform: translateY(-50%);
}

.about-wave {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,255,255,.18);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.about-wave-one { inset: 18px; border-color: rgba(255,255,255,.78); border-left-color: transparent; border-bottom-color: transparent; }
.about-wave-two { inset: -12px; border-color: rgba(243,109,0,.50); border-left-color: transparent; border-bottom-color: transparent; }
.about-wave-three { inset: -42px; border-color: rgba(255,255,255,.24); border-left-color: transparent; border-bottom-color: transparent; }

.footer-copy {
  text-align: center;
}

.footer-brand {
  align-items: center;
}

@media (max-width: 900px) {
  .about-brand-symbol {
    width: min(100%, 360px);
    min-height: 240px;
  }
}
