
:root {
  --deep: #142235;
  --deep-2: #0d1928;
  --ice: #edf4f8;
  --paper: #f7f3ed;
  --white: #ffffff;
  --ink: #1c2a38;
  --muted: #637382;
  --cyan: #159ac3;
  --cyan-soft: #d8eef5;
  --copper: #b8754f;
  --line: rgba(20, 34, 53, 0.14);
  --shadow: 0 22px 70px rgba(12, 27, 42, 0.13);
  --radius-lg: 28px;
  --radius-md: 20px;
  --shell: min(1180px, calc(100vw - 96px));
}

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

html {
  scroll-behavior: smooth;
  background: var(--deep);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ice);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--deep);
  background: var(--white);
  border-radius: 999px;
  font-weight: 700;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 0;
  overflow: clip;
}

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

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

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

.section-deep,
.section-contact {
  color: var(--white);
  background: var(--deep);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow-cyan {
  color: #6ed1ef;
}

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

h1,
h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 8.3vw, 8.2rem);
}

h2 {
  max-width: 820px;
  margin-bottom: 34px;
  font-size: clamp(2.7rem, 5.3vw, 5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.lead {
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.45;
}

.section-deep .lead,
.section-contact .lead {
  color: var(--white);
}

.section-heading {
  margin-bottom: 68px;
}

.section-heading-row,
.blog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 58px;
}

.section-note {
  max-width: 420px;
  margin-bottom: 26px;
  color: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: var(--deep);
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 50%;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 20, 31, 0.03) 15%, rgba(9, 20, 31, 0.14) 52%, rgba(9, 20, 31, 0.68) 100%),
    linear-gradient(0deg, rgba(6, 15, 24, 0.30) 0%, transparent 35%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: max(8vw, 84px);
  width: min(610px, 42vw);
  transform: translateY(-48%);
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.38);
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.84rem, 1.08vw, 1.02rem);
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1.72;
  text-transform: uppercase;
}

.hero-scroll {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  left: max(4vw, 30px);
  bottom: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* Floating navigation */
.floating-nav {
  position: fixed;
  z-index: 50;
  top: 50%;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 46px;
  padding: 12px 8px;
  transform: translateY(-50%);
  background: rgba(20, 34, 53, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(7, 18, 30, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-item {
  position: relative;
  display: grid;
  width: 30px;
  min-height: 30px;
  place-items: center;
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
}

.nav-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-item.is-active .nav-dot {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 5px rgba(21, 154, 195, 0.17);
  transform: scale(1.18);
}

.nav-label {
  position: absolute;
  right: 42px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(20, 34, 53, 0.96);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(7, 18, 30, 0.22);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.nav-item:hover .nav-label,
.nav-item:focus-visible .nav-label {
  opacity: 1;
  transform: translateX(0);
}

/* About */
.about-layout {
  display: flex;
  flex-direction: column;
}

.about-copy {
  max-width: 940px;
}

.about-copy > p:not(.lead) {
  color: var(--muted);
}

.interest-orbit-wrap {
  display: grid;
  width: 100%;
  margin: clamp(60px, 8vw, 104px) 0;
  place-items: center;
}

.about-copy a {
  color: var(--deep);
  font-weight: 750;
  text-decoration-color: rgba(21, 154, 195, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.about-copy a:hover,
.about-copy a:focus-visible {
  color: var(--cyan);
  text-decoration-color: currentColor;
}

.photo-collage {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 18px;
  min-height: 560px;
}

.photo-tall {
  grid-row: 1 / 3;
}


.photo-card {
  position: relative;
  min-height: 250px;
  margin: 0;
  background: var(--deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.photo-card picture,
.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo-card img {
  object-fit: cover;
}

.photo-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 17, 27, 0.76) 0%, rgba(7, 17, 27, 0.08) 54%, transparent 72%);
}

.photo-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 28px;
  color: var(--white);
}

.photo-card figcaption span {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.photo-card figcaption small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
  line-height: 1.4;
}

.photo-music img {
  object-position: 50% 50%;
}

.photo-travel img {
  object-position: 50% 51%;
}

.photo-shared img {
  object-position: 48% 43%;
}

.photo-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 250px;
  padding: 28px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(21, 154, 195, 0.14), rgba(237, 244, 248, 0.68)),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(20, 34, 53, 0.035) 14px 15px);
  border: 1px dashed rgba(20, 34, 53, 0.34);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 58px;
  height: 44px;
  border: 1px solid rgba(20, 34, 53, 0.21);
  border-radius: 10px;
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  top: 42px;
  right: 43px;
  width: 28px;
  height: 16px;
  border-right: 1px solid rgba(20, 34, 53, 0.21);
  border-bottom: 1px solid rgba(20, 34, 53, 0.21);
  transform: skewX(-34deg) rotate(-18deg);
}

.photo-placeholder strong,
.photo-placeholder small,
.photo-number {
  position: relative;
  z-index: 1;
}

.photo-placeholder strong {
  max-width: 320px;
  margin-bottom: 6px;
  font-size: 1rem;
}

.photo-placeholder small {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.45;
}

.photo-number {
  margin-bottom: auto;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.photo-warm {
  background:
    linear-gradient(135deg, rgba(184, 117, 79, 0.18), rgba(247, 243, 237, 0.7)),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(20, 34, 53, 0.035) 14px 15px);
}

.photo-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 154, 195, 0.25), rgba(13, 25, 40, 0.80)),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(255, 255, 255, 0.04) 14px 15px);
  border-color: rgba(255, 255, 255, 0.27);
}

