@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

:root {
  --bg-dark: #1d1d1d;
  --green: #19352d;
  --green-2: #112a24;
  --paper: #f2ede3;
  --paper-2: #e6dcc8;
  --gold: #957546;
  --gold-light: #e8cb83;
  --ink: #25231f;
  --muted: #777064;
  --line: rgba(201, 164, 93, 0.35);
  --container: 1100px;
  --frame: 1280px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

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

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

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  inset: 0 0 auto;
  height: 74px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.brand-mark,
.footer-mark {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -7px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}

.site-nav a {
  opacity: 0.9;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold-light);
  opacity: 1;
}

.nav-cta {
  padding: 13px 21px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  color: #fff;
  background: #1c1c1c;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    url('assets/img/hero.png') center / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 20, 20, 0.98) 0%,
    rgba(20, 20, 20, 0.92) 31%,
    rgba(20, 20, 20, 0.62) 58%,
    rgba(20, 20, 20, 0.44) 100%
  );
}

.hero::before,
.hero::after,
.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 1px;
  background: rgba(255, 255, 255, 0.10);
  pointer-events: none;
}

.hero::before,
.site-footer::before {
  left: max(20px, calc((100vw - var(--frame)) / 2));
}

.hero::after,
.site-footer::after {
  right: max(20px, calc((100vw - var(--frame)) / 2));
}

.hero-content {
  position: relative;
  z-index: 4;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 78px;
  padding-bottom: 72px;
}

.hero-copy {
  width: calc(100% - 450px);
  max-width: 720px;
}
@media (min-width: 1500px) {

  .hero-video-card {
    width: 410px;
    max-height: 500px;
  }

  .hero-copy {
    width: calc(100% - 480px);
  }

}
h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  font-size: clamp(42px, 3.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero-copy p {
  max-width: 700px;
  margin: 18px 0 25px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  line-height: 1.6;
}

.hero-copy strong {
  color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.25s ease, filter 0.25s ease, background 0.25s ease;
}

.btn-gold {
  color: #171717;
  background: linear-gradient(90deg, var(--gold-light), #c9a356);
}

.btn-gold:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.note-icon {
  font-size: 22px;
}

.scroll-cue {
  position: absolute;
  left: 0;
  bottom: 58px;
  padding-left: 15px;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 1px;
  height: 28px;
  background: var(--gold);
}

/* Shared sections */
.section {
  padding: 82px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 17px;
  color: #9f7d3c;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.section h2 {
  font-size: clamp(32px, 2.6vw, 46px);
  line-height: 1.14;
}

/* Ecosystem */
.split-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 85px;
}

.split-intro p {
  margin: 0;
  color: #5d584f;
  font-size: 14px;
  line-height: 1.65;
}

.split-intro strong {
  color: #24211d;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border: 1px solid rgba(167, 132, 71, 0.35);
  border-radius: 3px;
  overflow: hidden;
}

.feature-card {
  min-width: 0;
  min-height: 185px;
  padding: 34px 25px;
  border-right: 1px solid rgba(167, 132, 71, 0.28);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card.active {
  background: #e6dbc5;
}

.feature-icon {
  display: block;
  margin-bottom: 18px;
  color: #a27e3f;
  font-size: 25px;
}

.feature-card h3 {
  margin: 0 0 13px;
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  color: #6e685f;
  font-size: 12px;
  line-height: 1.55;
}

/* Profile and process */
.profile-process {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  border-top: 10px solid #caab72;
  background:
    radial-gradient(circle at 85% 40%, #21473c, transparent 40%),
    linear-gradient(100deg, #1b2422, #132b25);
  overflow: hidden;
}

.profile-process h2 {
  color: #f6f0e8;
}

.profile-process p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  line-height: 1.6;
}

.two-columns {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(70px, 9vw, 135px);
}

.profile-block > p {
  max-width: 500px;
}

.check-list {
  max-width: 500px;
  margin: 0;
  padding: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 0 15px 37px;
  border-bottom: 1px solid rgba(201, 164, 93, 0.25);
  font-size: 12px;
  line-height: 1.4;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--gold-light);
}

.process-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 27px;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 51px;
  left: 24px;
  width: 1px;
  height: 31px;
  background: var(--gold);
  opacity: 0.7;
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
}

.process-list h3 {
  margin: 6px 0 8px;
  font-size: 18px;
}

.process-list p {
  margin: 0;
}

.decor-mark {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  opacity: 0.42;
  background-image: url('assets/img/bg-para-quem-e.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 135%;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 12%,
    rgba(0, 0, 0, 0.45) 35%,
    #000 65%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 12%,
    rgba(0, 0, 0, 0.45) 35%,
    #000 65%
  );
  color: transparent;
  user-select: none;
}

/* Meetings */
.center-heading {
  max-width: 710px;
  margin: 0 auto 45px;
  text-align: center;
}

.center-heading p {
  color: #6d665b;
  font-size: 13px;
  line-height: 1.6;
}

.meeting-grid-wrap {
  position: relative;
  max-width: 970px;
  margin: 0 auto;
}

.meeting-grid-wrap::before {
  content: "";
  position: absolute;
  top: -26px;
  right: -24px;
  width: 63%;
  height: calc(100% + 52px);
  background: #e6ddcc;
}

.meeting-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.meeting-card {
  position: relative;
  min-width: 0;
  min-height: 165px;
  border-radius: 3px;
  background-color: #3a3a3a;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.meeting-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.77), rgba(0, 0, 0, 0.06));
}

.meeting-card span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 16px;
}

