:root {
  --ink: #151310;
  --ink-soft: #26231e;
  --paper: #faefeb;
  --paper-light: #f1f1f1;
  --bronze: #b85c39;
  --bronze-light: #d98362;
  --muted: #716c63;
  --line: rgba(21, 19, 16, .17);
  --light-line: rgba(255, 255, 255, .18);
  --page: min(1440px, calc(100vw - 96px));
  --title-size: clamp(54px, 6.4vw, 104px);
  --section-title-size: clamp(52px, 5vw, 78px);
  --card-title-size: clamp(27px, 2vw, 34px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: white;
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--bronze-light);
  outline-offset: 5px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding-inline: max(48px, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #f5f1e8;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  transition: transform .3s ease, background-color .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  background: rgba(21, 19, 16, .94);
  border-color: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}
.site-header.is-hidden { transform: translateY(-120%); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 142px;
  height: auto;
}




.brand2 img {
  display: block;
  width: 300px;
  height: auto;
  margin: 0;
  padding: 0;
}




.main-nav { display: flex; gap: 36px; }

.main-nav a,
.header-contact {
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .04em;
  transition: opacity .2s ease;
}

.main-nav a:hover,
.header-contact:hover { opacity: .55; }

.header-contact {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact span { font-size: 17px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  height: 200svh;
  min-height: 1200px;
  color: #f6f1e7;
  background: #171410;
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #171410 url("assets/justica-bantim-hero.jpg") center / cover no-repeat;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0) scale(1.01);
  backface-visibility: hidden;
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 11, 9, .72) 0%, rgba(12, 11, 9, .42) 44%, rgba(12, 11, 9, .05) 76%),
    linear-gradient(180deg, rgba(10, 9, 8, .28), transparent 25%, transparent 70%, rgba(10, 9, 8, .62));
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

.hero-topline,
.hero-copy { position: absolute; z-index: 2; }

.hero-topline {
  top: 124px;
  left: max(48px, calc((100vw - 1440px) / 2));
  display: flex;
  justify-content: space-between;
  width: 48%;
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  transition: opacity .25s ease;
}
.hero-topline.is-hidden { opacity: 0; }

.hero-copy {
  width: min(800px, 56vw);
  top: 50%;
  left: max(48px, calc((100vw - 1440px) / 2));
  transform: translateY(-44%);
  will-change: opacity, transform;
}

.hero-copy-primary {
  opacity: var(--hero-primary-opacity, 1);
  transform: translateY(calc(-44% + var(--hero-primary-y, 0px)));
}

.hero-copy-secondary {
  left: auto;
  right: max(48px, calc((100vw - 1440px) / 2));
  width: min(570px, 42vw);
  opacity: var(--hero-secondary-opacity, 0);
  transform: translateY(calc(-40% + var(--hero-secondary-y, 36px)));
  text-align: right;
}

.hero-copy-secondary h2 {
  margin: 0 0 24px;
}

.hero-copy-secondary p:last-child {
  margin: 0 0 0 auto;
  max-width: 530px;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.65;
}

.overline,
.practice-label,
.contact-kicker,
.intro-kicker {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.overline { color: var(--bronze-light); }

.hero h1,
.hero-copy-secondary h2,
.editorial-intro h2,
.principles h2,
.practice h2,
.statement h2,
.contact h2,
.blog-section h2,
.testimonials h2,
.statement-parallax-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--section-title-size);
  line-height: .92;
  font-weight: 300;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero h1,
.principles h2,
.statement-parallax-copy h2 {
  font-size: var(--title-size);
}

.hero h1 {
  margin: 0;
}

.hero h1 em,
.editorial-intro h2 em,
.principles h2 em,
.practice h2 em,
.contact h2 em,
.testimonials h2 em {
  color: var(--bronze-light);
  font-weight: 300;
}

.section-pad {
  padding: 140px max(48px, calc((100vw - 1440px) / 2));
}

.section-index {
  display: flex;
  gap: 14px;
  padding-top: 10px;
  font-size: 16px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-index span { color: var(--bronze); }
.section-index p { margin: 0; }
.section-index.light { color: rgba(255, 255, 255, .6); }

.editorial-intro {
  background: var(--paper-light);
}

.intro-kicker { color: var(--muted); }

.editorial-intro h2 {
  max-width: 1040px;
  margin: 0;
}

.editorial-intro h2 em { color: var(--bronze); }

.intro-notes {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 70px;
  margin-top: 94px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #5d5850;
  font-size: 16px;
}

.intro-notes p { margin: 0; max-width: 560px; }
.intro-notes .address { justify-self: end; }

.principles {
  position: relative;
  height: 185svh;
  min-height: 1200px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: start;
  color: #f4efe6;
  background: var(--ink);
}

.principles-heading {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  padding: 110px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(18, 16, 13, .12), rgba(18, 16, 13, .9)),
    url("assets/bg-1.png") 72% center / cover no-repeat,
    url("assets/parallax-background.svg") center / cover no-repeat;
  overflow: hidden;
}

.principles-heading::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 72%, rgba(15, 13, 11, .3));
}