.photo-dark small {
  color: rgba(255, 255, 255, 0.70);
}

.photo-dark::before,
.photo-dark::after {
  border-color: rgba(255, 255, 255, 0.23);
}

.interest-orbit {
  position: relative;
  width: min(76vw, 480px);
  aspect-ratio: 1;
  margin: 0;
  border: 1px solid rgba(20, 34, 53, 0.12);
  border-radius: 50%;
}

.interest-orbit::before,
.interest-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(20, 34, 53, 0.07);
  border-radius: 50%;
}

.interest-orbit::before {
  inset: 15%;
}

.interest-orbit::after {
  inset: 31%;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  color: var(--deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.1;
  text-align: center;
  transform: translate(-50%, -50%);
}

.orbit-word {
  position: absolute;
  color: var(--muted);
  font-size: clamp(0.68rem, 1.2vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.word-travel { top: 5%; left: 39%; color: var(--cyan); }
.word-nature { top: 18%; right: 2%; }
.word-music { top: 47%; right: -2%; color: var(--copper); }
.word-books { right: 9%; bottom: 13%; }
.word-history { left: 37%; bottom: 3%; }
.word-languages { left: 2%; bottom: 19%; color: var(--cyan); }
.word-tech { top: 45%; left: -4%; }
.word-cinema { top: 15%; left: 3%; }


/* Trajetória */
.trajectory-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  grid-template-areas:
    "copy photo"
    "copy quote"
    "card card";
  column-gap: clamp(58px, 8vw, 112px);
  row-gap: 26px;
  align-items: start;
}

.trajectory-copy {
  grid-area: copy;
}

.trajectory-photo {
  grid-area: photo;
}

.trajectory-quote {
  grid-area: quote;
}

.professional-card {
  grid-area: card;
  justify-self: center;
  width: min(720px, 100%);
}

.trajectory-copy > p:not(.lead) {
  color: var(--muted);
}

.trajectory-quote {
  position: relative;
  margin: 0;
  padding: 28px 30px 28px 34px;
  background: rgba(184, 117, 79, 0.08);
  border-left: 3px solid var(--copper);
  border-radius: 0 18px 18px 0;
}

.trajectory-quote p {
  margin-bottom: 16px;
  color: var(--deep);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.35rem, 2.15vw, 1.9rem);
  line-height: 1.4;
}

.trajectory-quote cite {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.professional-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 24px 26px;
  color: var(--deep);
  background: var(--ice);
  border: 1px solid rgba(20, 34, 53, 0.10);
  border-radius: 20px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.professional-card:hover,
.professional-card:focus-visible {
  border-color: rgba(21, 154, 195, 0.32);
  box-shadow: 0 16px 38px rgba(12, 27, 42, 0.10);
  transform: translateY(-2px);
}

.professional-card-title {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.professional-card-copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.professional-card-url {
  margin-top: 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trajectory-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 2;
  background: var(--deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trajectory-photo picture,
.trajectory-photo img {
  width: 100%;
  height: 100%;
}

.trajectory-photo img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.trajectory-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(7, 17, 27, 0.62), transparent);
  pointer-events: none;
}

.trajectory-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Shared split sections */
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(430px, 1.08fr) minmax(0, 0.92fr);
}

.split-copy p:not(.lead) {
  color: var(--muted);
}

.split-copy-light p:not(.lead) {
  color: rgba(255, 255, 255, 0.68);
}

.photo-landscape {
  min-height: 470px;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  padding-bottom: 4px;
  color: var(--deep);
  border-bottom: 1px solid rgba(20, 34, 53, 0.28);
  font-weight: 800;
  text-decoration: none;
}

.text-link-light {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.35);
}



/* Compartilhar conhecimento */
.knowledge-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.04fr) minmax(0, 0.96fr);
  grid-template-areas: "photo copy";
  gap: clamp(58px, 8vw, 112px);
  align-items: center;
}

