/* ================================================================
   LEOILSON ROZA — PORTFÓLIO EXECUTIVO
   Identidade: azul-marinho, branco e dourado
   Tipografia: Poppins (títulos) + Inter (textos)
   ================================================================ */

:root {
  --navy-950: #07111d;
  --navy-900: #0d1b2a;
  --navy-800: #13243a;
  --navy-700: #1b263b;
  --blue-gray: #415a77;
  --gold: #c9a227;
  --gold-light: #e0c464;
  --gold-dark: #a78318;
  --white: #ffffff;
  --off-white: #f8f7f3;
  --gray-100: #f1f3f6;
  --gray-200: #e4e8ee;
  --gray-400: #9aa4b2;
  --gray-600: #6b7280;
  --gray-800: #2c3440;
  --text: #17202c;
  --success: #25d366;
  --shadow-sm: 0 8px 24px rgba(13, 27, 42, 0.08);
  --shadow-md: 0 18px 50px rgba(13, 27, 42, 0.13);
  --shadow-gold: 0 14px 34px rgba(201, 162, 39, 0.22);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 82px;
  --transition: 240ms ease;
}

/* ================================================================
   V9 — LAPIDAÇÃO SOLICITADA POR LEOILSON
   ================================================================ */
@media screen {
  :root {
    --container: 1240px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.5rem, 4.45vw, 4.7rem);
  }

  h2 {
    font-size: clamp(1.9rem, 3.1vw, 3.2rem);
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .nav a {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 750px;
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 104px;
  }

  .hero-grid {
    min-height: 560px;
  }

  .hero-content {
    transform: translateY(-20px);
  }

  .hero-photo img {
    object-position: 47% bottom;
  }

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

  .indicator {
    min-height: 146px;
    padding: 26px 20px;
  }

  .indicator:last-child strong {
    font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  }

  .career .section-heading {
    margin-bottom: 38px;
  }

  .timeline {
    max-width: 1080px;
  }

  .timeline-item {
    padding-bottom: 34px;
  }

  .timeline-item div > p:last-child {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .companies {
    padding-top: 70px;
  }

  .company-logo--text span {
    display: block;
    color: var(--navy-800);
    font-family: "Poppins", sans-serif;
    font-size: 0.94rem;
    font-weight: 600;
  }

  .case-chart-slot {
    margin-top: 26px;
  }

  .case-chart-slot .sales-chart {
    margin-top: 0;
  }

  .case-chart-slot .sales-chart svg {
    max-height: 290px;
  }

  .cases-grid {
    align-items: stretch;
  }

  .case-card {
    min-height: 0;
    padding: 32px;
  }

  .education-grid {
    grid-template-columns: minmax(250px, 0.52fr) minmax(0, 1.48fr);
    gap: 58px;
  }

  .education-content {
    min-width: 0;
  }

  .education-group-title {
    margin: 0 0 18px;
    color: var(--navy-800);
    font-size: 1rem;
  }

  .education-group-title:not(:first-child) {
    margin-top: 34px;
  }

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

  .education-list--courses {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .education-list article {
    min-height: 0;
    padding: 24px;
  }

  .beyond {
    padding-top: 82px;
  }
}

@media screen and (max-width: 1080px) {
  .nav a {
    font-size: 0.82rem;
  }

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

@media screen and (max-width: 860px) {
  body {
    font-size: 15px;
  }

  .hero-content {
    transform: none;
  }

  .nav {
    left: 0;
    width: 100%;
    background: rgba(7, 17, 29, 0.985);
  }

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

  .indicator:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .indicator:nth-child(2)::after {
    display: block;
  }

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

@media screen and (max-width: 640px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 38px);
  }

  .hero-photo img {
    object-position: 46% bottom;
  }

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

  .indicator {
    min-height: 112px;
    padding: 18px 14px;
  }

  .indicator::after,
  .indicator:nth-child(2)::after {
    display: none !important;
  }

  .indicator:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
  }

  .education-list--academic,
  .education-list--courses {
    grid-template-columns: 1fr;
  }

  .education-list article {
    padding: 22px;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-900);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2.65rem, 5vw, 5.15rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

p {
  margin-bottom: 20px;
}

::selection {
  background: var(--gold);
  color: var(--navy-950);
}

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

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-kicker,
.eyebrow,
.case-tag,
.education-type {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker,
.eyebrow {
  position: relative;
  margin-bottom: 18px;
  padding-left: 46px;
}

.section-kicker::before,
.eyebrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--gray-600);
  font-size: 1.05rem;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered p {
  margin-right: auto;
  margin-left: auto;
}

.lead {
  color: var(--navy-800);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.65;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy-950);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

/* Botões --------------------------------------------------------- */
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-gold);
  color: var(--navy-950);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ebd273, var(--gold-light));
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
}