.overline.dark { color: var(--bronze-light); }

.principles h2 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0;
}

.principles-heading .overline { position: relative; z-index: 1; }

.principles-hint {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: min(330px, 100%);
  margin: 46px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .52);
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.principles-grid {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  border-left: 1px solid var(--light-line);
}

.principle {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  min-height: 230px;
  padding: 38px 5vw;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-content: center;
  column-gap: 32px;
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  opacity: var(--why-opacity, .2);
  filter: blur(var(--why-blur, 5px));
  transform: translateY(calc(-50% + var(--why-y, 0px)));
  will-change: transform, opacity, filter;
}

.principle.is-active {
  opacity: var(--why-opacity, 1);
  filter: blur(var(--why-blur, 0px));
}

.principle > span {
  grid-row: 1 / 3;
  color: var(--bronze-light);
  font-size: 16px;
  letter-spacing: .14em;
}

.principle h3 {
  margin: 0 0 12px;
  font: 300 var(--card-title-size)/1.05 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.035em;
}

.principle p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 16px;
}

.practice {
  color: #f4efe6;
  background: #171512;
}

.practice-head {
  margin-bottom: 72px;
}

.practice-label { color: rgba(255, 255, 255, .4); }

.practice h2 {
  margin: 0;
}

.practice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.practice-row {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--light-line);
  border-radius: 3px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
  text-decoration: none;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.practice-row:hover {
  padding: 24px;
  transform: translateY(-6px);
  border-color: rgba(195, 157, 105, .7);
  background: linear-gradient(145deg, rgba(195,157,105,.12), rgba(255,255,255,.025));
}

.practice-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 48px;
  height: 2px;
  background: var(--bronze-light);
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .3s ease;
}

.practice-row:hover::before { transform: scaleX(1); }

.practice-number {
  color: var(--bronze-light);
  font-size: 16px;
  letter-spacing: .14em;
}

.practice-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(195,157,105,.45);
  border-radius: 50%;
  color: var(--bronze-light);
}

.practice-icon svg {
  width: 20px;
  height: 20px;
}

.practice-row h3 {
  margin: 42px 0 14px;
  padding-right: 48px;
  font: 300 var(--card-title-size)/1 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.04em;
}

.practice-row p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, .43);
  font-size: 16px;
  line-height: 1.65;
}

