* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  overflow: hidden;
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #000000;
  background-color: #000000;
  margin: 0;
  padding: 0;
}

body.loaded {
  overflow-x: hidden;
  overflow-y: auto;
}

[data-scroll-container] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded [data-scroll-container] {
  opacity: 1;
}

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

/* Container Principal */
[data-scroll-container] {
  width: 100%;
  max-width: 2186px;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
}

/* Site Header / Menu */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 2em 2.5em;
  padding-left: calc((100% - 2186px) / 2 + 2.5em);
  padding-right: calc((100% - 2186px) / 2 + 2.5em);
  background-color: transparent;
}

.site-header__container {
  max-width: 2186px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.site-header__logo {
  display: flex;
  align-items: flex-end;
  opacity: 1;
  transition: opacity 0.3s ease;
  padding-bottom: 0.5em;
}

/* Hide logo when footer is in viewport - will be controlled by ScrollTrigger */
.site-header__logo {
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-header__logo-img {
  width: auto;
  height: 40px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Menu removido - apenas hambúrguer */

/* Full Screen Navigation */
.bold-nav-full {
  z-index: 300;
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.bold-nav-full__bar {
  z-index: 300;
  justify-content: flex-end;
  width: 100%;
  padding: 2.5em;
  display: flex;
  position: absolute;
  align-items: center;
  pointer-events: none;
}

.bold-nav-full__logo {
  pointer-events: auto;
  color: #FFFFFF;
  justify-content: center;
  align-items: center;
  width: 8em;
  height: 2em;
  display: flex;
  opacity: 0;
  visibility: hidden;
}

.bold-nav-full__logo img {
  width: 100%;
  height: auto;
  display: block;
}

[data-navigation-status="active"] .bold-nav-full__logo {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease 0.3s, visibility 0.6s ease 0.3s;
}

/* Hamburger */
.bold-nav-full__hamburger {
  pointer-events: auto !important;
  color: #FFFFFF;
  cursor: pointer;
  background-color: #000000;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 5em;
  height: 5em;
  display: flex;
  position: relative;
  overflow: visible;
  opacity: 1 !important;
  transform: scale(1) translateY(0);
  visibility: visible !important;
  transition: background-color 0.3s ease;
  z-index: 300;
}

.bold-nav-full__hamburger:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar {
  background-color: #FFFFFF;
  width: 1.2em;
  height: 0.1em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.3s ease;
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(1) {
  top: calc(50% - 0.35em);
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(2) {
  top: 50%;
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(3) {
  top: calc(50% + 0.35em);
}

/* Hamburger - Hover */
.bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(1) {
  transform: translateX(-50%) scaleX(0.5);
}

.bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(3) {
  transform: translateX(-50%) scaleX(0.5);
}

/* Hamburger (Navigation Open) */
[data-navigation-status="active"] .bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

[data-navigation-status="active"] .bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) translateX(-150%);
}

[data-navigation-status="active"] .bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

/* Hamburger - Hover (Navigation Open) */
[data-navigation-status="active"] .bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(1) {
  transform: translateX(-50%) rotate(45deg) scaleX(0.7);
}

[data-navigation-status="active"] .bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg) scaleX(0.7);
}

/* Tile */
.bold-nav-full__tile {
  pointer-events: auto;
  background-color: #000000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  transition: clip-path 1s cubic-bezier(0.9, 0, 0.1, 1);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

/* Tile (Navigation Open) */
[data-navigation-status="active"] .bold-nav-full__tile {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.bold-nav-full__ul {
  flex-flow: column;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}

.bold-nav-full__li {
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.bold-nav-full__link {
  color: #FFFFFF;
  letter-spacing: -0.04em;
  padding-left: 0.075em;
  padding-right: 0.075em;
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: calc(4vw + 4vh);
  font-weight: 200;
  line-height: 1.1;
  text-decoration: none;
  text-transform: capitalize;
  transform: translateY(100%) rotate(5deg);
  transition: transform 0.75s cubic-bezier(0.7, 0, 0.3, 1);
}

.bold-nav-full__li:nth-child(1) .bold-nav-full__link {
  transition-delay: 0.2s;
}

.bold-nav-full__li:nth-child(2) .bold-nav-full__link {
  transition-delay: 0.15s;
}

.bold-nav-full__li:nth-child(3) .bold-nav-full__link {
  transition-delay: 0.1s;
}

/* Tile - Links (Navigation Open) */
[data-navigation-status="active"] .bold-nav-full__link {
  transform: translateY(0%) rotate(0.001deg);
  transition-delay: 0.3s;
}

[data-navigation-status="active"] .bold-nav-full__li:nth-child(1) .bold-nav-full__link {
  transition-delay: 0.3s;
}

[data-navigation-status="active"] .bold-nav-full__li:nth-child(2) .bold-nav-full__link {
  transition-delay: 0.35s;
}

[data-navigation-status="active"] .bold-nav-full__li:nth-child(3) .bold-nav-full__link {
  transition-delay: 0.4s;
}

.bold-nav-full__link-text {
  text-shadow: 0 1.1em 0;
  display: block;
  position: relative;
}

/* Tile - Links (Hover) */
.bold-nav-full__li {
  transition: opacity 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.bold-nav-full__ul:has(.bold-nav-full__li:hover) .bold-nav-full__li {
  opacity: 0.15;
}

.bold-nav-full__ul:has(.bold-nav-full__li:hover) .bold-nav-full__li:hover {
  opacity: 1;
}

.bold-nav-full__link .bold-nav-full__link-text {
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transform: translateY(0%) rotate(0.001deg);
}

.bold-nav-full__link:hover .bold-nav-full__link-text {
  transform: translateY(-100%) rotate(0.001deg);
}

@media screen and (max-width: 768px) {
  .bold-nav-full__bar {
    padding: 1.5em;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .bold-nav-full__link {
    font-size: calc(3vw + 3vh);
  }
}

@media (max-width: 2186px) {
  .site-header {
    padding: 2em 2.5em;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
}

@media screen and (max-width: 1200px) {
  .site-header {
    padding: 1.5em 2em;
  }

}

@media screen and (max-width: 768px) {
  .site-header {
    padding: 1em 1.5em;
    padding-top: 50px;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .site-header__container {
    justify-content: space-between;
    max-width: 100%;
    box-sizing: border-box;
    align-items: flex-end;
  }

  .site-header__logo {
    flex-shrink: 0;
    padding-bottom: 1em;
    margin-top: -10px;
  }

  .site-header__logo-img {
    height: 30px;
    width: auto;
    min-width: 120px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .bold-nav-full__hamburger {
    width: 4.5em;
    height: 4.5em;
  }

  .bold-nav-full__hamburger .bold-nav-full__hamburger-bar {
    width: 1em;
  }
}

/* Seção Top */
.top {
  position: relative;
  width: 100%;
  height: 1068px;
  background-color: #000000;
  overflow: hidden;
  margin-top: -100px;
}

.top__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.top__background-video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

.top__menu {
  position: absolute;
  top: 97px;
  right: calc((100% - 2186px) / 2 + 175px);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 39.81px;
  height: 26px;
}

@media (max-width: 2186px) {
  .top__menu {
    right: 40px;
  }
}

.top__menu-icon {
  width: 100%;
  height: 100%;
}

.top__title-group {
  position: absolute;
  top: 50%;
  right: calc((100% - 2186px) / 2 + 40px);
  transform: translateY(-50%);
  width: 1160px;
  max-width: calc(100% - 80px);
  height: 525px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  visibility: visible;
  opacity: 1;
}


@media (max-width: 2186px) {
  .top__title-group {
    right: 40px;
  }
}

.top__title {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 0;
}

.top__title--craft {
  position: relative;
  width: auto;
  height: auto;
  font-weight: 200;
  font-size: 169.17897491455079px;
  line-height: 1.1930000210240292em;
  text-align: right;
  margin-bottom: 0;
  white-space: nowrap;
}

.top__title--matters {
  position: relative;
  width: auto;
  height: auto;
  font-weight: 400;
  font-size: 169.17897491455079px;
  line-height: 1.1930000210240292em;
  text-align: right;
  margin-top: -60px;
  white-space: nowrap;
}

.top__image {
  position: absolute;
  top: 121px;
  left: calc((100% - 2186px) / 2 + 107px);
  z-index: 3;
  width: 118.72px;
  height: 48.1824px;
  max-width: calc(100% - 214px);
}

@media (max-width: 2186px) {
  .top__image {
    left: 107px;
    max-width: calc(100% - 214px);
  }
}

.top__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* Seção Body */
.body {
  position: relative;
  width: 100%;
  max-width: 2186px;
  height: 615px;
  min-height: 615px;
  background-color: #000000;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  margin-top: 80px;
}

/* Background removido - seção em preto */

.body__content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 5;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.body__text {
  position: relative;
  left: auto;
  top: auto;
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  font-size: 96.68805694580078px;
  line-height: 1.193;
  color: #FFFFFF;
  margin: 0 auto 0.735em;
  padding: 0;
  text-align: center;
  letter-spacing: -0.014em;
  text-transform: lowercase;
  width: auto;
  height: auto;
  white-space: nowrap;
  pointer-events: auto;
  opacity: 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

/* Removido estilo específico - usando o genérico [data-underline-link] que está mais abaixo no arquivo */

.body__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 0.56em;
  height: 0.65em;
  visibility: visible;
  opacity: 0;
  flex-shrink: 0;
  font-size: 96.68805694580078px;
}

@media (max-width: 2186px) {
  .body__text {
    left: auto;
    font-size: clamp(48px, 4.4vw, 96.68805694580078px);
    width: auto;
    max-width: 90%;
  }

  .body__icon {
    left: auto;
    top: auto;
    width: 0.56em;
    height: 0.65em;
    font-size: clamp(48px, 4.4vw, 96.68805694580078px);
  }
}

.body__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Responsivo - Tablet */
@media screen and (max-width: 1200px) {
  /* Prevent horizontal scroll on tablet */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  [data-scroll-container] {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .top {
    height: auto;
    min-height: 100vh;
    padding: 40px 2.5em;
    padding-top: 120px;
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .top__background {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .top__background-video {
    max-width: 100vw;
    width: 100vw;
    min-width: 100vw;
  }

  .top__title-group {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    padding: 20px;
    max-width: 100%;
    transform: none;
    align-items: flex-start;
    box-sizing: border-box;
  }

  .top__title--craft {
    position: relative;
    width: 100%;
    height: auto;
    font-size: clamp(80px, 15vw, 169px);
    top: auto;
    left: auto;
    text-align: left;
    visibility: visible;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
  }

  .top__title--matters {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    font-size: clamp(80px, 15vw, 169px);
    margin-top: -40px;
    text-align: left;
    visibility: visible;
    white-space: nowrap;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .top__image {
    position: relative;
    width: clamp(150px, 20vw, 212px);
    height: auto;
    top: auto;
    left: auto;
    margin: 20px auto;
    max-width: 100%;
  }

  .top__menu {
    right: 20px;
    top: 30px;
  }

  .body {
    height: auto;
    min-height: 60vh;
    max-height: none;
    margin-top: 120px;
  }

  .body__content {
    width: 100%;
    height: 100%;
  }

  .body__text {
    position: relative;
    left: auto;
    top: auto;
    font-size: clamp(48px, 8vw, 96px);
    width: auto;
    max-width: 90%;
    text-align: center;
    line-height: 1.193;
    display: block;
    margin: 0 auto 1.05em;
  }

  .body__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 0.56em;
    height: 0.65em;
    font-size: clamp(48px, 8vw, 96px);
    flex-shrink: 0;
  }

  .projects__title {
    font-size: clamp(2em, 8vw, 3.5em);
  }

  /* Background removido */
}

/* Responsivo - Mobile */
@media screen and (max-width: 768px) {
  /* Prevent horizontal scroll on mobile */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
  }

  [data-scroll-container] {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .top {
    padding: 30px 1.5em;
    padding-top: 100px;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .top__background {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .top__background-video {
    left: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
    width: 100vw;
    min-width: 100vw;
  }

  .top__title-group {
    padding: 10px 1.5em;
    align-items: flex-start;
    position: absolute;
    bottom: 2em;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .top__title--craft {
    font-size: clamp(40px, 15vw, 120px);
    text-align: left;
    visibility: visible;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: visible;
    display: block;
    word-break: keep-all;
    text-overflow: clip;
  }

  .top__title--matters {
    font-size: clamp(40px, 15vw, 120px);
    text-align: left;
    margin-top: -30px;
    visibility: visible;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: visible;
    display: block;
    word-break: keep-all;
    text-overflow: clip;
  }

  .top__image {
    width: clamp(100px, 30vw, 212px);
    max-width: calc(100vw - 3em);
    box-sizing: border-box;
  }

  .top__menu {
    right: 15px;
    top: 20px;
    width: 30px;
    height: 20px;
    max-width: calc(100vw - 3em);
  }

  .body {
    min-height: 50vh;
    max-height: none;
    padding-top: 100px;
    margin-top: 150px;
  }

  .body__content {
    width: 100%;
    height: 100%;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .body__text {
    position: relative;
    left: auto;
    top: auto;
    font-size: clamp(36px, 10vw, 72px);
    width: auto;
    max-width: 90%;
    text-align: center;
    line-height: 1.193;
    padding: 0 1.5em;
    margin: 0 auto 1.05em;
    display: block;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .body__text[data-underline-link] {
    display: inline-block !important;
    padding: 0 !important;
  }

  .body__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 0.56em;
    height: 0.65em;
    font-size: clamp(36px, 10vw, 72px);
    flex-shrink: 0;
  }
}

/* Loader Styles */
.loader {
  z-index: 100;
  color: #E0E6D4;
  width: 100%;
  height: 100dvh;
  position: fixed;
  inset: 0% 0% auto;
}

.loader__bg {
  background-color: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.loader__container {
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.loader__bg-bar {
  z-index: 1;
  transform-origin: 0%;
  transform-style: preserve-3d;
  background-color: #000000;
  width: 100%;
  height: .5em;
  position: absolute;
  inset: auto 0% 0%;
  transform: scale3d(0, 1, 1);
}

.loader__logo-wrap {
  justify-content: center;
  align-items: center;
  width: 9.6em;
  height: auto;
  min-height: 3em;
  display: flex;
  position: relative;
}

.loader__logo-item {
  width: 100%;
  position: absolute;
}

.loader__logo-item.is--base {
  opacity: .2;
}

.loader__logo-item.is--top {
  -webkit-clip-path: inset(0% 100% 0% 0%);
  clip-path: inset(0% 100% 0% 0%);
}

.loader__logo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.loader__text-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 3.5em;
}

.loader__text-el {
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: -.25em;
  padding-bottom: .25em;
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #E0E6D4;
  position: absolute;
  font-size: 90%;
}

[data-load-reset] {
  opacity: 0;
}

/* Seção Refracted Glass Effect */
.refract {
  position: relative;
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
  padding: 5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.refract__wrapper {
  aspect-ratio: 1 / 1.25;
  border-radius: 0.75em;
  width: 100%;
  max-width: 25.6em; /* 20% menor que 32em */
  position: relative;
  overflow: hidden;
}

.refract__item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  object-fit: cover;
  border-radius: 0.75em;
  opacity: 0;
  will-change: opacity, transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: opacity 0.3s ease;
}

.refract__text-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100vw;
  max-width: 100%;
  transform: translateY(-50%);
  z-index: 20;
  overflow: hidden;
  pointer-events: none;
}

.refract__text {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  width: fit-content;
}

.refract__text-inner {
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 200;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
  padding: 0 0.5em;
  display: inline-block;
  white-space: nowrap;
}


@media screen and (max-width: 768px) {
  .refract {
    padding: 3em 1.5em;
    min-height: auto;
  }

  .refract__wrapper {
    max-width: 100%;
  }
}

/* Seção Accelerating Globe */
/* Seção 3D Image Carousel */
.img-carousel-section {
  position: relative;
  width: 100%;
  background-color: #000000;
  overflow: hidden;
}

.img-carousel__wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.img-carousel__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 200;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
  margin: 0;
  padding: 0;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.img-carousel__list {
  z-index: 1;
  perspective: 90vw;
  perspective-origin: 50%;
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  width: 80vw;
  height: 50vw;
  margin-left: auto;
  margin-right: auto;
  font-size: 1vw;
  display: flex;
  position: relative;
}

.img-carousel__panel {
  z-index: 0;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: stretch;
  width: 13em;
  height: 39em;
  display: flex;
  position: absolute;
}

.img-carousel__panel:nth-of-type(even) {
  justify-content: center;
}

.img-carousel__item {
  aspect-ratio: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.img-carousel__img {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

/* Seção Highlight Text */
.highlight-text-section {
  position: relative;
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
  padding: 8em 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.highlight-text-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 2.5em;
}

.highlight-text-heading {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.75rem, 4.2vw, 3.5rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  text-transform: none;
  width: 100%;
  max-width: 100%;
}

.highlight-text-heading .char {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .highlight-text-section {
    padding: 5em 1.5em;
    min-height: 50vh;
    margin-top: -100px;
  }
}

/* Seção Projects com Cursor Follower */
.projects {
  position: relative;
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
  padding: 5em 0;
}

.projects__title {
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 3.5em;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  margin: 0 auto 1.728em;
  padding: 0;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  text-decoration: none;
  position: relative;
}

.projects__symbol {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 3em;
  width: 24px;
  height: 24px;
  position: relative;
}

.projects__symbol-img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.preview-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preview-collection {
  width: 100%;
  margin-top: 2em;
}

.preview-item__row {
  display: flex;
  align-items: center;
  width: 100%;
}

.preview-item__row--header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1em;
  margin-bottom: 0;
}

.preview-item__col {
  flex: 1;
}

.preview-item__col.is--large {
  flex: 1;
  max-width: none;
  padding-right: 2em;
}

.preview-item__col.is--medium {
  flex: 0 0 auto;
  width: 25%;
  text-align: center;
  padding: 0 1em;
}

.preview-item__col.is--small {
  flex: 0 0 auto;
  width: 15%;
  text-align: center;
  padding: 0 1em;
}

.preview-container__label {
  color: rgba(255, 255, 255, 0.6);
  text-transform: none;
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1em;
  font-weight: 400;
}

.preview-list {
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}

.preview-item {
  width: 100%;
  transition: opacity .2s;
}

.preview-item__heading-wrapper {
  position: relative;
  display: inline-block;
}

.preview-item__status {
  position: absolute;
  top: -0.3em;
  right: calc(-2.5em - 10px);
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.75em;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.preview-item__heading {
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1;
  color: #FFFFFF;
  text-align: left;
}

.preview-item__text {
  margin-bottom: 0;
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  text-align: center;
}

.preview-item__visual {
  aspect-ratio: 1 / 1.25;
  width: 20em;
  display: none;
  position: absolute;
  overflow: hidden;
}

.preview-follower [data-follower-visual] {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.preview-item__inner {
  width: 100%;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 10;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
}

.preview-item__visual-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.preview-follower {
  z-index: 50;
  aspect-ratio: 1 / 1.25;
  pointer-events: none !important;
  border-radius: .75em;
  justify-content: center;
  align-items: center;
  width: 20em;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.preview-follower__label {
  z-index: 2;
  position: absolute;
  opacity: 0;
  transform: translate(0px, 100%);
  transition: opacity 0.1s ease, transform 0.6s cubic-bezier(0.65, 0.1, 0, 1);
}

.preview-follower__label-span {
  background-color: #fff;
  border-radius: .25em;
  padding: .75em 1.25em;
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1em;
  color: #000000;
}

.preview-follower__inner {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.1s ease, transform 0.6s cubic-bezier(0.65, 0.1, 0, 1);
}


@media screen and (min-width: 992px) {
  .preview-item:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}

@media (hover: hover) and (min-width: 992px) {
  body:has([data-follower-collection]:hover) .preview-follower__inner {
    opacity: 1;
    transform: scale(1);
  }

  body:has([data-follower-collection]:hover) .preview-follower__label {
    opacity: 1;
    transform: translate(0px, 0%);
  }

  body:has(.preview-item:hover) .preview-item:not(:hover) {
    opacity: 0.5;
  }
}

@media screen and (max-width: 991px) {
  .preview-item__row {
    grid-row-gap: .5em;
  }

  .preview-item__row.tablet--hide {
    display: none;
  }

  .preview-item__col.is--large {
    flex: none;
    order: -1;
    width: 100%;
    max-width: none;
  }

  .preview-item__col.is--medium {
    order: -1;
    max-width: 80%;
  }

  .preview-item__col.is--small {
    text-align: right;
    max-width: 20%;
  }

  .preview-item__col.is--small.tablet--hide {
    display: none;
  }

  .preview-list {
    grid-column-gap: 1em;
    grid-row-gap: 4em;
    flex-flow: wrap;
  }

  .preview-item {
    width: calc(50% - .5em);
  }

  .preview-item__heading {
    font-size: 2em;
  }

  .preview-item__visual {
    border-radius: .75em;
    order: -1;
    width: 100%;
    margin-bottom: 1em;
    display: block;
    position: relative;
    border: none !important;
    outline: none !important;
  }

  .preview-item__visual img,
  .preview-item__visual-img,
  .preview-item__visual img:focus,
  .preview-item__visual-img:focus,
  .preview-item__visual img:active,
  .preview-item__visual-img:active,
  .preview-item__visual img:hover,
  .preview-item__visual-img:hover {
    border: none !important;
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
  }

  .preview-item__inner {
    border: none !important;
    flex-flow: column;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
  }

  .preview-follower {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .preview-container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .preview-list {
    grid-row-gap: 3em;
  }

  .preview-item {
    width: 100%;
  }

  .projects__title {
    font-size: 2em;
    padding: 0 1em;
  }

  .projects__title[data-underline-link] {
    display: inline-block !important;
    padding: 0 !important;
  }

  .horizontal-section__header .projects__title[data-underline-link] {
    display: inline-block !important;
    padding: 0 !important;
  }
}

/* Footer com Parallax */
.footer-wrap {
  position: relative;
  overflow-x: visible;
  overflow-y: visible;
  background-color: #E0E6D4;
  padding: 0;
  padding-bottom: 0;
  margin: 0;
  margin-bottom: 0;
  min-height: auto;
  clip-path: none;
  line-height: 0;
  pointer-events: auto !important;
  z-index: 200;
}

.demo-footer {
  grid-column-gap: 5.25em;
  grid-row-gap: 5.25em;
  letter-spacing: -.02em;
  flex-flow: column;
  justify-content: flex-start;
  min-height: 100svh;
  padding: 0;
  padding-top: 2.5em;
  padding-bottom: clamp(15rem, 30vw, 25rem);
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  display: flex;
  position: relative;
  background-color: #E0E6D4;
  color: #000000;
  overflow-x: visible;
  overflow-y: visible;
  will-change: transform;
  z-index: 200;
  pointer-events: auto !important;
}

.demo-footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3em;
  width: 100%;
  max-width: 2186px;
  margin: 0 auto;
  margin-top: 5.5em;
  padding-left: max(2.5em, calc((100% - 2186px) / 2 + 2.5em));
  padding-right: max(2.5em, calc((100% - 2186px) / 2 + 2.5em));
  z-index: 201;
  position: relative;
  pointer-events: auto !important;
}

.demo-footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: flex-start;
  position: relative;
  z-index: 201;
  pointer-events: auto !important;
}

.demo-footer__heading {
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1.125em;
  font-weight: 600;
  color: #000000;
  margin: 0;
  margin-bottom: 1.25em;
}

.demo-footer__social {
  display: flex;
  gap: 1em;
  align-items: flex-start;
  position: relative;
  z-index: 201;
  pointer-events: auto !important;
}

.demo-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #000000;
  transition: opacity 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 202;
  pointer-events: auto !important;
}

.demo-footer__social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.demo-footer__social-link--medium .demo-footer__social-icon {
  width: 27.36px;
  height: 27.36px;
}

.demo-footer__social-link:hover {
  opacity: 0.7;
}

.demo-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  position: relative;
  z-index: 201;
  pointer-events: auto !important;
}

.demo-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.499125em;
}

.demo-footer__contact-item:last-child {
  display: none;
}

.demo-footer__contact-label {
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.75em;
  font-weight: 400;
  color: #000000;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.demo-footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 202;
  pointer-events: auto !important;
}

.demo-footer__contact-link:hover {
  opacity: 0.7;
}

.demo-footer__contact-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.6;
}

.demo-footer__pages-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5em;
  align-items: flex-start;
  position: relative;
  z-index: 201;
  pointer-events: auto !important;
}

.demo-footer__page-link {
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  position: relative;
  pointer-events: auto !important;
  z-index: 202;
  cursor: pointer;
  transition: color 0.3s ease, opacity 0.3s ease;
  line-height: 1.5;
  padding-bottom: 0.2em;
}

.demo-footer__page-link::after {
  content: "↗";
  font-size: 0.75em;
  opacity: 0.6;
  margin-left: 0.375em;
  pointer-events: none;
}

.demo-footer__page-link[data-underline-link]::before {
  width: calc(100% - 1.5em);
  pointer-events: none;
}

.demo-footer__page-link:hover {
  opacity: 0.7;
}

.demo-footer__links-row {
  grid-column-gap: 1.75em;
  grid-row-gap: 1.75em;
  display: flex;
}

.demo-footer__logo-row {
  grid-column-gap: 0.7em;
  grid-row-gap: 0.7em;
  flex-flow: column;
  display: flex;
}

.demo-footer__links {
  grid-column-gap: .175em;
  grid-row-gap: .175em;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.demo-footer__a {
  color: inherit;
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 2.75em;
  line-height: 1;
  text-decoration: none;
  font-weight: 700;
}

.demo-footer__logo {
  width: 15em;
  display: none;
}

.demo-footer__logo-img {
  width: 100%;
  height: auto;
  display: none;
}

.demo-footer__logo-row {
  display: none;
}

.demo-eyebrow {
  opacity: .5;
  margin-bottom: 0;
  font-family: 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1.3125em;
  font-weight: 600;
  color: #0C110C;
}

.footer-wrap__dark {
  opacity: 0;
  pointer-events: none;
  background-color: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Underline Link Effect */
[data-underline-link] {
  text-decoration: none;
  position: relative;
}

[data-underline-link] {
  position: relative;
}

[data-underline-link]::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  background-color: currentColor;
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {

  [data-hover]:hover [data-underline-link]::before,
  [data-underline-link]:hover::before {
    transform-origin: left;
    transform: scaleX(1) rotate(0.001deg);
  }
}

/* Responsivo Footer */
@media screen and (max-width: 991px) {
  .demo-footer__content {
    grid-template-columns: 1fr;
    gap: 2.5em;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .demo-footer__col {
    gap: 1.25em;
  }

  .demo-footer__heading {
    font-size: 1em;
    margin-bottom: 1em;
  }

  .demo-footer__links-row {
    flex-flow: column;
  }

  .demo-footer__logo-row {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
  }

  .demo-footer__col {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .demo-footer {
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-bottom: 0;
  }

  .demo-footer__content {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .demo-eyebrow {
    font-size: 1em;
  }

  .demo-footer__col {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .demo-footer__a {
    font-size: 1.75em;
  }

  .demo-footer__pages-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Footer Love Text - Mobile adjustments */
  .demo-footer__love-text-wrapper {
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    align-items: flex-end;
    overflow-x: visible;
  }
  
  .demo-footer__love-text {
    padding: 0 1em;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .demo-footer__love-text-inner {
    font-size: clamp(8rem, 35vw, 14rem);
    line-height: 1;
    vertical-align: bottom;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/* Footer Love Text Animation */
.demo-footer__love-text-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow-x: visible;
  overflow-y: visible;
  z-index: 1;
  pointer-events: none !important;
  padding: 0;
  margin: 0;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  clip-path: none;
  clip: auto;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0;
}

.demo-footer__love-text {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  width: fit-content;
  margin: 0;
  margin-bottom: 0;
  padding: 0 2.5em;
  padding-bottom: 0;
  align-items: flex-end;
  line-height: 0.95;
  position: relative;
  pointer-events: none !important;
  z-index: 1;
}

.demo-footer__love-text-inner {
  font-family: 'Helvetica', Helvetica, Arial, sans-serif;
  font-size: clamp(12rem, 25vw, 19.4rem);
  font-weight: 300;
  color: #000000;
  line-height: 0.95;
  padding: 0;
  margin: 0;
  margin-right: 1em;
  padding-bottom: 0;
  margin-bottom: 0;
  display: inline-block;
  white-space: nowrap;
  font-style: italic;
  vertical-align: bottom;
  overflow: visible;
  pointer-events: none !important;
  user-select: none;
}

.demo-footer__love-text-inner:last-child {
  margin-right: 0;
}

/* Logo Wall Cycle Section */
.logo-wall-section {
  padding: 4em 2.5em;
  padding-top: 2em;
  padding-bottom: 8em;
  background-color: #000000;
  max-width: 2186px;
  margin: 0 auto;
  padding-left: calc((100% - 2186px) / 2 + 2.5em);
  padding-right: calc((100% - 2186px) / 2 + 2.5em);
}

.logo-wall-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3em;
}

.logo-wall-section .projects__title {
  margin-bottom: 0;
}

.logo-wall-section .projects__symbol {
  margin-top: 1.56em;
  margin-bottom: 0;
}

.logo-wall {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-wall__collection {
  width: 100%;
}

.logo-wall__list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
}

.logo-wall__item {
  width: 33.333%;
  position: relative;
}

/* Mostrar apenas 6 logos (2 linhas de 3 colunas) */
[data-logo-wall-list] [data-logo-wall-item]:nth-child(n+7) {
  display: none;
}

.logo-wall__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.logo-wall__logo-before {
  padding-top: 66.66%;
  width: 100%;
}

.logo-wall__logo-target {
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 21%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

.logo-wall__logo-img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  .logo-wall__item {
    width: 33.333%;
  }

  [data-logo-wall-list] [data-logo-wall-item]:nth-child(n+7) {
    display: none;
  }
}

/* Horizontal Scroll Section */
.horizontal-section {
  width: 100%;
  background-color: #000000;
  padding: 6em 2.5em 0;
}

.horizontal-section__header {
  width: 100%;
  max-width: 2186px;
  margin: 0 auto 4em;
  text-align: center;
}

.horizontal-section__header .projects__title {
  display: inline-block;
}

.horizontal__wrap {
  flex-flow: row;
  min-height: 100dvh;
  display: flex;
  overflow: hidden;
  background-color: #000000;
  position: relative;
  width: 100%;
}

.horizontal__panel {
  flex: none;
  width: 100%;
}

.horizontal__panel-inner {
  width: 100%;
  height: 100%;
  padding: 1.25em;
}

.demo-card {
  border-radius: 1.25em;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 3em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.demo-card__bg {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

.demo-card__inner {
  z-index: 1;
  position: relative;
}

.demo-card__bg-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.demo-header__h1 {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  letter-spacing: -0.04em;
  margin-top: 0;
  margin-bottom: 0.2em;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 0.95;
  color: #000000;
  text-transform: none;
}

.demo-header__h1::first-letter {
  text-transform: uppercase;
}

.demo-header__year {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(0.275rem, 2vw, 1.025rem);
  font-weight: 400;
  color: #000000;
  margin: 0;
  padding: 0;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .horizontal-section {
    padding: 4em 1.5em 0;
  }

  .horizontal-section__header {
    margin-bottom: 2em;
  }

  .demo-header__h1 {
    font-size: clamp(0.875rem, 4vw, 1.25rem);
    margin-bottom: 0.3em;
  }

  .demo-header__year {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  }

  .horizontal__wrap {
    flex-flow: column;
    min-height: auto;
    overflow-x: hidden;
  }

  .horizontal__panel {
    height: 30em;
    flex: none;
  }

  .horizontal__panel-inner {
    padding: 1em;
  }

  .demo-card {
    padding: 1.25em;
  }
}

/* Footer Credit */
.footer-credit {
  width: 100%;
  background-color: #E0E6D4;
  padding: 1em 0;
  text-align: center;
}

.footer-credit__text {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.75em;
  font-weight: 400;
  color: #000000;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .footer-credit {
    padding: 1.8em 0;
  }

  .footer-credit__text {
    font-size: 0.65em;
  }
}

/* WhatsApp Modal */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.whatsapp-modal {
  z-index: 100;
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
  touch-action: manipulation;
}

[data-whatsapp-modal-status="active"] .whatsapp-modal {
  pointer-events: auto;
}

.whatsapp-modal__card {
  transition: all 0.6s cubic-bezier(0.625, 0.05, 0, 1);
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  pointer-events: auto;
  background-color: #f8f6f3;
  border-radius: 1.5em;
  flex-flow: column;
  align-items: center;
  width: 20em;
  padding: 4.5em 2em 3.26em;
  display: flex;
  position: relative;
  transform: translateY(25%) rotate(0.001deg);
  opacity: 0;
  visibility: hidden;
}

[data-whatsapp-modal-status="active"] .whatsapp-modal__card {
  transform: translateY(0%) rotate(0.001deg);
  opacity: 1;
  visibility: visible;
}

.whatsapp-modal__qr-canvas {
  background-color: #0000001a;
  width: 8.75em;
  height: 8.75em;
}

[data-whatsapp-modal-qr-canvas]:has(svg) {
  background-color: transparent;
}

[data-whatsapp-modal-qr-canvas] svg rect {
  fill: transparent;
}

.whatsapp-modal__text {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  flex-flow: column;
  align-items: center;
  padding-top: 1em;
  display: flex;
}

.whatsapp-modal__h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1;
}

.whatsapp-modal__p {
  color: #0009;
  text-align: center;
  font-size: 1em;
}

.whatsapp-modal__btn {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #fff;
  cursor: pointer;
  background-color: #000000;
  border-radius: 30em;
  padding: 1em 1.5em;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
  margin-bottom: 0;
  border: none;
  font-family: inherit;
}

.whatsapp-modal__btn-span {
  color: #f8f6f3;
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
  font-family: inherit;
}

.whatsapp-modal__overlay-link, 
.whatsapp-modal__overlay-toggle {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.whatsapp-modal__close {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  display: flex;
  position: absolute;
  top: 1.5em;
  right: 1.5em;
}

.whatsapp-modal__close-bar {
  background-color: #000;
  width: 1.5em;
  height: .09375em;
  position: absolute;
  transform: rotate(-45deg);
}

.whatsapp-modal__close-bar.is--duplicate {
  transform: rotate(45deg);
}

.whatsapp-modal__dark {
  transition: all 0.6s cubic-bezier(0.625, 0.05, 0, 1);
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

[data-whatsapp-modal-status="active"] .whatsapp-modal__dark {
  opacity: 1;
  visibility: visible;
}

body.modal-open .bold-nav-full__hamburger {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-modal__btn.is--large {
  font-size: 1.25em;
}

.whatsapp-modal__icon-svg {
  width: 1.25em;
  margin-top: -.125em;
  margin-left: -.25em;
  display: block;
  position: relative;
}

/* Hide link on non-touch devices */
[data-whatsapp-modal-btn] [data-whatsapp-modal-link] {
  display: none;
}

/* Password Modal */
.password-modal {
  z-index: 100;
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.password-modal__card {
  transition: all 0.6s cubic-bezier(0.625, 0.05, 0, 1);
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  pointer-events: auto;
  background-color: #f8f6f3;
  border-radius: 1.5em;
  flex-flow: column;
  align-items: center;
  width: 20em;
  padding: 4.5em 2em 3.26em;
  display: flex;
  position: relative;
  transform: translateY(25%) rotate(0.001deg);
  opacity: 0;
  visibility: hidden;
}

[data-password-modal-status="active"] .password-modal__card {
  transform: translateY(0%) rotate(0.001deg);
  opacity: 1;
  visibility: visible;
}

.password-modal__text {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  flex-flow: column;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.password-modal__h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1;
}

.password-modal__p {
  color: #0009;
  text-align: center;
  font-size: 1em;
  margin: 0;
}

.password-modal__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
}

.password-modal__input-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.password-modal__input {
  width: 100%;
  padding: 1em 1.5em;
  border: 1px solid #ddd;
  border-radius: 30em;
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1em;
  color: #000;
  background-color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}

.password-modal__input:focus {
  border-color: #000;
}

.password-modal__error {
  color: #d32f2f;
  font-size: 0.875em;
  text-align: center;
  margin: 0;
  padding-top: 0.5em;
  display: none;
  width: 100%;
}

.password-modal__error.show {
  display: block;
}

.password-modal__btn {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: #fff;
  cursor: pointer;
  background-color: #000000;
  border-radius: 30em;
  padding: 1em 1.5em;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  border: none;
  font-family: inherit;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.password-modal__btn-span {
  color: #f8f6f3;
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
  font-family: inherit;
}

.password-modal__dark {
  transition: all 0.6s cubic-bezier(0.625, 0.05, 0, 1);
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

[data-password-modal-status="active"] .password-modal__dark {
  opacity: 1;
  visibility: visible;
}

.password-modal__close {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  display: flex;
  position: absolute;
  top: 1.5em;
  right: 1.5em;
}

.password-modal__close-bar {
  background-color: #000;
  width: 1.5em;
  height: .09375em;
  position: absolute;
  transform: rotate(-45deg);
}

.password-modal__close-bar.is--duplicate {
  transform: rotate(45deg);
}