.knowledge-copy {
  grid-area: copy;
}

.knowledge-copy > p:not(.lead) {
  color: rgba(255, 255, 255, 0.70);
}

.knowledge-photo {
  position: relative;
  grid-area: photo;
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(4, 12, 21, 0.32);
  overflow: hidden;
}

.knowledge-photo picture,
.knowledge-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.knowledge-photo img {
  object-fit: cover;
  object-position: center center;
}

.knowledge-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 25%;
  background: linear-gradient(0deg, rgba(7, 17, 27, 0.72), transparent);
  pointer-events: none;
}

.knowledge-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.mentor-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 34px;
  padding: 24px 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mentor-card:hover,
.mentor-card:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(110, 209, 239, 0.44);
  transform: translateY(-2px);
}

.mentor-card-title {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.mentor-card-copy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.mentor-card-url {
  margin-top: 8px;
  color: #6ed1ef;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Faixa editorial de viagem */
.travel-band {
  position: relative;
  min-height: clamp(500px, 64vh, 720px);
  color: var(--white);
  background: var(--deep);
  isolation: isolate;
  overflow: hidden;
}

.travel-band-media,
.travel-band-media img,
.travel-band-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.travel-band-media img {
  object-fit: cover;
  object-position: center center;
}

.travel-band-shade {
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(7, 18, 29, 0.04) 0%,
      rgba(7, 18, 29, 0.08) 42%,
      rgba(7, 18, 29, 0.72) 72%,
      rgba(7, 18, 29, 0.88) 100%),
    linear-gradient(0deg, rgba(7, 18, 29, 0.26), transparent 42%);
}

.travel-band-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: max(8vw, 76px);
  width: min(520px, 37vw);
  transform: translateY(-50%);
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.34);
}

.travel-band blockquote {
  margin: 0 0 30px;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(2.25rem, 4.1vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.travel-band-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}



.blog-photo {
  position: relative;
  margin: 0 0 38px;
  aspect-ratio: 3 / 2;
  background: var(--deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.blog-photo picture,
.blog-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-photo img {
  object-fit: cover;
  object-position: center 52%;
}

.blog-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(0deg, rgba(7, 17, 27, 0.56), transparent);
  pointer-events: none;
}

.blog-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 22px;
  left: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* Blog */
.blog-heading .lead {
  align-self: end;
  max-width: 440px;
  margin-bottom: 28px;
}

.photo-banner {
  min-height: 420px;
  margin-bottom: 38px;
  box-shadow: var(--shadow);
}

.blog-footer {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: space-between;
}

.blog-footer p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.button-outline {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
  padding: 13px 18px;
  color: var(--deep);
  border: 1px solid rgba(20, 34, 53, 0.22);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

/* Participation cards */
.participation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.participation-card {
  padding: 14px 14px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 34, 53, 0.08);
  border-radius: 24px;
}

.participation-card > p,
.participation-card > h3 {
  margin-inline: 12px;
}

.participation-card > p:last-child {
  color: var(--muted);
}

.participation-image {
  min-height: 230px;
  margin-bottom: 22px;
  padding: 20px;
  border-radius: 16px;
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Blog final */
.blog-heading-final {
  display: block;
  margin-bottom: 46px;
}

.blog-copy {
  max-width: 900px;
  margin-bottom: 58px;
}

.blog-copy > p:not(.lead) {
  color: var(--muted);
}

.blog-copy strong {
  color: var(--deep);
}

.blog-closing-quote {
  max-width: 760px;
  margin: 40px 0 0;
  padding: 25px 30px;
  color: var(--deep);
  background: rgba(184, 117, 79, 0.09);
  border-left: 3px solid var(--copper);
  border-radius: 0 18px 18px 0;
}

.blog-closing-quote p {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.35;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: min(720px, 100%);
  margin: 42px auto 0;
  padding: 24px 26px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 34, 53, 0.12);
  border-radius: 20px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(21, 154, 195, 0.34);
  box-shadow: 0 16px 38px rgba(12, 27, 42, 0.10);
  transform: translateY(-2px);
}

.blog-card-title {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.blog-card-copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-card-url {
  margin-top: 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Pegadas pelo mundo */
.travel-heading {
  margin-bottom: 42px;
}

.travel-heading h2 {
  max-width: 980px;
}

.travel-intro {
  max-width: 920px;
}

.travel-intro > p:not(.lead) {
  color: var(--muted);
}

.oberyn-quote {
  max-width: 850px;
  margin: 54px 0 70px;
  padding: 28px 32px 28px 36px;
  color: var(--deep);
  background: rgba(21, 154, 195, 0.07);
  border-left: 3px solid var(--cyan);
  border-radius: 0 20px 20px 0;
}

.oberyn-quote p {
  margin-bottom: 16px;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.45rem, 2.55vw, 2.25rem);
  line-height: 1.35;
}

.oberyn-quote cite {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.travel-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 18px;
}

.travel-tile {
  position: relative;
  margin: 0;
  background: var(--deep);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(12, 27, 42, 0.12);
  overflow: hidden;
}

.travel-tile picture,
.travel-tile img {
  display: block;
  width: 100%;
  height: 100%;
}

.travel-tile img {
  object-fit: cover;
  transition: transform 360ms ease;
}

.travel-tile:hover img {
  transform: scale(1.025);
}

.travel-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(7, 17, 27, 0.78), transparent);
  pointer-events: none;
}

.travel-tile figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 17px;
  left: 20px;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
}