.other-practices {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.other-practices p {
  margin: 0;
  color: rgba(255, 255, 255, .34);
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.other-practices div { display: flex; flex-wrap: wrap; gap: 12px 34px; }
.other-practices span { color: rgba(255, 255, 255, .68); font-size: 16px; }

.statement {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #cfc1ad;
}

.statement::before {
  content: "BANTIM";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  font: 300 clamp(180px, 26vw, 430px)/.7 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.08em;
  color: rgba(71, 54, 36, .075);
  white-space: nowrap;
}

.statement-side {
  position: absolute;
  left: max(30px, calc((100vw - 1440px) / 2));
  top: 50%;
  margin: 0;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
  color: rgba(21, 19, 16, .5);
  font-size: 16px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.statement-copy { position: relative; z-index: 2; text-align: center; }

.statement-mark {
  display: block;
  height: 88px;
  color: var(--bronze);
  font: 300 140px/.7 "Cormorant Garamond", Georgia, serif;
}

.statement h2 {
  margin: 0;
}

.statement-copy p {
  margin: 34px 0 0;
  font-size: 16px;
  letter-spacing: .04em;
}

.contact { background: var(--paper-light); }

.contact-head {
  margin-bottom: 110px;
}

.contact-kicker { color: var(--muted); }

.contact h2 {
  margin: 0;
}

.contact h2 em { color: var(--bronze); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12vw;
  align-items: start;
}

.contact-copy p {
  max-width: 430px;
  margin: 0 0 70px;
  color: #575249;
  font-size: 16px;
}

.contact-copy address {
  font-style: normal;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-links { border-top: 1px solid var(--ink); }

.contact-links a {
  min-height: 102px;
  display: grid;
  grid-template-columns: 120px 1fr 30px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .25s ease;
}

.contact-links a:hover { padding: 0 12px; }

.contact-links span {
  color: var(--muted);
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-links strong {
  font: 300 clamp(24px, 2.8vw, 42px)/1 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.03em;
}

.contact-links i { justify-self: end; font-size: 20px; font-style: normal; }

/* Mantém a seta como desenho tipográfico, sem conversão para emoji no mobile. */
.header-contact span,
.blog-all span,
.blog-card-link i,
.blog-secondary i,
.contact-links i {
  display: inline-block;
  width: 1.1em;
  overflow: hidden;
  color: inherit;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0;
  font-style: normal;
  line-height: 1;
  text-align: center;
}

.header-contact span::before,
.blog-all span::before,
.blog-card-link i::before,
.blog-secondary i::before,
.contact-links i::before {
  content: "\2192";
  display: block;
  font-size: 19px;
  font-weight: 400;
  transform: rotate(-45deg);
}

.site-footer {
  padding: 78px max(48px, calc((100vw - 1440px) / 2)) 36px;
  color: #f4efe6;
  background: var(--ink);
}

.footer-wordmark {
  padding-bottom: 70px;
  border-bottom: 1px solid var(--light-line);
  font: 300 clamp(112px, 17.4vw, 280px)/.68 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.075em;
}

.footer-wordmark span { color: var(--bronze-light); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 60px;
  padding-top: 28px;
  color: rgba(255, 255, 255, .47);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .04em;
}

.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, .74); text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1);
}

.reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-settle {
  from { opacity: .55; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1.015); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  :root { --page: calc(100vw - 48px); }

  .site-header { height: 78px; padding-inline: 24px; grid-template-columns: 1fr auto; }
  .main-nav, .header-contact { display: none; }

  .menu-toggle {
    display: block;
    width: 38px;
    padding: 8px 0;
    color: inherit;
    background: none;
    border: 0;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 7px 0;
    background: currentColor;
    transition: transform .2s ease;
  }

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

  .main-nav.open {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 24px 32px;
    color: var(--ink);
    background: var(--paper-light);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; }

  .hero { height: 190svh; min-height: 1120px; }
  .hero-topline { left: 24px; width: 60%; }
  .hero-copy-primary { left: 24px; width: 67vw; }
  .hero-copy-secondary { right: 24px; width: min(570px, 52vw); }

  .section-pad { padding: 105px 24px; }
  .intro-notes { margin-top: 65px; }

  .principles { height: 175svh; min-height: 1050px; grid-template-columns: .95fr 1.05fr; }
  .principles-heading { min-height: 620px; padding: 80px 5vw; }
  .principles-grid { border-left: 1px solid var(--light-line); }
  .principle { min-height: 220px; padding: 30px 4vw; grid-template-columns: 36px 1fr; gap: 18px; }
  .practice-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .other-practices { grid-template-columns: 130px 1fr; gap: 36px; }
  .contact-grid { gap: 7vw; }

  .site-footer { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 680px) {
  :root { --page: calc(100vw - 32px); }

  .site-header { height: 70px; padding-inline: 16px; }
  .brand img { width: 124px; }
  .main-nav.open { top: 70px; left: 0; right: 0; }

  .hero {
    height: 185svh;
    min-height: 1050px;
  }

  .hero-stage {
    background-position: 58% center;
  }

  .hero-video {
    display: block;
    opacity: .88;
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 9, 8, .78), rgba(10, 9, 8, .2)),
      linear-gradient(180deg, rgba(10, 9, 8, .38), transparent 34%, rgba(10, 9, 8, .8));
  }

  .hero-topline { top: 98px; left: 16px; width: calc(100% - 32px); }
  .hero-topline span:last-child { display: none; }
  .hero-copy-primary { left: 16px; width: calc(100% - 32px); }
  .hero-copy-secondary { left: 16px; right: auto; width: calc(100% - 32px); text-align: left; }
  .hero-copy-secondary p:last-child { margin-left: 0; }
  .overline { margin-bottom: 18px; }

  .section-pad { padding: 86px 18px; }

  .intro-notes {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 54px;
  }

  .intro-notes .address { justify-self: start; }
  .principles { height: 180svh; min-height: 1080px; display: block; }
  .principles-heading {
    z-index: 2;
    height: 58svh;
    min-height: 420px;
    padding: 46px 22px 64px;
    justify-content: flex-end;
    background-position: 68% center;
  }
  .principles h2 {
    max-width: 520px;
    font-size: clamp(44px, 12.5vw, 54px);
  }
  .principles-hint { margin-top: 24px; }
  .principles-grid { position: sticky; top: 58svh; z-index: 3; height: 42svh; min-height: 350px; padding: 0; border-left: 0; background: var(--ink); }
  .principle { min-height: 184px; padding: 26px 22px; grid-template-columns: 34px 1fr; gap: 14px; }

  .practice-head { margin-bottom: 62px; }

  .practice-list { grid-template-columns: 1fr; }
  .practice-row { min-height: 300px; padding: 26px; }
  .practice-row:hover { padding: 26px; }

  .other-practices { grid-template-columns: 1fr; gap: 20px; }
  .other-practices div { display: grid; gap: 10px; }

  .statement { min-height: 620px; padding: 0 20px; }
  .statement-side { display: none; }
  .statement-mark { height: 70px; font-size: 110px; }

  .contact-head { margin-bottom: 76px; }
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .contact-copy p { margin-bottom: 38px; }

  .contact-links a {
    min-height: 90px;
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
  }

  .contact-links span { grid-column: 1; }
  .contact-links strong { grid-column: 1; font-size: clamp(25px, 7.5vw, 34px); }
  .contact-links i { grid-column: 2; grid-row: 1 / 3; }

  .site-footer { padding: 64px 18px 30px; }
  .footer-wordmark { padding-bottom: 52px; font-size: 28vw; }
  .footer-bottom { flex-direction: column; gap: 24px; }
}


/* ==========================================================
   PARALLAX — "O Direito pode ser complexo..."
   Layer order:
   1 background / 2 atmosphere / 3 copy / 4 foreground statue
   ========================================================== */

.statement-parallax {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #161310;
}

.statement-parallax-stage {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  color: #f7f1e8;
  background: #171310;
}

.statement-parallax-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
  backface-visibility: hidden;
}