/* Cabeçalho ------------------------------------------------------ */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 17, 29, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  height: 70px;
  background: rgba(7, 17, 29, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand-monogram {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.brand-text small {
  max-width: 220px;
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color var(--transition);
}

.nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--white);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav .nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
}

.nav .nav-cta:hover {
  background: var(--gold);
  color: var(--navy-950);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) 0 120px;
  background:
    radial-gradient(circle at 75% 30%, rgba(65, 90, 119, 0.3), transparent 34%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 52%, var(--navy-700) 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -48%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(201, 162, 39, 0.025), 0 0 0 160px rgba(201, 162, 39, 0.018);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 590px;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 64px;
}

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

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  margin-bottom: 18px;
  color: var(--white);
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
}

.title-accent {
  display: block;
  width: 84px;
  height: 3px;
  margin: 0 0 26px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.hero-content > p {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-photo {
  position: relative;
  align-self: end;
  height: 620px;
  margin: 0;
}

.hero-photo::before {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: 3%;
  width: 88%;
  height: 84%;
  border: 1px solid rgba(201, 162, 39, 0.36);
  border-radius: 48% 48% 22px 22px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08), rgba(65, 90, 119, 0.08));
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.28));
}

.hero-decoration {
  position: absolute;
  pointer-events: none;
}

.hero-decoration-dots {
  top: 132px;
  right: 3%;
  width: 190px;
  height: 190px;
  opacity: 0.22;
  background-image: radial-gradient(var(--gold-light) 1.2px, transparent 1.2px);
  background-size: 13px 13px;
  mask-image: linear-gradient(135deg, #000, transparent 75%);
}

.hero-decoration-lines {
  bottom: 7%;
  left: -60px;
  width: 300px;
  height: 160px;
  border: 1px solid rgba(201, 162, 39, 0.14);
  border-radius: 50%;
  transform: rotate(-14deg);
}

/* Indicadores ---------------------------------------------------- */
.indicators {
  position: relative;
  z-index: 5;
  margin-top: -72px;
}

.indicators-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
  grid-template-columns: repeat(4, 1fr);
}

.indicator {
  position: relative;
  min-height: 168px;
  padding: 32px 22px;
  text-align: center;
}

.indicator:not(:last-child)::after {
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: var(--gray-200);
  content: "";
}

.indicator-icon {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 1.45rem;
}

.indicator strong {
  display: block;
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.25;
}

.indicator:last-child strong {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.indicator p {
  margin: 7px 0 0;
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* Quem Sou ------------------------------------------------------- */
.about {
  padding-top: 150px;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.78fr;
  gap: 92px;
}

.section-content > p:not(.lead) {
  max-width: 630px;
  color: var(--gray-600);
}

.about-photo {
  position: relative;
  height: 560px;
  margin: 0;
}

.about-photo::before,
.about-photo::after {
  position: absolute;
  content: "";
}

.about-photo::before {
  z-index: 0;
  top: -20px;
  right: -20px;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: var(--radius-lg);
}

.about-photo::after {
  z-index: 2;
  bottom: -18px;
  left: -18px;
  width: 110px;
  height: 110px;
  opacity: 0.45;
  background-image: radial-gradient(var(--gold) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: var(--gray-200);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center top;
}

/* Pilares -------------------------------------------------------- */
.pillars {
  overflow: hidden;
  background: var(--white);
}

.pillars::before {
  position: absolute;
  top: 10%;
  left: -140px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201, 162, 39, 0.13);
  border-radius: 50%;
  content: "";
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-sm);
  color: rgba(255, 255, 255, 0.72);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pillar-card::after {
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  content: "";
}

.pillar-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.35rem;
}

.pillar-card h3 {
  color: var(--gold-light);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pillar-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Trajetória ----------------------------------------------------- */
.career {
  background: var(--gray-100);
}

.timeline {
  position: relative;
  max-width: 980px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 222px;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(201, 162, 39, 0.15));
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  padding: 0 0 54px;
  grid-template-columns: 190px 1fr;
  gap: 64px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 216px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--gray-100);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
  content: "";
}

