:root {
  --ink: #001E22;
  --paper: #FAF8F5;
  --bg-secondary: #F4F1EA;
  --bg-card: #FFFFFF;
  --lime: #CEF5A4;
  --blue: #1A66FF;
  --forest: #144941;
  --muted: #526170;
  --text-main: #141A1B;
  --line: rgba(0, 30, 34, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 30, 34, 0.04);
  --shadow-md: 0 12px 32px rgba(0, 30, 34, 0.08);
  --shadow-lg: 0 24px 48px rgba(0, 30, 34, 0.12);
  --shadow-dark: 0 24px 48px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  background: #fff;
  padding: 1rem;
}

.section-shell {
  padding-left: clamp(1.25rem, 6vw, 8vw);
  padding-right: clamp(1.25rem, 6vw, 8vw);
}

/* --------------------------------------------------------------------------
   Buttons & Links
   -------------------------------------------------------------------------- */
.button {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #fff;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button span {
  font-size: 1rem;
  line-height: 1;
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
}

.button-lime:hover {
  background: #d8fba4;
}

.text-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s ease;
}

.text-link:hover {
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   Eyebrows & Labels
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.85rem;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
  overflow: hidden;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
}

.hero-copy {
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 3vw, 2.5rem) clamp(3.5rem, 6vw, 6rem) clamp(1.25rem, 6vw, 8vw);
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0.6rem 0 1.35rem;
  color: var(--ink);
  max-width: 620px;
}

.hero-intro {
  max-width: 520px;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 1.85rem;
}

.hero-visual {
  background: var(--ink);
  position: relative;
  min-height: 520px;
  max-height: 580px;
  height: 100%;
  margin: 1.5rem clamp(1.25rem, 4vw, 3rem) 1.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-dark);
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 73, 65, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  overflow: hidden;
}

.image-main {
  width: 76%;
  height: 74%;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-md) 0 0 0;
  box-shadow: var(--shadow-dark);
}

.image-main img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 30, 34, 0.4) 0%, transparent 60%);
}

.image-float {
  width: 55%;
  height: 48%;
  left: 6%;
  top: 8%;
  z-index: 2;
  border-radius: 12px;
  transform: rotate(-3deg);
  box-shadow: 14px 16px 0 var(--lime);
  border: 1.5px solid rgba(0, 30, 34, 0.15);
  overflow: hidden;
}

.image-float img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* --------------------------------------------------------------------------
   Ticker
   -------------------------------------------------------------------------- */
.ticker {
  background: var(--ink);
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  user-select: none;
}

.ticker div {
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}

.ticker b {
  color: var(--lime);
  margin: 0 1.5vw;
}

@keyframes tickerScroll {
  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   Intro Section (#por-que)
   -------------------------------------------------------------------------- */
.intro {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.intro h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0;
}

.body-copy {
  font-size: 1.025rem;
  line-height: 1.68;
  color: var(--muted);
}

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

/* --------------------------------------------------------------------------
   Evidence Section
   -------------------------------------------------------------------------- */
.evidence {
  background: var(--ink);
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  position: relative;
  overflow: hidden;
}

.evidence .eyebrow {
  color: var(--lime);
}

.evidence h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0.5rem 0 1.25rem;
  color: #FFFFFF;
}

.evidence-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 1rem;
}

.evidence small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  display: block;
  margin-top: 1.5rem;
}

.evidence-number {
  border-left: 1px solid var(--border-dark);
  padding-left: clamp(2rem, 4vw, 4rem);
  align-self: center;
}

.evidence-number strong {
  display: block;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--lime);
}

.evidence-number span {
  display: block;
  max-width: 320px;
  margin: 1rem 0 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  max-width: 300px;
}

.mini-grid i {
  height: 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.mini-grid i:nth-child(-n+3) {
  background: var(--lime);
}

/* --------------------------------------------------------------------------
   Experience Section (#experiencia)
   -------------------------------------------------------------------------- */
.experience {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.experience-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.experience h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0;
}

.experience-head p {
  line-height: 1.65;
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.experience-scroll {
  display: flex;
  gap: 1.25rem;
  padding: 0 clamp(1.25rem, 6vw, 8vw);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
}

.experience-card {
  scroll-snap-align: start;
  flex: 0 0 290px;
  min-width: 290px;
  height: 420px;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.experience-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0.4rem 0 0.5rem;
}

.experience-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.experience-card span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: inline-block;
}

.card-photo {
  color: #FFFFFF;
}

.card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 30, 34, 0.88) 0%, rgba(0, 30, 34, 0.3) 60%, transparent 100%);
}

.card-photo div {
  position: relative;
  z-index: 1;
}

.card-photo span {
  color: var(--lime);
}

.card-ink {
  background: var(--ink);
  color: #FFFFFF;
  border-color: var(--border-dark);
}

.card-ink span {
  color: var(--lime);
}

.card-ink p {
  color: rgba(255, 255, 255, 0.75);
}

.card-lime {
  background: var(--lime);
  color: var(--ink);
  border-color: rgba(0, 30, 34, 0.12);
}

.card-lime p {
  color: var(--ink);
  font-weight: 500;
}

.experience-card b {
  font-size: 1.4rem;
  align-self: flex-end;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Film Section (#filme)
   -------------------------------------------------------------------------- */
.film {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.film h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}

.film-heading > p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
  max-width: 420px;
}

.film-frame {
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.film-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   Gallery Section
   -------------------------------------------------------------------------- */
.gallery {
  padding-top: clamp(1rem, 2vw, 2rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.gallery h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid figure:nth-child(2) {
  margin-top: 3.5rem;
}

.gallery-grid img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.gallery-grid figure:nth-child(2) img {
  aspect-ratio: 3 / 4;
}

.gallery-grid figcaption {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.75rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Mentor Section (#quem-conduz)
   -------------------------------------------------------------------------- */
.mentor {
  background: var(--blue);
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(4rem, 6vw, 6rem);
  padding-bottom: clamp(4rem, 6vw, 6rem);
}

.mentor-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 20, 60, 0.3);
  justify-self: center;
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.mentor h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}

.mentor-copy > p {
  max-width: 580px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.person {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 2rem;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.person strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
}

.person span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  min-height: 50vh;
  background: var(--ink);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6rem) 2rem;
  border-top: 1px solid var(--border-dark);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 73, 65, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.cta-section .eyebrow {
  color: var(--lime);
}

.cta-section h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.cta-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2rem;
}

.cta-section small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  margin-top: 1.15rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
footer {
  background: #001518;
  color: #FFFFFF;
  padding: 3rem clamp(1.25rem, 6vw, 8vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .brand img {
  height: 32px;
  width: auto;
}

footer span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

footer a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

footer a:hover {
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   Animation / Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 3.5rem 1.25rem 2.5rem;
  }

  .hero-visual {
    min-height: 440px;
    margin: 1rem 1.25rem 2.5rem;
  }

  .image-main {
    width: 78%;
    height: 70%;
  }

  .image-float {
    width: 56%;
    height: 44%;
  }

  .intro-grid,
  .evidence,
  .experience-head,
  .film,
  .mentor {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .evidence-number {
    border-left: 0;
    border-top: 1px solid var(--border-dark);
    padding: 2rem 0 0;
  }

  .gallery-head {
    display: block;
  }

  .gallery-head .eyebrow {
    margin-bottom: 0.75rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid figure:nth-child(2) {
    margin-top: 0;
  }

  .mentor-image {
    height: 380px;
  }

  footer {
    padding: 2.5rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