.statement-parallax-bg {
  z-index: 1;
  inset: -10%;
  transform: translate3d(0, var(--parallax-bg-y, -4%), 0) scale(1.08);
}

.statement-parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: blur(8px) saturate(.72) contrast(.96);
}

.statement-parallax-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 15, 12, .48) 0%, rgba(19, 15, 12, .28) 32%, rgba(19, 15, 12, .48) 100%),
    linear-gradient(90deg, rgba(20, 16, 13, .26), transparent 40%, rgba(20, 16, 13, .18));
}

.statement-parallax-atmosphere {
  z-index: 2;
  transform: translate3d(0, var(--parallax-atmosphere-y, -2%), 0);
  background:
    radial-gradient(circle at 50% 51%, rgba(209, 176, 131, .14), transparent 28%),
    linear-gradient(180deg, rgba(18, 14, 11, .06), rgba(18, 14, 11, .22));
  pointer-events: none;
}

.statement-parallax-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.22'/%3E%3C/svg%3E");
}

.statement-parallax-copy {
  z-index: 3;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: clamp(98px, 12vh, 148px) max(28px, calc((100vw - 1440px) / 2)) 0;
  text-align: center;
  pointer-events: none;
  transform: translate3d(0, var(--parallax-copy-y, 0%), 0);
}