.timeline-item time {
  padding-top: 1px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.timeline-item .role {
  margin-bottom: 9px;
  color: var(--blue-gray);
  font-weight: 700;
}

.timeline-item div > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--gray-600);
}

/* Cases ---------------------------------------------------------- */
.cases {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
}

.cases .section-heading h2 {
  color: var(--white);
}

.cases .section-heading p {
  color: rgba(255, 255, 255, 0.65);
}

.cases .section-kicker {
  color: var(--gold-light);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.case-card {
  position: relative;
  display: grid;
  min-height: 280px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  grid-template-columns: auto 1fr;
  gap: 24px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.case-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
}

.case-featured {
  grid-row: span 2;
  min-height: 582px;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.09), transparent 55%),
    rgba(255, 255, 255, 0.045);
}

.case-number {
  color: rgba(201, 162, 39, 0.42);
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.case-tag {
  margin-bottom: 12px;
  color: var(--gold-light);
}

.case-card h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
}

.case-card p {
  margin-bottom: 0;
}

.result-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.result-list li {
  position: relative;
  padding-left: 25px;
}

.result-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-light);
  content: "✓";
  font-weight: 700;
}

/* Especialidades ------------------------------------------------- */
.expertise {
  background: var(--white);
}

.expertise-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 82px;
}

.expertise .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.expertise-list {
  display: grid;
  border-top: 1px solid var(--gray-200);
  grid-template-columns: repeat(2, 1fr);
}

.expertise-list article {
  display: grid;
  min-height: 128px;
  align-items: center;
  padding: 24px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  grid-template-columns: 40px 1fr;
  gap: 12px;
  transition: background var(--transition), color var(--transition);
}

.expertise-list article:nth-child(2n) {
  border-right: 0;
}

.expertise-list article:hover {
  background: var(--navy-900);
}

.expertise-list span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.expertise-list h3 {
  margin: 0;
  font-size: 1rem;
  transition: color var(--transition);
}

.expertise-list article:hover h3 {
  color: var(--white);
}

/* Além da carreira ---------------------------------------------- */
.beyond {
  background: var(--off-white);
}

.beyond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.beyond-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.03), rgba(7, 17, 29, 0.94)),
    linear-gradient(135deg, var(--blue-gray), var(--navy-950));
  box-shadow: var(--shadow-sm);
  color: rgba(255, 255, 255, 0.76);
  transition: transform var(--transition), box-shadow var(--transition);
}

.beyond-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  object-fit: cover;
  object-position: center 22%;
  transition: opacity var(--transition), transform 500ms ease;
}

.beyond-cycling::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0.04) 18%, rgba(7, 17, 29, 0.96) 86%);
  content: "";
}

.beyond-card::before {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 50%;
  content: "";
}

.beyond-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.beyond-card:hover .beyond-photo {
  opacity: 0.82;
  transform: scale(1.035);
}

.beyond-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
}

.beyond-content .card-icon {
  margin-bottom: 18px;
}

.beyond-card h3 {
  color: var(--white);
}

.beyond-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.beyond-cycling {
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.04), rgba(7, 17, 29, 0.96)),
    radial-gradient(circle at 70% 20%, #516d88, var(--navy-950));
}

.beyond-music {
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.04), rgba(7, 17, 29, 0.96)),
    radial-gradient(circle at 70% 20%, #604f28, var(--navy-950));
}

.beyond-reading {
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.04), rgba(7, 17, 29, 0.96)),
    radial-gradient(circle at 70% 20%, #3e5665, var(--navy-950));
}

.beyond-profile {
  position: relative;
  width: min(100%, 760px);
  height: 520px;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--navy-700), var(--navy-950));
  box-shadow: var(--shadow-md);
}

.beyond-profile::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 120px;
  height: 120px;
  opacity: 0.38;
  background-image: radial-gradient(var(--gold) 1.4px, transparent 1.4px);
  background-size: 10px 10px;
  content: "";
}