.meeting-card span::before {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  margin-bottom: 7px;
  background: var(--gold);
}

.meeting-1 { background-image: url('assets/img/encontro-1.png'); }
.meeting-2 { background-image: url('assets/img/encontro-2.png'); }
.meeting-3 { background-image: url('assets/img/encontro-3.png'); }
.meeting-4 { background-image: url('assets/img/encontro-4.png'); }
.meeting-5 { background-image: url('assets/img/encontro-5.png'); }
.meeting-6 { background-image: url('assets/img/encontro-6.png'); }

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 68px;
  color: var(--gold);
  font-size: 10px;
}

.ornament::before,
.ornament::after {
  content: "";
  width: 170px;
  height: 1px;
  opacity: 0.55;
}

.ornament::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Contact */
.contact-section {
  padding-top: 25px;
  padding-bottom: 90px;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
}

.curation-card,
.support-card {
  min-width: 0;
  padding: 45px 40px;
}

.curation-card {
  color: #f5f0e7;
  background: var(--green);
}

.support-card {
  background: #e3d8c4;
}

.curation-card h2,
.support-card h2 {
  font-size: clamp(28px, 2vw, 32px);
}

.curation-card p,
.support-card p {
  margin: 15px 0 24px;
  font-size: 13px;
  line-height: 1.6;
}

.curation-card p {
  color: rgba(255, 255, 255, 0.66);
}

.support-card p {
  color: #665f54;
}

.btn-wide {
  width: 100%;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 12px 15px;
  border: 1px solid rgba(159, 125, 60, 0.42);
  border-radius: 4px;
}

.contact-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #aa864b;
}

.contact-person strong,
.contact-person small {
  display: block;
}

.contact-person strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.contact-person small {
  color: #6e665a;
}

.btn-outline {
  color: #302d28;
  border: 1px solid rgba(159, 125, 60, 0.5);
}

.btn-outline:hover {
  background: rgba(159, 125, 60, 0.08);
}

/* Footer */
.site-footer {
  position: relative;
  color: #fff;
  border-top: 10px solid #c8a568;
  background: #1e1e1e;
  overflow: hidden;
}