.statement-parallax-copy-inner {
  width: min(1260px, 92vw);
}

.statement-parallax-kicker {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .55);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.statement-parallax-copy h2 {
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .22);
}

.statement-parallax-copy h2 span,
.statement-parallax-copy h2 em {
  display: block;
  font-weight: 300;
}

.statement-parallax-copy h2 span {
  color: #f7f2ea;
}

.statement-parallax-copy h2 em {
  margin-top: .03em;
  color: #d98362;
  font-style: normal;
}

.statement-parallax-support {
  width: min(430px, 82vw);
  margin: 28px auto 0;
  color: rgba(255, 255, 255, .61);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .02em;
}

.statement-parallax-statue {
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 16vh;
  pointer-events: none;
  transform: translate3d(0, var(--parallax-statue-y, 12%), 0);
}

.statement-parallax-statue img {
  position: absolute;
  left: 45%;
  bottom: -10vh;
  width: auto;
  height: min(68vh, 940px);
  max-width: none;
  transform: translateX(-50%);
  filter:
    drop-shadow(0 38px 44px rgba(0, 0, 0, .34))
    drop-shadow(0 10px 16px rgba(0, 0, 0, .18));
}

.statement-parallax-vignette {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 9, 8, .12) 0%, transparent 22%, transparent 67%, rgba(11, 9, 8, .82) 100%),
    linear-gradient(90deg, rgba(10, 8, 7, .2), transparent 18%, transparent 82%, rgba(10, 8, 7, .2));
}

.statement-parallax-progress {
  position: absolute;
  z-index: 6;
  right: 28px;
  top: 50%;
  width: 1px;
  height: 92px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .16);
  overflow: hidden;
}

.statement-parallax-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #d0a67c;
  transform: scaleY(var(--parallax-progress, 0));
  transform-origin: top;
  will-change: transform;
}