.beyond-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* Empresas ------------------------------------------------------- */
.companies {
  background: var(--white);
}

.companies-grid {
  display: grid;
  align-items: stretch;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(3, 1fr);
}

.company-logo {
  display: flex;
  min-height: 155px;
  align-items: center;
  justify-content: center;
  padding: 26px 18px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}

.company-logo:nth-child(3n) {
  border-right: 0;
}

.company-logo:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.company-logo img {
  max-width: 145px;
  max-height: 60px;
  filter: grayscale(1);
  opacity: 0.68;
  transition: filter var(--transition), opacity var(--transition), transform var(--transition);
}

.company-logo--bridgestone img {
  width: min(100%, 190px);
  max-width: 190px;
  max-height: 54px;
}

.company-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.company-logo span {
  display: none;
  color: var(--navy-800);
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.company-logo.image-missing img {
  display: none;
}

.company-logo.image-missing span {
  display: block;
}

/* Formação ------------------------------------------------------- */
.education {
  background: var(--gray-100);
}

.education-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 82px;
}

.education .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.education-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.education-list article {
  min-height: 170px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(13, 27, 42, 0.04);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.education-list article:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.education-type {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.67rem;
}

.education-list h3 {
  margin-bottom: 7px;
  font-size: 1.03rem;
}

.education-list p {
  margin-bottom: 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Contato -------------------------------------------------------- */
.contact {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(65, 90, 119, 0.32), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: rgba(255, 255, 255, 0.74);
}

.contact::before {
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201, 162, 39, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(201, 162, 39, 0.025), 0 0 0 140px rgba(201, 162, 39, 0.018);
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.82fr;
  gap: 80px;
}

.contact .section-kicker {
  color: var(--gold-light);
}

.contact h2 {
  max-width: 700px;
  color: var(--white);
}

.contact-content > p {
  max-width: 610px;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: grid;
  padding: 12px 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  font-style: normal;
  backdrop-filter: blur(10px);
}

.contact-card a {
  display: grid;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  grid-template-columns: 42px 1fr;
  gap: 13px;
  transition: color var(--transition), transform var(--transition);
}

.contact-card a:last-child {
  border-bottom: 0;
}

.contact-card a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.contact-card a > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 700;
}

.contact-card .contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-card div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-card small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 600;
}

/* Rodapé --------------------------------------------------------- */
.footer {
  padding: 60px 0 24px;
  background: #050c14;
  color: rgba(255, 255, 255, 0.58);
}

.footer-grid {
  display: grid;
  align-items: start;
  padding-bottom: 42px;
  grid-template-columns: 1fr auto;
  gap: 70px;
}

.brand-footer {
  margin-bottom: 24px;
}

.footer blockquote {
  max-width: 470px;
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  font-style: italic;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 36px;
}