.travel-tile figcaption span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.travel-tile figcaption small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.tile-noronha {
  grid-column: 1 / 8;
  grid-row: span 2;
}

.tile-waterfall {
  grid-column: 8 / 13;
  grid-row: span 2;
}

.tile-butao {
  grid-column: 1 / 5;
}

.tile-shanghai {
  grid-column: 5 / 9;
}

.tile-golden {
  grid-column: 9 / 13;
}

.tile-coliseum {
  grid-column: 1 / 13;
  grid-row: span 2;
}

.tile-noronha img {
  object-position: center center;
}

.tile-waterfall img {
  object-position: center 38%;
}

.tile-butao img {
  object-position: center center;
}

.tile-shanghai img {
  object-position: center center;
}

.tile-golden img {
  object-position: center center;
}

.tile-coliseum img {
  object-position: center 48%;
}

.album-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: min(760px, 100%);
  margin: 52px auto 0;
  padding: 25px 28px;
  color: var(--deep);
  background: var(--white);
  border: 1px solid rgba(20, 34, 53, 0.11);
  border-radius: 20px;
  text-align: center;
}

.album-card-title {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.album-card-copy {
  color: var(--muted);
  font-size: 0.92rem;
}

.album-card-url {
  margin-top: 8px;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.album-card {
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.album-card:hover,
.album-card:focus-visible {
  border-color: rgba(21, 154, 195, 0.34);
  box-shadow: 0 16px 38px rgba(12, 27, 42, 0.10);
  transform: translateY(-2px);
}

/* Contact */
.section-contact {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(21, 154, 195, 0.14), transparent 32%),
    var(--deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  gap: clamp(58px, 9vw, 130px);
  align-items: start;
}

.contact-layout h2 {
  max-width: 760px;
}

.contact-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-link {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 750;
  text-decoration: none;
}

.contact-link small {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 500;
}

.contact-disabled {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  width: var(--shell);
  margin: 95px auto 0;
  padding: 26px 0 32px;
  color: rgba(255, 255, 255, 0.50);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a:focus-visible {
  outline: 3px solid rgba(21, 154, 195, 0.48);
  outline-offset: 4px;
}

/* Tablet */
@media (max-width: 980px) {
  :root {
    --shell: min(100% - 54px, 820px);
  }

  .hero-content {
    right: 7vw;
    width: 48vw;
  }

  .travel-band-content {
    right: 7vw;
    width: 42vw;
  }

  .trajectory-layout,
  .knowledge-layout,
  .split-layout,
  .split-reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .trajectory-layout {
    grid-template-areas:
      "copy"
      "quote"
      "card"
      "photo";
  }

  .professional-card {
    justify-self: stretch;
    width: 100%;
  }

  .trajectory-photo {
    width: min(100%, 760px);
  }

  .knowledge-layout {
    grid-template-areas:
      "copy"
      "photo";
  }

  .knowledge-photo {
    width: min(100%, 720px);
  }

  .photo-collage {
    min-height: 520px;
  }


  .section-heading-row,
  .blog-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-note,
  .blog-heading .lead {
    max-width: 680px;
  }

  .travel-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .tile-noronha,
  .tile-waterfall,
  .tile-butao,
  .tile-shanghai,
  .tile-golden,
  .tile-coliseum {
    grid-column: auto;
    grid-row: auto;
  }

  .tile-coliseum {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 700px) {
  :root {
    --shell: min(100% - 34px, 620px);
    --radius-lg: 22px;
  }

  body {
    padding-bottom: 76px;
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    margin-bottom: 28px;
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .lead {
    font-size: 1.28rem;
  }

  .hero {
    display: grid;
    grid-template-rows: 50svh minmax(50svh, auto);
    min-height: 100svh;
    background: var(--deep);
  }

  .hero-media {
    position: relative;
    grid-row: 1;
    height: 50svh;
  }

  .hero-media img {
    object-position: 26% 50%;
  }

  .hero-shade {
    position: absolute;
    grid-row: 1;
    height: 50svh;
    background: linear-gradient(0deg, rgba(10, 23, 36, 0.38) 0%, transparent 46%);
  }

  .hero-content {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
    grid-row: 2;
    width: auto;
    padding: 30px 24px 84px;
    transform: none;
    background: var(--deep);
    text-shadow: none;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(3.45rem, 16.5vw, 4.7rem);
  }

  .hero-intro {
    margin-bottom: 22px;
    font-size: 0.74rem;
    letter-spacing: 0.10em;
    line-height: 1.68;
  }

  .hero-caption {
    top: calc(50svh - 34px);
    bottom: auto;
    left: 20px;
  }

  .travel-band {
    display: grid;
    min-height: 0;
    grid-template-rows: 56svh auto;
    background: var(--deep);
  }

  .travel-band-media,
  .travel-band-shade {
    position: relative;
    grid-row: 1;
    height: 56svh;
  }

  .travel-band-media img {
    object-position: 44% center;
  }

  .travel-band-shade {
    position: absolute;
    background: linear-gradient(0deg, rgba(7, 18, 29, 0.42), transparent 44%);
  }

  .travel-band-content {
    position: relative;
    top: auto;
    right: auto;
    grid-row: 2;
    width: auto;
    padding: 38px 24px 48px;
    transform: none;
    text-shadow: none;
  }

  .travel-band blockquote {
    margin-bottom: 24px;
    font-size: clamp(2.35rem, 12vw, 3.65rem);
    line-height: 1.02;
  }

  .floating-nav {
    top: auto;
    right: 50%;
    bottom: 12px;
    flex-direction: row;
    gap: 3px;
    width: auto;
    max-width: calc(100vw - 20px);
    padding: 7px;
    transform: translateX(50%);
    border-radius: 18px;
  }

  .nav-item {
    display: flex;
    gap: 0;
    width: 30px;
    min-width: 30px;
    height: 38px;
    min-height: 38px;
    padding: 0 10px;
    transition: width 180ms ease, gap 180ms ease, background 180ms ease;
  }

  .nav-item.is-active {
    gap: 8px;
    width: auto;
    min-width: 94px;
    background: rgba(255, 255, 255, 0.10);
  }

  .nav-label {
    position: static;
    display: none;
    padding: 0;
    background: none;
    box-shadow: none;
    font-size: 0.67rem;
    letter-spacing: 0;
    opacity: 1;
    transform: none;
  }

  .nav-item.is-active .nav-label {
    display: inline;
  }

  .nav-dot {
    flex: 0 0 auto;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .interest-orbit-wrap {
    margin: 50px 0 60px;
  }

  .interest-orbit {
    width: min(88vw, 390px);
  }

  .photo-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 310px 220px;
    min-height: auto;
  }

  .photo-placeholder {
    min-height: 220px;
    padding: 22px;
  }


  .photo-card {
    min-height: 220px;
  }

  .photo-card figcaption {
    padding: 22px;
  }

  .photo-tall {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .photo-small {
    min-height: 220px;
  }

  .photo-placeholder::before {
    top: 22px;
    right: 22px;
  }

  .photo-placeholder::after {
    top: 36px;
    right: 37px;
  }

  .trajectory-layout,
  .knowledge-layout,
  .split-layout,
  .split-reverse {
    gap: 48px;
  }

  .trajectory-quote {
    margin: 34px 0 28px;
    padding: 24px 22px 24px 26px;
  }

  .professional-card {
    padding: 22px;
  }

  .trajectory-photo {
    margin-top: 0;
  }

  .knowledge-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .mentor-card {
    padding: 22px;
  }

  .blog-photo {
    aspect-ratio: 4 / 3;
  }

  .blog-photo img {
    object-position: 57% center;
  }

  .photo-landscape,
  .photo-banner {
    min-height: 340px;
  }

  .blog-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-copy {
    margin-bottom: 44px;
  }

  .blog-closing-quote,
  .oberyn-quote {
    padding: 23px 22px 23px 26px;
  }

  .travel-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .travel-tile,
  .tile-coliseum {
    grid-column: auto;
    grid-row: auto;
    min-height: 290px;
  }

  .tile-waterfall {
    min-height: 440px;
  }

  .tile-shanghai {
    min-height: 230px;
  }

  .album-card {
    padding: 23px 21px;
  }

  .contact-layout {
    gap: 50px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 72px;
  }
}

@media (max-width: 440px) {
  .photo-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .photo-tall,
  .photo-small {
    grid-column: auto;
    min-height: 300px;
  }


  .photo-music {
    min-height: 520px;
  }

  .photo-travel,
  .photo-shared {
    min-height: 260px;
  }

  .interest-orbit {
    width: 100%;
  }

  .nav-item {
    width: 27px;
    min-width: 27px;
    padding-inline: 8px;
  }

  .nav-item.is-active {
    min-width: 86px;
  }
}


/* Mantém os dois rostos inteiros na foto do Coliseu em telas maiores. */
@media (min-width: 701px) {
  .tile-coliseum img {
    object-position: center 82%;
  }
}

@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;
  }
}

/* Pegadas pelo mundo — reformulação 2026 */
.travel-heading-renewed{margin-bottom:34px}.travel-renewed-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(340px,.75fr);gap:clamp(42px,7vw,90px);align-items:start}.travel-renewed-copy>p:not(.lead){color:var(--muted)}.travel-stat-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}.travel-stat-row div{min-width:126px;padding:13px 15px;background:rgba(255,255,255,.58);border:1px solid rgba(20,34,53,.11);border-radius:14px}.travel-stat-row strong{display:block;font-size:1.5rem}.travel-stat-row span{display:block;margin-top:2px;color:var(--muted);font-size:.72rem}.oberyn-quote-renewed{margin:0}.revisit-preview-heading{display:flex;justify-content:space-between;align-items:end;gap:20px;margin:62px 0 16px;padding-top:28px;border-top:1px solid rgba(20,34,53,.12)}.revisit-preview-heading span{font-family:"Iowan Old Style","Palatino Linotype",Palatino,Georgia,serif;font-size:clamp(1.45rem,2.4vw,2rem)}.revisit-preview-heading small{color:var(--muted);font-size:.76rem}.revisit-preview-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.revisit-preview-card{margin:0;background:var(--white);border:1px solid rgba(20,34,53,.10);border-radius:18px;overflow:hidden;box-shadow:0 12px 34px rgba(12,27,42,.06)}.revisit-preview-pair{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));background:#eae4da}.revisit-preview-shot{position:relative;min-width:0;background:#eae4da}.revisit-preview-shot + .revisit-preview-shot{border-left:1px solid rgba(20,34,53,.10)}.revisit-preview-shot img{display:block;width:100%;height:100%;aspect-ratio:4/5;object-fit:cover;object-position:var(--focus-x,50%) var(--focus-y,50%);background:#eae4da}.revisit-year-badge{position:absolute;left:12px;bottom:12px;padding:5px 8px;border-radius:8px;background:rgba(20,34,53,.84);color:#fff;font-size:.72rem;font-weight:800;line-height:1;letter-spacing:.02em}.revisit-preview-caption{display:flex;justify-content:space-between;gap:12px;padding:12px 14px}.revisit-preview-caption strong{font-size:.8rem}.revisit-preview-caption span{color:var(--muted);font-size:.72rem}.album-card-renewed{margin-top:34px}
@media(max-width:900px){.travel-renewed-grid{grid-template-columns:1fr}.oberyn-quote-renewed{max-width:820px}.revisit-preview-grid{grid-template-columns:1fr}.revisit-preview-heading{align-items:flex-start;flex-direction:column;gap:5px}.revisit-preview-pair{grid-template-columns:1fr}.revisit-preview-shot + .revisit-preview-shot{border-left:0;border-top:1px solid rgba(20,34,53,.10)}.revisit-preview-shot img{height:auto;aspect-ratio:auto;object-fit:contain}}