/* Tablet */
@media (max-width: 980px) {
  .statement-parallax {
    min-height: 100svh;
  }

  .statement-parallax-copy {
    padding-top: clamp(92px, 11vh, 125px);
  }

  .statement-parallax-copy-inner {
    width: min(900px, 94vw);
  }

  .statement-parallax-copy h2 {
  }

  .statement-parallax-statue img {
    height: min(82vh, 800px);
    bottom: -9vh;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .statement-parallax {
    min-height: 100svh;
  }

  .statement-parallax-stage {
    min-height: 560px;
  }

  .statement-parallax-bg {
    inset: -10%;
  }

  .statement-parallax-bg img {
    object-position: center 45%;
    filter: blur(6px) saturate(.7) contrast(.94);
    transform: scale(1.13);
  }

  .statement-parallax-copy {
    padding: max(78px, 9vh) 12px 0;
  }

  .statement-parallax-copy-inner {
    width: 100%;
  }

  .statement-parallax-kicker {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .statement-parallax-copy h2 {
    font-size: clamp(39px, 11vw, 46px);
    line-height: .88;
    letter-spacing: -.045em;
    padding-left: 0.2em;
    padding-right: 0.2em;

  }

  .statement-parallax-copy h2 span {
    max-width: calc(100vw - 24px);
    margin-inline: auto;
  }

  .statement-parallax-copy h2 em {
    max-width: calc(100vw - 24px);
    margin: .06em auto 0;
  }

  .statement-parallax-support {
    width: min(310px, 82vw);
    margin-top: 21px;
    font-size: 16px;
  }

  .statement-parallax-statue img {
    left: 42%;
    height: min(90vw, 490px);
    bottom: -3vh;
  }

  .statement-parallax-progress {
    right: 12px;
    height: 70px;
  }
}

@media (max-width: 420px) {
  .statement-parallax-statue img {
    height: min(49vh, 450px);
    bottom: -2vh;
  }
}

/* Reduced motion: preserve the composition, remove scroll movement. */
@media (prefers-reduced-motion: reduce) {
  .statement-parallax {
    min-height: 620px;
  }

  .statement-parallax-layer {
    transform: none !important;
  }

  .statement-parallax-statue img {
    bottom: -24vh;
  }

  .statement-parallax-progress {
    display: none;
  }
}


/* ==========================================================
   OFFICIAL CONTENT UPDATE
   ========================================================== */
.intro-facts {
  display: grid;
  gap: 18px;
  justify-self: end;
}
.intro-facts p { min-width: 260px; }
.intro-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--bronze);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* Testimonials */
.testimonials {
  color: #f4efe6;
  background: #1c1815;
}
.testimonials-head {
  margin-bottom: 72px;
}
.testimonials-kicker {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .4);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.testimonials h2 {
  max-width: 820px;
  margin: 0;
}
.testimonials-disclaimer {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .42);
  font-size: 13px;
  line-height: 1.6;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--light-line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(195, 157, 105, .55);
  background: linear-gradient(145deg, rgba(195,157,105,.12), rgba(255,255,255,.02));
}
.testimonial-stars {
  color: var(--bronze-light);
  font-size: 17px;
  letter-spacing: 3px;
}
.testimonial-quote {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.testimonial-avatar {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(195, 157, 105, .4);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
}
.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}
.testimonial-author span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .testimonials-head { margin-bottom: 56px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Blog */
.blog-section {
  color: var(--ink);
  background: #ffffff;
}
.blog-head {
  margin-bottom: 82px;
}
.blog-kicker {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.blog-section h2 {
  max-width: 1020px;
  margin: 0;
}
.blog-section h2 em {
  color: var(--bronze);
  font-weight: 300;
}
.blog-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(21,19,16,.7);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card {
  min-width: 0;
  height: 100%;
}
.blog-card > a {
  height: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  color: #f6f1e8;
  background: #151310;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card > a:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(21,19,16,.18); }
.blog-card-image { position: relative; height: 280px; overflow: hidden; }
.blog-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, #151310 100%);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.04);
  transition: transform .55s ease;
}
.blog-card > a:hover .blog-card-image img { transform: scale(1.045); }
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 26px;
  color: rgba(255,255,255,.48);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.blog-card h3 {
  margin: 25px 26px 16px;
  font: 300 var(--card-title-size)/1.05 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.04em;
}
.blog-card p {
  margin: 0 26px;
  color: rgba(255,255,255,.58);
  font-size: 16px;
  line-height: 1.75;
}
.blog-card-link {
  margin-top: auto;
  margin-inline: 26px;
  padding: 22px 0 24px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bronze-light);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.blog-card-link i { font-size: 18px; font-style: normal; }
.blog-secondary {
  margin-top: 52px;
  border-top: 1px solid var(--line);
}
.blog-secondary a {
  min-height: 82px;
  display: grid;
  grid-template-columns: 130px 1fr 30px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .25s ease;
}
.blog-secondary a:hover { padding: 0 12px; }
.blog-secondary span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .12em;
}
.blog-secondary strong {
  font: 300 clamp(22px, 2.2vw, 34px)/1.05 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.025em;
}
.blog-secondary i {
  justify-self: end;
  font-size: 19px;
  font-style: normal;
}
@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .intro-facts { justify-self: start; }
  .intro-facts p { min-width: 0; }
  .blog-head { margin-bottom: 56px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-secondary { margin-top: 38px; }
  .blog-secondary a {
    min-height: 100px;
    grid-template-columns: 1fr 24px;
    gap: 8px 16px;
    padding: 18px 0;
  }
  .blog-secondary span { grid-column: 1; }
  .blog-secondary strong { grid-column: 1; font-size: 27px; }
  .blog-secondary i { grid-column: 2; grid-row: 1 / 3; align-self: center; }
}

/* As regras dos cards de blog ficam depois dos estilos globais de seta. */
.blog-card-link i,
.blog-secondary i {
  font-size: 0;
}