.footer-nav a {
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp:hover {
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.35);
  transform: translateY(-4px) scale(1.04);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.noscript {
  position: fixed;
  z-index: 2000;
  right: 12px;
  bottom: 12px;
  left: 12px;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: #fff3cd;
  color: #594900;
  text-align: center;
}

/* Animações controladas pelo script.js -------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsividade ------------------------------------------------- */
@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

  .nav {
    gap: 17px;
  }

  .nav a {
    font-size: 0.78rem;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
  }

  .hero-photo {
    height: 550px;
  }

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

  .pillar-card {
    min-height: 250px;
  }

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

@media (max-width: 860px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(82vw, 360px);
    align-items: stretch;
    justify-content: flex-start;
    padding: 34px 28px;
    background: rgba(7, 17, 29, 0.99);
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.28);
    flex-direction: column;
    gap: 0;
    transform: translateX(105%);
    transition: transform 300ms ease;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
  }

  .nav .nav-cta {
    margin-top: 20px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--gold);
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-bottom: 110px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .hero-photo {
    width: min(100%, 540px);
    height: 520px;
    margin-inline: auto;
  }

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

  .indicator:nth-child(2)::after {
    display: none;
  }

  .indicator:nth-child(-n + 2) {
    border-bottom: 1px solid var(--gray-200);
  }

  .about-grid,
  .expertise-grid,
  .education-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-photo {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .expertise .section-heading,
  .education .section-heading {
    position: static;
  }

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

  .case-featured {
    min-height: 430px;
    grid-row: auto;
  }

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

  .beyond-card {
    min-height: 290px;
  }

  .beyond-profile {
    height: 460px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

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

  .section {
    padding: 72px 0;
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .brand-text small {
    max-width: 180px;
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .brand-monogram {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 46px);
  }

  .hero h1 em {
    display: inline;
  }

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

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

  .hero-photo {
    height: 420px;
  }

  .indicators {
    margin-top: -50px;
  }

  .indicator {
    min-height: 145px;
    padding: 24px 13px;
  }

  .indicator p {
    font-size: 0.66rem;
  }

  .about {
    padding-top: 110px;
  }

  .about-photo {
    height: 450px;
  }

  .pillars-grid,
  .expertise-list,
  .education-list {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: auto;
  }

  .expertise-list article {
    border-right: 0;
  }

  .timeline::before {
    left: 7px;
  }

  .timeline-item {
    padding: 0 0 44px 38px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-item::before {
    top: 5px;
    left: 1px;
  }

  .timeline-item time {
    text-align: left;
  }

  .case-card {
    min-height: 0;
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-featured {
    min-height: 0;
  }

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

  .company-logo,
  .company-logo:nth-child(3) {
    min-height: 125px;
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
  }

  .company-logo:nth-child(2n) {
    border-right: 0;
  }

  .company-logo:last-child {
    border-bottom: 0;
  }

  .company-logo:nth-last-child(2) {
    border-bottom: 0;
  }

  .beyond-profile {
    height: 420px;
  }

  .contact-card {
    padding: 8px 20px;
  }

  .contact-card a {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .contact-card strong {
    font-size: 0.82rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

/* Lapidação final ------------------------------------------------ */
section[id] {
  scroll-margin-top: 104px;
}

.brand-monogram {
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.brand-monogram circle {
  fill: rgba(7, 17, 29, 0.72);
  stroke: rgba(214, 173, 47, 0.95);
  stroke-width: 1.6;
}

.brand-monogram path {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 40% 40% 24px 24px;
  background: linear-gradient(180deg, rgba(238, 231, 229, 0.08), rgba(7, 17, 29, 0));
}

.hero-photo img {
  width: 100%;
  height: 100%;
  border-radius: 40% 40% 18px 18px;
  object-fit: cover;
  object-position: 50% 60%;
  transform: scale(1.18);
  transform-origin: center;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
}

.about {
  padding-top: 118px;
}

.about-grid-refined {
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: 76px;
}

.about-summary {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-md);
  color: rgba(255, 255, 255, 0.75);
}

.about-summary::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  content: "";
}

.about-summary-label {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-summary > strong {
  display: block;
  margin-bottom: 30px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.35;
}

.about-summary > strong span {
  color: var(--gold-light);
}

.about-summary-list {
  display: grid;
  gap: 0;
}

.about-summary-list p {
  display: grid;
  margin: 0;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 42px 1fr;
  gap: 8px;
}

.about-summary-list span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
}

.sales-chart {
  margin: 30px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sales-chart figcaption {
  display: grid;
  margin-bottom: 12px;
  gap: 3px;
}

.sales-chart figcaption strong {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.sales-chart figcaption span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.67rem;
}

.sales-chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-grid line {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.chart-axis text,
.chart-years text {
  fill: rgba(255, 255, 255, 0.55);
  font: 500 13px "Inter", sans-serif;
  text-anchor: end;
}

.chart-years text {
  text-anchor: middle;
}

.chart-area {
  fill: url(#chartArea);
}

.chart-line {
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.chart-points circle {
  fill: var(--white);
  stroke: var(--gold-light);
  stroke-width: 4;
}

.chart-values text {
  fill: var(--white);
  font: 700 14px "Inter", sans-serif;
  text-anchor: middle;
}

.chart-event line {
  stroke: rgba(224, 196, 100, 0.72);
  stroke-dasharray: 4 5;
}

.chart-event rect {
  fill: #15283b;
  stroke: rgba(224, 196, 100, 0.7);
}

.chart-event text {
  fill: var(--gold-light);
  font: 700 11px "Inter", sans-serif;
  letter-spacing: 0.06em;
  text-anchor: middle;
}

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

.case-card,
.case-featured {
  min-height: 570px;
  align-content: start;
  grid-row: auto;
  grid-template-columns: 1fr;
  gap: 18px;
}

.case-card h3 {
  font-size: clamp(1.25rem, 1.55vw, 1.62rem);
}

.expertise-list {
  align-items: start;
}

.expertise-list .expertise-item {
  display: block;
  min-height: 0;
  padding: 0;
}

.expertise-item button {
  display: grid;
  width: 100%;
  min-height: 126px;
  align-items: center;
  padding: 24px;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font: inherit;
  grid-template-columns: 40px minmax(0, 1fr) 24px;
  gap: 12px;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.expertise-item button strong {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.expertise-item button i {
  color: var(--gold-dark);
  font-size: 1.25rem;
  font-style: normal;
  transition: transform var(--transition);
}

.expertise-item:hover button,
.expertise-item.is-open button,
.expertise-item button:focus-visible {
  background: var(--navy-900);
  color: var(--white);
}

.expertise-item.is-open button i {
  transform: rotate(45deg);
}

.expertise-item > p {
  margin: 0;
  padding: 0 24px 24px 76px;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.7;
}

.expertise-item > p[hidden] {
  display: none;
}

.beyond-feature {
  display: grid;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-md);
  color: rgba(255, 255, 255, 0.72);
  grid-template-columns: 0.9fr 1.15fr 0.9fr;
}

.beyond-cycling-photo,
.beyond-casual-photo {
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.beyond-cycling-photo img,
.beyond-casual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.beyond-cycling-photo img {
  object-position: center 12%;
}

.beyond-casual-photo img {
  object-position: center 18%;
}

.beyond-feature:hover figure img {
  transform: scale(1.025);
}

.beyond-feature-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 42px;
  flex-direction: column;
}

.beyond-feature-content .card-icon {
  margin-bottom: 22px;
}

.beyond-feature-content .section-kicker {
  color: var(--gold-light);
}

.beyond-feature-content h3 {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.curiosity-note {
  margin-top: 20px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.curiosity-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.curiosity-note p {
  margin: 0;
  font-size: 0.86rem;
}

.company-logo span {
  font-size: 0.94rem;
  line-height: 1.45;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

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

  .case-card,
  .case-featured {
    min-height: 0;
  }

  .case-card:last-child {
    grid-column: 1 / -1;
  }

  .beyond-feature {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .beyond-casual-photo {
    display: none;
  }
}

@media (max-width: 860px) {
  section[id] {
    scroll-margin-top: 88px;
  }

  .about-grid-refined,
  .cases-grid,
  .beyond-feature {
    grid-template-columns: 1fr;
  }

  .case-card:last-child {
    grid-column: auto;
  }

  .beyond-cycling-photo {
    height: 440px;
  }

  .beyond-casual-photo {
    display: block;
    height: 440px;
  }
}

@media (max-width: 640px) {
  .about-summary {
    padding: 30px 24px;
  }

  .expertise-item button {
    min-height: 94px;
    padding: 20px;
  }

  .expertise-item > p {
    padding: 0 20px 22px 60px;
  }

  .beyond-cycling-photo,
  .beyond-casual-photo {
    height: 360px;
  }

  .beyond-feature-content {
    padding: 34px 24px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .header,
  .floating-whatsapp,
  .hero-actions,
  .contact-actions {
    display: none !important;
  }

  .hero,
  .cases,
  .contact,
  .footer {
    background: var(--white) !important;
    color: var(--text) !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero h1,
  .hero h1 em,
  .cases h2,
  .case-card h3,
  .contact h2 {
    color: var(--navy-900) !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* V9 — ajustes finais (mantidos ao fim para prevalecer sobre a base) */
@media screen {
  :root { --container: 1240px; }
  body { font-size: 15px; }
  h1 { font-size: clamp(2.5rem, 4.45vw, 4.7rem); }
  h2 { font-size: clamp(1.9rem, 3.1vw, 3.2rem); }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .nav a { font-size: 0.9rem; }
  .hero { min-height: 750px; padding-top: calc(var(--header-height) + 54px); padding-bottom: 104px; }
  .hero-grid { min-height: 560px; }
  .hero-content { transform: translateY(-20px); }
  .hero-photo img { object-position: 47% bottom; }
  .indicators-grid { grid-template-columns: repeat(3, 1fr); }
  .indicator { min-height: 146px; padding: 26px 20px; }
  .indicator:last-child strong { font-size: clamp(1.2rem, 1.8vw, 1.65rem); }
  .career .section-heading { margin-bottom: 38px; }
  .timeline { max-width: 1080px; }
  .timeline-item { padding-bottom: 34px; }
  .timeline-item div > p:last-child { font-size: 0.92rem; line-height: 1.6; }
  .companies { padding-top: 70px; }
  .company-logo--text span { display: block; color: var(--navy-800); font-family: "Poppins", sans-serif; font-size: 0.94rem; font-weight: 600; }
  .case-chart-slot { margin-top: 26px; }
  .case-chart-slot .sales-chart { margin-top: 0; }
  .case-chart-slot .sales-chart svg { max-height: 290px; }
  .cases-grid { align-items: stretch; }
  .case-card, .case-featured { min-height: 0; padding: 32px; }
  .education-grid { grid-template-columns: minmax(250px, 0.52fr) minmax(0, 1.48fr); gap: 58px; }
  .education-content { min-width: 0; }
  .education-group-title { margin: 0 0 18px; color: var(--navy-800); font-size: 1rem; }
  .education-group-title:not(:first-child) { margin-top: 34px; }
  .education-list--academic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .education-list--courses { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .education-list article { min-height: 0; padding: 24px; }
  .beyond { padding-top: 82px; }
}

@media screen and (max-width: 1080px) {
  .nav a { font-size: 0.82rem; }
  .education-list--courses { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media screen and (max-width: 860px) {
  .hero-content { transform: none; }
  .nav { left: 0; width: 100%; background: rgba(7, 17, 29, 0.985); }
  .indicators-grid { grid-template-columns: repeat(3, 1fr); }
  .indicator:nth-child(-n + 2) { border-bottom: 0; }
  .indicator:nth-child(2)::after { display: block; }
  .education-grid { grid-template-columns: 1fr; }
}

@media screen and (max-width: 640px) {
  .section { padding-top: 64px; padding-bottom: 64px; }
  .hero { padding-top: calc(var(--header-height) + 38px); }
  .hero-photo img { object-position: 46% bottom; }
  .indicators-grid { grid-template-columns: 1fr; }
  .indicator { min-height: 112px; padding: 18px 14px; }
  .indicator::after, .indicator:nth-child(2)::after { display: none !important; }
  .indicator:not(:last-child) { border-bottom: 1px solid var(--gray-200); }
  .education-list--academic, .education-list--courses { grid-template-columns: 1fr; }
  .education-list article { padding: 22px; }
}

/* V10 — bloco 01 com fotografia original e mockup reduzido */
@media screen {
  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(350px, 0.82fr);
    gap: 58px;
  }

  .hero-photo {
    width: min(88%, 430px);
    height: 540px;
    margin-right: auto;
    margin-left: auto;
    align-self: center;
    border-radius: 42% 42% 22px 22px;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-photo::before {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }

  .hero-photo img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    object-position: 52% 46%;
    filter: none;
  }
}

@media screen and (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 34px;
  }

  .hero-photo {
    width: min(88%, 390px);
    height: 500px;
  }
}

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

  .hero-photo {
    width: min(82vw, 390px);
    height: 500px;
  }
}

@media screen and (max-width: 640px) {
  .hero-photo {
    width: min(86vw, 340px);
    height: 438px;
  }

  .hero-photo img {
    object-position: 52% 44%;
  }
}

/* V11 — mockup 10% menor e enquadramento 15% mais aberto */
@media screen {
  .hero-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  }

  .hero-photo {
    width: min(82%, 360px);
    height: 486px;
    background: #e6dfdd;
  }

  .hero-photo img {
    width: 102%;
    max-width: none;
    height: 102%;
    object-fit: cover;
    object-position: center 45%;
    transform: translateX(-2.5%);
  }
}

@media screen and (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  }

  .hero-photo {
    width: min(82%, 338px);
    height: 450px;
  }
}

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

  .hero-photo {
    width: min(76vw, 338px);
    height: 450px;
  }
}

@media screen and (max-width: 640px) {
  .hero-photo {
    width: min(78vw, 304px);
    height: 394px;
  }

  .hero-photo img {
    object-position: center 44%;
  }
}

/* V12 — janela do mockup compactada sem ampliar Leoilson */
@media screen {
  .hero-photo {
    position: relative;
    width: 326px;
    height: 418px;
    max-width: 100%;
  }

  .hero-photo img {
    position: absolute;
    top: -38px;
    left: 50%;
    width: 367px;
    max-width: none;
    height: 496px;
    object-fit: cover;
    object-position: center 45%;
    transform: translateX(-52.5%);
  }
}

@media screen and (max-width: 1080px) {
  .hero-photo {
    width: 306px;
    height: 387px;
  }

  .hero-photo img {
    top: -35px;
    width: 345px;
    height: 459px;
  }
}

@media screen and (max-width: 860px) {
  .hero-photo {
    width: min(72vw, 306px);
    height: 387px;
  }
}

@media screen and (max-width: 640px) {
  .hero-photo {
    width: min(72vw, 276px);
    height: 339px;
  }

  .hero-photo img {
    top: -30px;
    width: 310px;
    height: 402px;
    object-position: center 44%;
  }
}

/* V13 — composição horizontal do bloco 01 centralizada */
@media screen {
  .container.hero-grid {
    width: min(calc(100% - 112px), 1120px);
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: minmax(0, 1.18fr) minmax(326px, 0.82fr);
    gap: 34px;
  }

  .hero-content {
    justify-self: end;
    width: 100%;
    max-width: 650px;
  }

  .hero-photo {
    justify-self: start;
  }
}

@media screen and (max-width: 1080px) {
  .container.hero-grid {
    width: min(calc(100% - 72px), 980px);
    grid-template-columns: minmax(0, 1.14fr) minmax(306px, 0.86fr);
    gap: 28px;
  }
}

@media screen and (max-width: 860px) {
  .container.hero-grid {
    width: min(calc(100% - 48px), 760px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-content,
  .hero-photo {
    justify-self: center;
  }
}

@media screen and (max-width: 640px) {
  .container.hero-grid {
    width: min(calc(100% - 32px), 560px);
    gap: 30px;
  }
}

/* V14 — lapidação consolidada após retorno de Leoilson */
@media screen {
  .hero {
    padding-bottom: 92px;
  }

  .indicators {
    margin-top: -64px;
  }

  .indicators-grid {
    width: min(calc(100% - 96px), 1120px);
  }

  .about {
    padding-top: 104px;
  }

  .case-chart-featured {
    display: grid;
    align-items: center;
    margin-bottom: 28px;
    padding: 36px;
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(255, 255, 255, 0.045));
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: 42px;
  }

  .case-chart-copy h3 {
    color: var(--white);
    font-size: clamp(1.45rem, 2vw, 2rem);
  }

  .case-chart-copy p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
  }

  .case-chart-featured .case-chart-slot {
    margin-top: 0;
  }

  .case-chart-featured .sales-chart {
    margin: 0;
    padding-top: 0;
    border-top: 0;
  }

  .company-logo--text span {
    transition: color var(--transition), transform var(--transition), text-shadow var(--transition);
  }

  .company-logo--text:hover span {
    color: var(--gold-dark);
    transform: scale(1.045);
  }

  .company-logo--bourbon .bourbon-wordmark {
    display: flex;
    align-items: center;
    color: #9a721f;
    flex-direction: column;
    line-height: 0.95;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 3px 8px rgba(91, 61, 15, 0.15);
  }

  .bourbon-wordmark strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 700;
  }

  .bourbon-wordmark small {
    margin-top: 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }
}

@media screen and (max-width: 860px) {
  .indicators-grid {
    width: min(calc(100% - 48px), 760px);
  }

  .case-chart-featured {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media screen and (max-width: 640px) {
  .hero {
    padding-bottom: 78px;
  }

  .indicators {
    margin-top: -48px;
  }

  .indicators-grid {
    width: min(calc(100% - 32px), 560px);
  }

  .case-chart-featured {
    padding: 26px 22px;
  }
}