.footer-inner {
  position: relative;
  z-index: 4;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-mark {
  margin-bottom: 16px;
  font-size: 51px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

/* Large desktop */
@media (min-width: 1500px) {
  .hero-copy {
    max-width: 820px;
  }

  .hero-copy p {
    max-width: 720px;
  }
}

/* Small desktop and tablet landscape */
@media (max-width: 1180px) {
  :root {
    --container: 980px;
  }

  .site-nav {
    gap: 22px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .two-columns {
    gap: 70px;
  }

  .decor-mark {
    width: 43%;
    background-size: auto 125%;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .site-header {
    position: fixed;
    background: rgba(22, 22, 22, 0.94);
    backdrop-filter: blur(10px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 24px 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #1d1d1d;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .hero-content {
    min-height: 700px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.92), rgba(20, 20, 20, 0.66));
  }

  .hero-copy {
    max-width: 680px;
  }

  .split-intro,
  .two-columns,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .feature-card:nth-child(2n) {
    border-right: 0;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(167, 132, 71, 0.28);
  }

  .profile-process {
    background: linear-gradient(110deg, #1b2422, #132b25);
  }

  .decor-mark {
    width: 58%;
    opacity: 0.25;
    background-size: auto 105%;
  }

  .contact-panel {
    max-width: 720px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --mobile-gutter: 18px;
  }

  .container {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  .site-header {
    height: 70px;
  }

  .header-inner {
    gap: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    font-size: 30px;
    letter-spacing: -6px;
  }

  .brand-name {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .menu-toggle {
    margin-right: -8px;
  }

  .site-nav {
    top: 70px;
    padding: 22px var(--mobile-gutter) 26px;
  }

  .hero,
  .hero-content {
    min-height: 665px;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 132px;
    padding-bottom: 94px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-media {
    background-position: 68% center;
    transform: none;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(17, 17, 17, 0.94) 0%,
      rgba(17, 17, 17, 0.88) 55%,
      rgba(17, 17, 17, 0.72) 100%
    );
  }

  .hero::before,
  .hero::after,
  .site-footer::before,
  .site-footer::after {
    display: none;
  }

  h1 {
    font-size: clamp(35px, 10.4vw, 37px);
    line-height: 1.02;
    letter-spacing: -0.025em;
  }

  .hero-copy p {
    max-width: none;
    margin: 18px 0 22px;
    font-size: 12px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 42px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .hero-note {
    align-items: center;
    gap: 9px;
    font-size: 10px;
    line-height: 1.35;
  }

  .note-icon {
    flex: 0 0 auto;
    font-size: 20px;
  }

  .scroll-cue {
    left: 0;
    bottom: 20px;
    height: 42px;
    display: flex;
    align-items: center;
    padding-left: 13px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0;
  }

  .scroll-cue::before {
    top: 0;
    width: 1px;
    height: 24px;
    background: var(--gold-light);
  }

  .scroll-cue::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    width: 1px;
    height: 18px;
    background: rgba(232, 203, 131, 0.28);
  }

  .section {
    padding: 58px 0 30px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 10px;
  }

  .section h2 {
    font-size: clamp(27px, 8.2vw, 34px);
    line-height: 1.05;
  }

  .split-intro {
    gap: 28px;
  }

  .split-intro p {
    font-size: 12px;
    line-height: 1.65;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .feature-card,
  .feature-card:nth-child(2n) {
    min-height: 0;
    padding: 30px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(167, 132, 71, 0.28);
  }

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

  .feature-icon {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .feature-card h3 {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .feature-card p {
    font-size: 11px;
    line-height: 1.55;
  }

  .profile-process {
    border-top-width: 0;
    background: linear-gradient(110deg, #172520, #102a23);
  }

  .two-columns {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .profile-process p {
    font-size: 11px;
    line-height: 1.62;
  }

  .check-list {
    padding-top: 20px;
  }

  .check-list li {
    padding: 14px 4px 14px 31px;
    font-size: 10px;
    line-height: 1.4;
  }

  .check-list li::before {
    left: 10px;
  }

  .process-list {
    margin-top: 30px;
  }

  .process-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 25px;
  }

  .process-list li:not(:last-child)::after {
    top: 43px;
    left: 20px;
    height: 31px;
  }

  .step-number {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .process-list h3 {
    margin: 4px 0 7px;
    font-size: 16px;
  }

  .process-list p {
    font-size: 10px;
    line-height: 1.55;
  }

  .decor-mark {
    top: auto;
    right: -16%;
    bottom: -5%;
    width: 92%;
    height: 58%;
    opacity: 0.13;
    background-position: right bottom;
    background-size: auto 112%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 40%, #000 72%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 40%, #000 72%);
  }

  .meetings {
    overflow: hidden;
  }

  .center-heading {
    margin-bottom: 38px;
  }

  .center-heading p {
    font-size: 11px;
    line-height: 1.6;
  }

  .meeting-grid-wrap::before {
    top: -18px;
    right: -18px;
    width: 80%;
    height: calc(100% + 36px);
  }

  .meeting-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .meeting-card {
    min-height: 0;
    aspect-ratio: 1.85 / 1;
  }

  .meeting-card span {
    left: 17px;
    bottom: 16px;
    font-size: 14px;
  }

  .meeting-card span::before {
    width: 30px;
    margin-bottom: 6px;
  }

  .ornament {
    margin-top: 50px;
  }

  .ornament::before,
  .ornament::after {
    width: min(29vw, 100px);
  }

  .contact-section {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .contact-panel {
    width: calc(100% - (var(--mobile-gutter) * 2));
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .curation-card,
  .support-card {
    padding: 32px 21px;
  }

  .curation-card h2,
  .support-card h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .curation-card p,
  .support-card p {
    margin: 15px 0 22px;
    font-size: 11px;
    line-height: 1.65;
  }

  .contact-person {
    gap: 12px;
    padding: 11px 13px;
  }

  .contact-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .contact-person strong {
    font-size: 12px;
  }

  .contact-person small {
    font-size: 11px;
  }

  .footer-inner {
    min-height: 160px;
    padding-inline: 18px;
    text-align: center;
  }

  .footer-mark {
    margin-bottom: 13px;
    font-size: 44px;
  }

  .footer-inner p {
    max-width: 280px;
    font-size: 9px;
    line-height: 1.5;
  }
}

/* Very small mobile */
@media (max-width: 380px) {
  :root {
    --mobile-gutter: 15px;
  }

  .brand-name {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .brand-mark {
    font-size: 28px;
  }

  .hero,
  .hero-content {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 124px;
  }

  h1 {
    font-size: 35px;
  }

  .hero-copy p {
    font-size: 11px;
  }

  .curation-card,
  .support-card {
    padding-inline: 19px;
  }
}

.hero-content {
  position: relative;
}


.hero-video-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-43%);
    width: 357px;
    aspect-ratio: 9 / 16;
    max-height: 470px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: #111 url(assets/img/video.png) no-repeat center / cover;
    overflow: hidden;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    transition: transform .35s ease, box-shadow .35s ease;
}


.hero-video-card:hover {
  transform:
    translateY(-50%)
    scale(1.015);

  box-shadow:
    0 25px 60px rgba(0,0,0,.35);
}


.hero-video-preview {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* leve escurecimento */
.hero-video-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.08),
      rgba(0,0,0,.22)
    );

  pointer-events: none;
}


/* botão play */
.hero-video-play {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f4f0e8;

  transition:
    transform .25s ease,
    background .25s ease;
}


.hero-video-play svg {
  width: 27px;
  height: 27px;

  fill: #181818;

  margin-left: 4px;
}


.hero-video-card:hover .hero-video-play {
  transform:
    translate(-50%, -50%)
    scale(1.08);

  background: #fff;
}
.video-modal {
  position: fixed;
  inset: 0;

  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .3s ease,
    visibility .3s ease;
}


.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}


.video-modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,.88);

  backdrop-filter: blur(7px);
}


.video-modal-content {
  position: relative;

  z-index: 2;

  height: min(88vh, 900px);

  aspect-ratio: 9 / 16;

  background: #000;

  border-radius: 8px;

  overflow: visible;

  box-shadow:
    0 30px 100px rgba(0,0,0,.6);
}


.video-modal-content video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;

  border-radius: 8px;

  background: #000;
}


.video-modal-close {
  position: absolute;

  top: -15px;
  right: -50px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;

  background: rgba(20,20,20,.7);

  color: #fff;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  z-index: 3;
}
@media (max-width: 900px) {

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
        width: 90%;
        max-width: 100%;
        margin: auto;
        text-align: center;
    }

  .hero-video-card {
    position: relative;

    top: auto;
    right: auto;

    transform: none;

    width: min(100%, 320px);
    max-height: none;

    margin:
      40px auto
      90px;
  }

  .hero-video-card:hover {
    transform: none;
  }

}
@media (max-width: 640px) {

  .hero-video-card {
      width: 100%;
      max-width: 300px;
      margin-top: 35px;
      height: 300px;
      margin-bottom: 0;
  }

  .hero-video-play {
    width: 58px;
    height: 58px;
  }


  .video-modal {
    padding: 20px;
  }

  .video-modal-content {
    width: 100%;
    max-width: 420px;

    height: auto;

    aspect-ratio: 9 / 16;
  }

  .video-modal-close {
    top: -50px;
    right: 0;
  }

}