/* ============================================
       DESIGN TOKENS (from Figma variables)
       ============================================ */
:root {
  /* Colors */
  --brand-yellow: #ffcb05;
  --brand-dark-gray: #626366;
  --brand-light-gray: #a4a6a9;
  --color-black: #000000;
  --color-white: #ffffff;
  --brand-cloud: #f0f0f0;

  /* Container */
  --container-max-width: 1840px;
  --container-padding: 40px;
  --content-max-width: 1760px;
}

/* ============================================
       RESET & BASE
       ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
  font-size: 100%;
}

@media (max-width: 1700px) {
  :root {
    font-size: 90%;
  }
}

@media (max-width: 1541px) {
  :root {
    font-size: 85%;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 95%;
  }
}

body {
  font-family: "Geologica", sans-serif;
  color: var(--brand-dark-gray);
  background: var(--color-white);
  overflow-x: hidden;
}

section {
  max-width: 100%;
  overflow: hidden;
}

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

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

/* ============================================
       REUSABLE TYPOGRAPHY CLASSES
       ============================================ */
.text-paragraph-18-light {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.3;
}

.text-heading-18-reg {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1;
}

.text-heading-22-reg {
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.2;
}

.text-heading-22-light-sub {
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 1.1;
}

.text-heading-22-bold {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.2;
}

.text-paragraph-22-reg {
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.3;
}

.text-paragraph-22-light {
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 1.3;
}

.text-title-70-thin {
  font-weight: 100;
  font-size: 4.375rem;
  line-height: 1.2;
}

.text-title-38-light {
  font-weight: 300;
  font-size: 2.375rem;
  line-height: 1.2;
}

.text-paragraph-16-light {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.2;
}

.text-heading-16-light {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.1;
}

.text-title-108-thin {
  font-weight: 100;
  font-size: 6.75rem;
  line-height: 1.1;
}

.text-title-56-bold {
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.3;
}

.text-title-55-bold {
  font-weight: 700;
  font-size: 3.4375rem;
  line-height: 1.1;
}

.text-paragraph-28-light {
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 1.3;
}

.text-paragraph-32-light {
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.3;
}

.text-display-170-ebold {
  font-weight: 800;
  font-size: 10.625rem;
  line-height: 1.3;
}

.text-display-170-ebold-compact {
  font-weight: 800;
  font-size: 10.625rem;
  line-height: 1;
  letter-spacing: -2px;
}

.text-display-140-reg {
  font-weight: 400;
  font-size: 8.75rem;
  line-height: 1.1;
}

.text-title-60-bold {
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1;
}

.text-caps-20-reg {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
}

.text-heading-38-light {
  font-weight: 300;
  font-size: 2.375rem;
  line-height: 1.3;
}

.text-heading-24-med {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.3;
}

.text-display-140-ebold {
  font-weight: 800;
  font-size: 8.75rem;
  line-height: 1.1;
}

.text-title-44-ebold {
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1.2;
}

.text-paragraph-32-light-wide {
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.6;
}

.text-heading-48-bold {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
}

.text-paragraph-24-light {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.3;
}

/* ============================================
       CONTAINER
       ============================================ */
.container {
  max-width: var(--container-max-width);
  width: 100%;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.content {
  max-width: var(--content-max-width);
  width: 100%;
  margin: 0 auto;
}

/* ============================================
       NAVBAR
       ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.navbar-custom-content {
  display: contents;
}

.navbar.scrolled {
  background-color: #ffffff;
  color: var(--brand-dark-gray);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .navbar__items a,
.navbar.scrolled .navbar__language span {
  color: var(--brand-dark-gray) !important;
}
.navbar.scrolled .navbar__logo {
  width: 96px;
  height: 60px;
  color: var(--brand-yellow) !important;

  svg {
    width: 96px;
    height: 60px;
  }
}

.navbar.scrolled .navbar__logo svg path[fill="#797979"] {
  fill: #797979 !important;
}

.navbar.scrolled .navbar__burger {
  color: var(--brand-dark-gray) !important;
}

.navbar.scrolled .container {
  padding-top: 16px;
  padding-bottom: 16px;
}

@media (max-width: 1441px) {
  .navbar.scrolled .container {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

@media (max-width: 1024px) {
  .navbar.scrolled .container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar.scrolled .navbar__logo {
    width: 64px;
    height: 32px;

    svg {
      width: 64px;
      height: 32px;
    }
  }
}

.navbar__language {
  color: var(--brand-yellow);
}
.navbar.scrolled .navbar__language {
  color: var(--brand-dark-gray) !important;
}

.navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  transition: padding 0.3s ease;
}

.navbar__logo {
  grid-column: 1;
  justify-self: start;
  width: 160px;
  height: 100px;
  color: var(--brand-yellow);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    color 0.3s ease;

  svg {
    width: 160px;
    height: 100px;
    transition:
      width 0.3s ease,
      height 0.3s ease;
  }
}

.navbar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar__items {
  grid-column: 2;
  justify-self: center;
  display: flex;
  gap: 48px;
  align-items: center;
}

.navbar__items a {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.1;
  color: var(--brand-yellow);
  white-space: nowrap;
}

.navbar__language {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 8px;
  align-items: center;
}

.navbar__language span {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.1;
  color: var(--brand-yellow);
  cursor: pointer;
}

/* GLOGAL   */
.card__image {
  position: relative;

  transition: all 0.5s ease;
}

.card__image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg, transparent, transparent 30%, rgba(255, 203, 5, 0.3));
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.card:hover .card__image::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
/* ============================================
       HERO SECTION
       ============================================ */

@keyframes heroFloatPro {
  0% {
    transform: translate3d(0, 0, 0) scale(1.05);
  }
  50% {
    transform: translate3d(0, -24px, 0) scale(1.065);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1.05);
  }
}

#page_home {
  .navbar__logo svg path[fill="#797979"] {
    fill: #fff;
  }

  .section-hero {
    position: relative;
    width: 100%;
    /* height: 1080px; */
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }

  .section-hero__bg img {
    animation: heroFloatPro 10s ease-in-out infinite;
    will-change: transform;
  }

  .section-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .section-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .section-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
  }

  .section-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
    flex: 1;
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .section-hero__text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
    flex: 1;
  }

  .section-hero__title {
    font-weight: 400;
    font-size: 120px;
    line-height: 1.1;
    color: var(--brand-yellow);
    text-transform: uppercase;
    /* text-align: center; */
    width: 100%;
    max-width: 720px;
  }

  .section-hero__title strong {
    font-weight: 700;
  }

  .section-hero__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    width: 100%;
  }

  .section-hero__description {
    flex: 1;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.3;
    /*   color: var(--brand-yellow); */
    color: var(--color-white);
    text-transform: uppercase;
  }

  .section-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 8px 24px;
    border-radius: 64px;
    background: var(--brand-yellow);
    color: var(--color-white);
    font-weight: 400;
    font-size: 1.5rem !important;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    flex-shrink: 0;
    width: 380px;

    border: 1px solid var(--brand-yellow);
    overflow: hidden;
    position: relative;

    transition: transform 0.2s ease-in;

    &:hover {
      transform: translateY(-2px);

      &:after {
        left: 120%;
        transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
      }
    }
    &:after {
      background: #fff;
      content: "";
      height: 155px;
      left: -75px;
      opacity: 0.2;
      position: absolute;
      top: -50px;
      transform: rotate(35deg);
      transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
      width: 50px;
      z-index: -10;
    }
  }

  /* ============================================
       SECTION HOME VIDEO
       ============================================ */
  .section-home-video {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  .section-home-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ============================================
       SECTION CASES
       ============================================ */
  .section-cases {
    position: relative;
    width: 100%;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-cases .container {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
  }

  .section-cases .content {
    display: flex;
    flex-direction: column;
    gap: 160px;
    align-items: center;
  }

  .section-cases__title {
    text-align: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
  }

  .section-cases__title-main {
    font-weight: 700;
    /* font-size: 16.5rem; */
    font-size: clamp(3.75rem, 13.75vw, 16.5rem);
    line-height: 1.1;
  }

  .section-cases__title-sub {
    font-weight: 100;
    /* font-size: 7.5rem; */
    font-size: clamp(1.875rem, 6.2vw, 7.5rem);
    line-height: 1.1;
  }

  /* Stacking cards — no extra CSS needed, cards are pure sticky */

  /* Cases carousel — wrapper + nav */
  .cases-carousel-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cases-carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
  }

  .cases-carousel-nav__btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--brand-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark-gray);
    cursor: pointer;
    background: transparent;
    padding: 0;
    transition: opacity 0.2s ease;
  }

  .cases-carousel-nav__btn:hover:not(.swiper-button-disabled) {
    opacity: 0.55;
  }

  .cases-carousel-nav__btn.swiper-button-disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
  }

  .cases-carousel-nav__icon {
    display: block;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  /* Cards — Swiper overrides */
  .cases-carousel {
    width: 100%;
    overflow: visible;
  }

  .cases-carousel .swiper-slide {
    height: auto;
  }

  .cases-carousel .card__image {
    height: auto;
    aspect-ratio: 700 / 528;
  }

  .cases-carousel .card__image img {
    border-radius: inherit;
  }

  @media (max-width: 768px) {
    .cases-carousel,
    .cases-carousel .swiper-wrapper,
    .cases-carousel .swiper-slide,
    .cases-carousel a.card {
      touch-action: pan-y pinch-zoom;
    }

    .cases-carousel a.card {
      -webkit-touch-callout: none;
    }

    .cases-carousel .card__image img {
      -webkit-user-drag: none;
      pointer-events: none;
    }
  }

  .card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;

    position: relative;
  }

  .card__image {
    position: relative;
    width: 100%;
    /* height: 528px;
    border-radius: 40px; */

    height: clamp(240px, 18.64vw + 170px, 528px);
    border-radius: clamp(16px, 1.55vw + 10.2px, 40px);

    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    padding: 16px;
  }

  .card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    transition: transform 0.3s ease;
  }

  .card__image img:hover {
    transform: scale(1.05);
  }
  .card__icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    pointer-events: none;
    flex-shrink: 0;
    align-self: flex-start;
  }

  .card__icon img {
    width: 100%;
    height: 100%;
  }

  .card__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .card__label {
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.2;
    color: var(--brand-light-gray);
    text-transform: uppercase;
  }

  .card__description {
    font-weight: 300;
    font-size: 2.375rem;
    line-height: 1.2;
    color: var(--brand-dark-gray);
  }

  /* Case Big */
  .case-big {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }

  .case-big__image {
    position: relative;
    width: 100%;
    height: 990px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    padding: 16px;
  }

  .case-big__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
  }

  .case-big__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .case-big__label {
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.2;
    color: var(--brand-light-gray);
  }

  .case-big__description {
    font-weight: 300;
    font-size: 2.375rem;
    line-height: 1.2;
    color: var(--brand-dark-gray);
  }

  .link-more {
    font-weight: 300;
    font-size: 1.375rem;
    line-height: 1.1;
    color: var(--brand-light-gray);
    text-decoration: underline;
    text-underline-offset: 5%;
    text-align: right;
    width: 100%;
    display: block;
  }

  .link-more--emphasis {
    font-weight: 500;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    line-height: 1.15;
    color: var(--brand-dark-gray);
    text-decoration: none;
    text-align: right;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    align-self: flex-end;
    border-bottom: 2px solid var(--brand-yellow);
    padding-bottom: 0.15em;
    transition:
      color 0.2s ease,
      border-color 0.2s ease,
      opacity 0.2s ease;
  }

  .link-more--emphasis:hover {
    color: var(--color-black);
    border-color: var(--brand-dark-gray);
    opacity: 1;
  }

  /* ============================================
       SECTION PRODUCTS
       ============================================ */
  .section-products {
    position: relative;
    width: 100%;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }

  .section-products__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    /* width: 1921px; */
    /* height: 1480px; */
    z-index: 0;
  }

  .section-products__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
  }

  .section-products .container {
    position: relative;
    z-index: 1;
    padding-top: 172px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
  }

  .section-products .content {
    display: flex;
    flex-direction: column;
    gap: 120px;
  }

  .products-grid {
    display: flex;
    gap: 80px;
    width: 100%;
  }

  .products-grid .card {
    flex: 1;
    min-width: 0;
  }

  .products-grid .card__image {
    height: 474px;
  }

  .products-grid .card__label {
    color: var(--brand-dark-gray);
  }

  .products-grid .card__description {
    color: var(--color-black);
  }

  /* ============================================
       SECTION TESTIMONIALS
       ============================================ */
  .section-testimonials {
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-testimonials .container {
    display: flex;
    flex-direction: column;
    gap: 424px;
    padding-top: 80px;
    padding-bottom: 160px;
  }

  .section-testimonials .content {
    display: flex;
    flex-direction: column;
    gap: 14.5rem;
  }

  .section-testimonials__label {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.2;
    color: var(--brand-light-gray);
  }

  .testimonials-grid {
    width: 100%;
    overflow: visible;
  }

  .testimonials-grid .swiper-slide {
    width: 432px;
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 100%;
  }

  .testimonial-card__logo {
    height: 40px;
  }

  .testimonial-card__logo img {
    height: 100%;
    width: auto;
  }

  .testimonial-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--brand-light-gray);
    font-size: 1.375rem;
  }

  .testimonial-card__text {
    font-weight: 400;
    line-height: 1.3;
  }

  .testimonial-card__author strong {
    color: var(--brand-dark-gray);
  }

  .testimonial-card__link {
    font-weight: 300;
    font-size: 1.375rem;
    line-height: 1.1;
    text-decoration: underline;
    text-underline-offset: 5%;
  }

  .section-testimonials__vector {
    width: 100%;
  }

  .section-testimonials__vector img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1599px) {
  #page_home .card__icon,
  #page_cases .card__icon,
  #page_cases .cases-grid .card__icon {
    width: 48px;
    height: 48px;
  }
}

/* Vídeo inline (Sobre + Case): botão play e controles ao ativar som */
.v3a-inline-video__activate {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
 /*  align-items: center;
  justify-content: center; */
  align-items: end;
  justify-content: end;
  margin: 0;
  border: none;
  padding: 2rem;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.v3a-inline-video__activate[hidden] {
  display: none !important;
}

.v3a-inline-video.is-unmuted::after {
  opacity: 0;
}

/* Sobre: área inteira clicável; badge de som no canto inferior direito */
#page_about .manifest-case__image--video .v3a-inline-video__activate {
  inset: 0;
  align-items: flex-end;
  justify-content: flex-end;
  padding: clamp(16px, 2vw, 24px);
  background: transparent;
}

#page_about .manifest-case__image--video .v3a-inline-video__sound {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  line-height: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#page_about .manifest-case__image--video .v3a-inline-video__sound svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ============================================
       SECTION CONTACT
       ============================================ */
.section-contact {
  /* background: var(--color-white); */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-contact .container {
  display: flex;
  flex-direction: column;
  gap: 184px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: space-between;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 280px;
  color: var(--brand-dark-gray);
}

.contact-left__title {
  font-weight: 100;
  font-size: 4.375rem;
  line-height: 1.2;
}

.contact-left__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 1.3;
}

.contact-left__email {
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 5%;
}

.contact-right {
  flex: 1;
  max-width: 1104px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-top: 48px;
}

.contact-right__intro {
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--brand-dark-gray);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-end;
}

.contact-form__fields {
  display: flex;
  gap: 32px;
  width: 100%;
}

.contact-form__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-contact .form-field input[type="text"],
.section-contact .form-field input[type="email"],
.section-contact .form-field input[type="tel"],
.section-contact .form-field input[type="url"],
.section-contact .form-field input:not([type]),
.section-contact .form-field textarea,
.section-contact .contact-right input[type="text"],
.section-contact .contact-right input[type="email"],
.section-contact .contact-right input[type="tel"],
.section-contact .contact-right input[type="url"],
.section-contact .contact-right input:not([type]),
.section-contact .contact-right textarea {
  padding: 8px 0;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--brand-light-gray);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--brand-dark-gray);
  transition: border-color 0.2s ease;
}

.section-contact .form-field input[type="text"]:focus,
.section-contact .form-field input[type="email"]:focus,
.section-contact .form-field input[type="tel"]:focus,
.section-contact .form-field input[type="url"]:focus,
.section-contact .form-field input:not([type]):focus,
.section-contact .form-field textarea:focus,
.section-contact .contact-right input[type="text"]:focus,
.section-contact .contact-right input[type="email"]:focus,
.section-contact .contact-right input[type="tel"]:focus,
.section-contact .contact-right input[type="url"]:focus,
.section-contact .contact-right input:not([type]):focus,
.section-contact .contact-right textarea:focus {
  border-bottom-color: var(--brand-yellow);
}

.section-contact .form-field input[type="text"]::placeholder,
.section-contact .form-field input[type="email"]::placeholder,
.section-contact .form-field input[type="tel"]::placeholder,
.section-contact .form-field input[type="url"]::placeholder,
.section-contact .form-field input:not([type])::placeholder,
.section-contact .form-field textarea::placeholder,
.section-contact .contact-right input[type="text"]::placeholder,
.section-contact .contact-right input[type="email"]::placeholder,
.section-contact .contact-right input[type="tel"]::placeholder,
.section-contact .contact-right input[type="url"]::placeholder,
.section-contact .contact-right input:not([type])::placeholder,
.section-contact .contact-right textarea::placeholder {
  color: var(--brand-light-gray);
}

.wpcf7-not-valid-tip {
  margin-top: 2px;
}

.contact-form__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.contact-form__consent {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 608px;
  cursor: pointer;
}

.contact-form__consent-checkbox {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  appearance: none;
  border: 1px solid var(--brand-light-gray);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin-top: 1px;
}

.contact-form__consent-checkbox:checked {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

.contact-form__consent-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid var(--color-black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-form__consent-text {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--brand-light-gray);

  a {
    text-decoration: underline;
  }
}

.contact-form__submit,
.section-contact .wpcf7-submit {
  font-weight: 500;
  font-size: clamp(1.125rem, 1.4vw, 1.5rem);
  line-height: 1.15;
  color: var(--brand-dark-gray);
  text-decoration: none;
  text-align: right;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: 0;
  padding: 0 0 0.15em;
  border: none;
  border-bottom: 2px solid var(--brand-yellow);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Geologica", sans-serif;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.contact-form__submit:hover,
.section-contact .wpcf7-submit:hover {
  color: var(--color-black);
  border-bottom-color: var(--brand-dark-gray);
}

.contact-form__submit:disabled,
.section-contact .wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Offices */
.offices {
  display: flex;
  gap: 120px;
  justify-content: center;
  padding: 8px;
  text-align: center;
  font-size: 1.375rem;
}

.office {
  flex: 1;
  max-width: 304px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.office__city {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--brand-dark-gray);
  width: 100%;
}

.office__address {
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--brand-light-gray);
  width: 100%;
}

/* Página /contato — compensa navbar fixa (mesmo padrão Sobre Nós) */
#page_contact .section-contact .container {
  padding-top: 200px;
}

@media (max-width: 1440px) {
  #page_contact .section-contact .container {
    padding-top: 160px;
  }
}

@media (max-width: 1024px) {
  #page_contact .section-contact .container {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  #page_contact .section-contact .container {
    padding-top: 100px;
  }
}

/* ============================================
       SECTION FOOTER
       ============================================ */
.section-footer {
  /* background: var(--color-white); */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-footer .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-footer .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  width: 100px;
  height: 50px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__links {
  display: flex;
  gap: 218px;
  align-items: center;
  color: var(--brand-light-gray);
  font-size: 1.375rem;
}

.footer__links-privacy {
  font-weight: 300;
  line-height: 1.3;
}

.footer__links-copyright {
  line-height: 1.2;
}

.footer__links-copyright strong {
  font-weight: 700;
}

.footer__links-copyright span {
  font-weight: 300;
}

.footer__socials {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer__socials a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__socials img {
  width: 100%;
  height: 100%;
  transition: filter 0.25s ease;
}

.footer__socials a:hover img,
.footer__socials a:focus-visible img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(100%) saturate(467%) hue-rotate(347deg) brightness(98%) contrast(110%);
}

/* ============================================
       MOBILE MENU
       ============================================ */
.navbar__burger {
  grid-column: 3;
  justify-self: end;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-yellow);
  padding: 0;
}

.navbar.scrolled .navbar__burger {
  color: var(--brand-dark-gray);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--brand-yellow);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__header .navbar__logo {
  color: var(--brand-dark-gray);
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-dark-gray);
  padding: 0;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 32px;
  padding-top: 64px;
}

.mobile-menu__links a {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--brand-dark-gray);
}

.mobile-menu__language {
  display: flex;
  justify-content: center;
  padding-top: 40px;
  gap: 8px;
  color: var(--brand-dark-gray);
}

/* ============================================
       RESPONSIVE — 1440px (Notebooks)
       ============================================ */
@media (max-width: 1919px) {
  #page_home .section-testimonials .container {
    padding-bottom: 100px;
  }
}

@media (max-width: 1560px) {
  :root {
    --container-padding: 32px;
  }

  /* Hero */
  #page_home .section-hero {
    height: 95vh;
    min-height: 610px;
  }

  #page_home .section-hero__title {
    font-size: 4.875rem;
    max-width: 570px;
  }

  #page_home .section-hero__description {
    font-size: 1rem;
  }

  #page_home .section-hero__button {
    font-size: 1.5rem;
    height: 80px;
  }

  /* Home Video */
  #page_home .section-home-video {
    height: 80vh;
  }

  #page_home .section-cases .content {
    gap: 5rem;
  }

  #page_home .cases-carousel .card__image {
    border-radius: 2rem;
  }

  #page_home .cases-carousel .card__image img {
    border-radius: inherit;
  }

  #page_home .card__description {
    font-size: 1.875rem;
  }

  #page_home .case-big__image {
    height: 38.75rem;
  }

  #page_home .case-big__description {
    font-size: 1.875rem;
  }

  /* Products */
  #page_home .products-grid {
    gap: 56px;
  }

  #page_home .products-grid .card__image {
    height: 380px;
  }

  #page_home .section-products .content {
    gap: 80px;
  }

  /* Testimonials */
  #page_home .section-testimonials .container {
    gap: 280px;
  }

  #page_home .section-testimonials .content {
    gap: 160px;
  }

  #page_home .testimonials-grid .swiper-slide {
    width: 360px;
  }

  #page_home .testimonial-card__content {
    font-size: 1.125rem;
  }

  #page_home .testimonial-card__link {
    font-size: 1.125rem;
  }

  /* Contact */
  .section-contact .container {
    gap: 120px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact-left__title {
    font-size: 3.5rem;
  }

  .contact-left__body {
    font-size: 1.125rem;
  }

  .contact-left__email {
    font-size: 1.125rem;
  }

  .offices {
    gap: 64px;
    font-size: 1.125rem;
  }

  .office__city {
    font-size: 1.125rem;
  }

  .office__address {
    font-size: 1.125rem;
  }

  /* Footer */
  .footer__links {
    gap: 80px;
    font-size: 1.125rem;
  }

  .footer__socials a {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
       RESPONSIVE — 1024px (Tablets Landscape)
       ============================================ */
@media (max-width: 1024px) {
  :root {
    --container-padding: 24px;
  }

  /* Navbar */
  .navbar__items {
    display: none;
  }

  .navbar__language {
    display: none;
  }

  .navbar__burger {
    display: block;
  }

  .navbar .container {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .navbar__logo {
    grid-column: unset;
    justify-self: unset;
    width: 80px;
    height: 40px;

    svg {
      width: 80px;
      height: 40px;
    }
  }

  .navbar__burger {
    grid-column: unset;
    justify-self: unset;
  }

  /* Hero */
  #page_home .section-hero {
    height: 70vh;
    min-height: 560px;
  }

  #page_home .section-hero__title {
    font-size: 5rem;
  }

  #page_home .section-hero__bottom {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  #page_home .section-hero__description {
    font-size: 0.875rem;
    text-align: center;
  }

  /* Home Video */
  #page_home .section-home-video {
    height: 70vh;
  }

  /* Cases */
  #page_home .section-cases .container {
    padding-top: 80px;
    padding-bottom: 80px;
    gap: 64px;
  }

  #page_home .section-cases .content {
    gap: 80px;
  }

  #page_home .section-cases__title-main {
    /* font-size: 8.75rem; */
  }

  #page_home .section-cases__title-sub {
    /* font-size: 4rem; */
  }

  #page_home .cases-carousel .card__image {
    border-radius: 1.5rem;
  }

  #page_home .cases-carousel .card__image img {
    border-radius: inherit;
  }

  #page_home .card__text {
    gap: 12px;
  }

  #page_home .card__label {
    font-size: 1.125rem;
  }

  #page_home .card__description {
    font-size: 1.5rem;
  }

  #page_home .card__icon {
    width: 48px;
    height: 48px;
  }

  #page_home .case-big__image {
    height: 560px;
    border-radius: 24px;
  }

  #page_home .case-big__image img {
    border-radius: 24px;
  }

  #page_home .case-big__label {
    font-size: 1.125rem;
  }

  #page_home .case-big__description {
    font-size: 1.5rem;
  }

  #page_home .link-more {
    font-size: 1.125rem;
    text-align: center;
  }

  #page_home .link-more--emphasis {
    font-size: 1.75rem;
    text-align: right;
  }

  /* Products */
  #page_home .section-products .container {
    padding-top: 120px;
    padding-bottom: 64px;
    gap: 64px;
  }

  #page_home .section-products .content {
    gap: 64px;
  }

  #page_home .products-grid {
    gap: 40px;
  }

  #page_home .products-grid .card__image {
    height: 340px;
    border-radius: 24px;
  }

  #page_home .products-grid .card__image img {
    border-radius: 24px;
  }

  /* Testimonials */
  #page_home .section-testimonials .container {
    gap: 200px;
    padding-top: 64px;
    padding-bottom: 80px;
  }

  #page_home .section-testimonials .content {
    gap: 120px;
  }

  #page_home .section-testimonials__label {
    font-size: 1.125rem;
  }

  #page_home .testimonials-grid .swiper-slide {
    width: 312px;
  }

  #page_home .testimonial-card {
    gap: 48px;
  }

  #page_home .testimonial-card__logo {
    height: 32px;
  }

  #page_home .testimonial-card__content {
    font-size: 1rem;
  }

  #page_home .testimonial-card__link {
    font-size: 1rem;
  }

  /* Contact */
  .contact-wrapper {
    flex-direction: column;
    gap: 64px;
  }

  .contact-left {
    width: 100%;
  }

  .contact-right {
    max-width: 100%;
    padding-top: 0;
  }

  .contact-form__fields {
    flex-direction: column;
    gap: 24px;
  }

  .contact-form__column {
    gap: 24px;
  }

  .offices {
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
  }

  .office {
    flex: 0 0 calc(50% - 24px);
  }

  /* Footer */
  .section-footer .content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer__links {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer__socials {
    order: -1;
  }
}

/* ============================================
       RESPONSIVE — 768px (Tablets Portrait)
       ============================================ */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }

  /* Hero */
  #page_home .section-hero {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }

  #page_home .section-hero .container {
    padding-bottom: 20px;
    gap: 16px;
  }

  /* Mobile: título → descrição → botão */
  #page_home .section-hero .container > div:first-child {
    display: contents;
  }

  #page_home .section-hero__text {
    display: contents;
  }

  #page_home .section-hero__title {
    font-size: 4rem;
    order: 1;
    max-width: 100%;
  }

  #page_home .section-hero__bottom {
    order: 2;
    width: 100%;
    gap: 0;
  }

  #page_home .section-hero__description {
    flex: none;
    font-size: 0.75rem;
    text-align: left;
  }

  #page_home .section-hero__text span {
    order: 3;
    width: 100%;
  }

  #page_home .section-hero__button {
    width: 100%;
    max-width: 100%;
    height: 56px;
    font-size: 1rem !important;
  }

  /* Home Video */
  #page_home .section-home-video {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* Cases */
  #page_home .section-cases .container {
    padding-top: 64px;
    padding-bottom: 80px;
    gap: 64px;
  }

  #page_home .section-cases .content {
    gap: 64px;
  }

  #page_home .section-cases__title-main {
    /* font-size: 5rem; */
  }

  #page_home .section-cases__title-sub {
    /* font-size: 2.5rem; */
  }

  #page_home .cases-carousel .card__image {
    border-radius: 1rem;
  }

  #page_home .cases-carousel .card__image img {
    border-radius: inherit;
  }

  #page_home .card {
    gap: 16px;
  }

  #page_home .card__text {
    gap: 8px;
  }

  #page_home .card__label {
    font-size: 0.875rem;
  }

  #page_home .card__description {
    font-size: 1.25rem;
  }

  #page_home .card__icon {
    width: 32px;
    height: 32px;
  }

  #page_home .case-big {
    gap: 16px;
  }

  #page_home .case-big__image {
    height: 440px;
    border-radius: 16px;
  }

  #page_home .case-big__image img {
    border-radius: 16px;
  }

  #page_home .case-big__text {
    gap: 16px;
  }

  #page_home .case-big__label {
    font-size: 0.875rem;
  }

  #page_home .case-big__description {
    font-size: 1.25rem;
  }

  #page_home .link-more {
    font-size: 1rem;
    text-align: center;
  }

  #page_home .link-more--emphasis {
    font-size: 1.5rem;
    text-align: right;
  }

  /* Products */
  #page_home .section-products .container {
    padding-top: 88px;
    padding-bottom: 64px;
    gap: 64px;
  }

  #page_home .section-products .content {
    gap: 40px;
  }

  #page_home .products-grid {
    flex-direction: column;
    gap: 40px;
  }

  #page_home .products-grid .card__image {
    height: 240px;
    border-radius: 16px;
  }

  #page_home .products-grid .card__image img {
    border-radius: 16px;
  }

  #page_home .products-grid .card {
    gap: 16px;
  }

  #page_home .products-grid .card__text {
    gap: 8px;
  }

  #page_home .products-grid .card__label {
    font-size: 0.875rem;
  }

  #page_home .products-grid .card__description {
    font-size: 1.25rem;
  }

  /* Testimonials */
  #page_home .section-testimonials .container {
    gap: 160px;
    padding-top: 64px;
    padding-bottom: 56px;
  }

  #page_home .section-testimonials .content {
    gap: 120px;
  }

  #page_home .testimonials-grid .swiper-slide {
    width: 312px;
  }

  #page_home .testimonial-card {
    gap: 64px;
  }

  #page_home .testimonial-card__logo {
    height: 32px;
  }

  #page_home .testimonial-card__content {
    font-size: 1rem;
    gap: 16px;
  }

  #page_home .testimonial-card__link {
    font-size: 1rem;
  }

  /* Contact */
  .section-contact .container {
    gap: 64px;
    padding-top: 80px;
    padding-bottom: 64px;
  }

  .contact-left__title {
    font-size: 3rem;
  }

  .contact-left__body {
    font-size: 1rem;
  }

  .contact-left__email {
    font-size: 1rem;
  }

  .contact-right__intro {
    font-size: 1.125rem;
  }

  .contact-form__consent-text {
    font-size: 0.75rem;
  }

  .section-contact .form-field input[type="text"],
  .section-contact .form-field input[type="email"],
  .section-contact .form-field input[type="tel"],
  .section-contact .form-field input[type="url"],
  .section-contact .form-field input:not([type]),
  .section-contact .form-field textarea,
  .section-contact .contact-right input[type="text"],
  .section-contact .contact-right input[type="email"],
  .section-contact .contact-right input[type="tel"],
  .section-contact .contact-right input[type="url"],
  .section-contact .contact-right input:not([type]),
  .section-contact .contact-right textarea {
    font-size: 0.875rem;
  }

  .offices {
    flex-direction: column;
    gap: 56px;
    align-items: center;
  }

  .office {
    flex: none;
    width: 100%;
    max-width: 304px;
  }

  .office__city {
    font-size: 1.125rem;
  }

  .office__address {
    font-size: 1rem;
  }

  /* Footer */
  .section-footer .container {
    padding-top: 64px;
    padding-bottom: 20px;
  }

  .section-footer .content {
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }

  .footer__logo {
    width: 144px;
    height: 72px;
  }

  .footer__socials {
    order: 0;
  }

  .footer__socials a {
    width: 40px;
    height: 40px;
  }

  .footer__links {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.875rem;
  }
}

/* ============================================
       RESPONSIVE — 480px (Mobile)
       ============================================ */
@media (max-width: 480px) {
  /* Hero */
  #page_home .section-hero__title {
    font-size: 3rem;
  }

  #page_home .section-hero__text {
    max-width: 100%;
  }

  /* Home Video */
  #page_home .section-home-video {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 220px;
  }

  /* Cases: altura do bg agora controlada via JS (--cases-bg-height em .section-cases) */

  #page_home .section-cases__title-main {
    font-size: 3rem;
  }

  #page_home .section-cases__title-sub {
    /* font-size: 1.875rem; */
  }

  #page_home .section-cases__title {
    gap: 8px;
  }

  #page_home .case-big__image {
    height: 340px;
  }

  /* Products — cards stacked full width */
  #page_home .section-products .content {
    gap: 40px;
  }

  #page_home .products-grid .card__image {
    height: 240px;
  }

  /* Testimonials */
  #page_home .testimonials-grid .swiper-slide {
    width: 83.2vw;
    max-width: 312px;
  }

  /* Contact */
  .contact-wrapper {
    gap: 64px;
  }

  .contact-left {
    gap: 32px;
  }

  .contact-right {
    gap: 32px;
  }

  .contact-form {
    gap: 32px;
  }

  .contact-form__bottom {
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
  }
}

/* ============================================
       ABOUT PAGE — SECTION MANIFEST
       ============================================ */
#page_about {
  background-color: var(--brand-cloud);

  .navbar__logo svg path[fill="#797979"] {
    fill: #fff;
  }

  .section-manifest {
    background-color: var(--brand-dark-gray);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-manifest .container {
    padding-top: 200px;
    padding-bottom: 120px;
  }

  .section-manifest .content {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .manifest-title {
    font-weight: 300;
    font-size: clamp(2.5rem, 5.6vw, 6.55rem);
    line-height: 1.1;
    color: var(--color-white);
    text-align: center;
  }

  .manifest-title strong {
    font-weight: 700;
    color: var(--brand-yellow);
  }

  /* Case Big (manifest) */
  .manifest-case {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
  }

  .manifest-case__image {
    position: relative;
    width: 100%;
    height: clamp(216px, 52vw, 990px);
    border-radius: clamp(16px, 2.5vw, 40px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .manifest-case__image--video {
    cursor: default;
  }

  .manifest-case__image img,
  .manifest-case__image video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .manifest-case__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: inherit;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .manifest-case__play {
    position: relative;
    z-index: 1;
    width: clamp(64px, 9vw, 144px);
    height: clamp(64px, 9vw, 144px);
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .manifest-case__image.v3a-inline-video.is-unmuted .manifest-case__play,
  .manifest-case__image.v3a-inline-video.is-unmuted .v3a-inline-video__sound {
    opacity: 0;
  }

  .manifest-case__play img {
    width: 100%;
    height: 100%;
  }

  .manifest-case__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .manifest-case__label {
    font-weight: 400;
    font-size: clamp(0.75rem, 1.5vw, 1.375rem);
    line-height: 1.2;
    color: var(--brand-cloud);
  }

  .manifest-case__label_about {
    font-weight: 400;
    font-size: 4rem;
    line-height: 1.2;
    color: var(--brand-cloud);

    @media (max-width: 768px) {
      font-size: 2rem;
    }
  }

  .manifest-case__headline {
    font-size: clamp(1.5rem, 3.2vw, 2.5rem);
    line-height: 1.1;
    color: var(--brand-cloud);
  }

  .manifest-case__headline strong {
    font-weight: 700;
  }

  .manifest-case__headline span {
    font-weight: 100;
  }

  .manifest-case__body {
    font-weight: 300;
    font-size: clamp(1rem, 1.8vw, 1.75rem);
    line-height: 1.3;
    color: var(--color-white);
  }

  .manifest-case__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* ============================================
       ABOUT PAGE — SECTION ABOUT US
       ============================================ */
  .section-about-us {
    background-color: var(--brand-cloud);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .section-about-us__graphism {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 84px;
    overflow: hidden;
  }

  .section-about-us__graphism img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
  }

  .section-about-us .container {
    padding-top: 188px;
    padding-bottom: 80px;
  }

  .section-about-us .content {
    display: flex;
    flex-direction: column;
    gap: 88px;
  }

  /* About blocks */
  .about-blocks {
    display: flex;
    flex-direction: column;
    gap: 176px;
  }

  .about-columns {
    display: flex;
    gap: 184px;
    /* align-items: flex-end; */
    flex-wrap: wrap;
  }

  .about-column {
    flex: 1 1 400px;
    max-width: 676px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .about-column__title {
    font-weight: 700;
    font-size: clamp(1.75rem, 3.6vw, 3.5rem);
    line-height: 1.3;
    color: var(--brand-dark-gray);
  }

  .about-column__text {
    font-weight: 300;
    font-size: clamp(1rem, 1.8vw, 1.75rem);
    line-height: 1.3;
    color: var(--brand-light-gray);
  }

  /* Yellow card */
  .about-card {
    border-radius: clamp(16px, 2.5vw, 40px);
    display: flex;
    width: 100%;
    overflow: hidden;
    --gap-section: 8px;
    gap: var(--gap-section);
  }

  .about-card__left {
    background: var(--brand-yellow);
    flex: 0 0 788px;
    padding: 40px 64px;
    display: flex;
    flex-direction: column;
    color: var(--brand-dark-gray);
  }

  .about-card__somos {
    font-weight: 800;
    font-size: clamp(4.75rem, 11vw, 10.625rem);
    line-height: 1.3;
    color: var(--brand-dark-gray);
  }

  .about-card__somos-text {
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 2rem);
    line-height: 1.3;
    color: var(--brand-dark-gray);
    max-width: 660px;
  }

  .about-card__divider-v {
    width: 1px;
    align-self: stretch;
    flex-shrink: 0;
    opacity: 0.3;
  }

  .about-card__divider-v img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  .about-card__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--gap-section);
  }

  .about-card__section {
    background: var(--brand-yellow);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .about-card__section + .about-card__divider-h {
    width: 100%;
    height: 1px;
    opacity: 0.3;
  }

  .about-card__divider-h img {
    width: 100%;
    height: auto;
  }

  .about-card__section-title {
    font-weight: 700;
    font-size: clamp(1.5rem, 3.6vw, 3.4375rem);
    line-height: 1.1;
    color: var(--brand-dark-gray);
  }

  .about-card__section-text {
    font-weight: 300;
    font-size: clamp(1rem, 1.8vw, 1.75rem);
    line-height: 1.3;
    color: var(--brand-dark-gray);
  }

  /* Big numbers */
  .big-numbers {
    display: flex;
    flex-direction: column;
    gap: 128px;
  }

  .big-numbers__row {
    display: flex;
    justify-content: space-between;
    padding: 0 48px;
  }

  .big-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .big-number__value {
    font-weight: 800;
    font-size: clamp(5rem, 11vw, 10.625rem);
    line-height: 1;
    letter-spacing: -1.6px;
    color: var(--brand-yellow);
  }

  .big-number__label {
    font-weight: 300;
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 1.2;
    color: var(--brand-dark-gray);
    text-align: center;
  }

  .big-numbers__vector {
    width: 100%;
  }

  .big-numbers__vector img {
    width: 100%;
    height: auto;
  }

  /* ============================================
       ABOUT PAGE — RESPONSIVE
       ============================================ */

  /* --- 1440px (Notebooks) --- */
  @media (max-width: 1440px) {
    .section-manifest .container {
      padding-top: 160px;
      padding-bottom: 96px;
    }

    .about-card__somos {
      font-size: clamp(4.75rem, 7vw, 10.625rem);
    }
    .about-card__somos-text {
      font-size: clamp(1rem, 1.7vw, 2rem);
    }
    .about-card__section-text {
      font-size: clamp(1rem, 1.4vw, 1.75rem);
    }
    .section-manifest .content {
      gap: 40px;
    }

    .manifest-case__image {
      height: 620px;
      border-radius: 32px;
    }

    .manifest-case__image::after {
      border-radius: 32px;
    }

    .manifest-case__play {
      width: 120px;
      height: 120px;
    }

    .manifest-case__content {
      gap: 8px;
    }

    .about-blocks {
      gap: 120px;
    }

    .about-columns {
      gap: 120px;
    }

    .about-column {
      gap: 24px;
    }

    .about-card {
      border-radius: 32px;
    }

    .about-card__left {
      flex: 0 0 50%;
      padding: 32px 48px;
    }

    .about-card__section {
      padding: 32px;
    }

    .big-numbers__row {
      padding: 0 32px;
    }

    .big-numbers {
      gap: 96px;
    }
  }

  /* --- 1024px (Tablets Landscape) --- */
  @media (max-width: 1024px) {
    .section-manifest .container {
      padding-top: 120px;
      padding-bottom: 80px;
    }

    .section-manifest .content {
      gap: 32px;
    }

    .manifest-case__image {
      height: 520px;
      border-radius: 24px;
    }

    .manifest-case__image::after {
      border-radius: 24px;
    }

    .manifest-case__play {
      width: 96px;
      height: 96px;
    }

    .manifest-case {
      gap: 32px;
    }

    .manifest-case__text {
      gap: 16px;
    }

    .manifest-case__content {
      gap: 8px;
    }

    .section-about-us .container {
      padding-top: 120px;
      padding-bottom: 64px;
    }

    .section-about-us .content {
      gap: 64px;
    }

    .about-blocks {
      gap: 80px;
    }

    .about-columns {
      gap: 64px;
    }

    .about-column {
      gap: 16px;
    }

    .about-card {
      flex-direction: column;
      border-radius: 24px;
      --gap-section: 4px;
    }

    .about-card__left {
      flex: none;
      width: 100%;
      padding: 32px;
    }

    .about-card__right {
      --gap-section: 4px;
    }

    .about-card__section {
      padding: 32px;
    }

    .big-numbers {
      gap: 80px;
    }

    .big-numbers__row {
      padding: 0 24px;
      gap: 40px;
    }
  }

  /* --- 768px (Tablets Portrait) --- */
  @media (max-width: 768px) {
    .section-manifest .container {
      padding-top: 120px;
      padding-bottom: 64px;
    }

    .manifest-case__image {
      height: 216px;
      border-radius: 16px;
    }

    .manifest-case__image::after {
      border-radius: 16px;
    }

    .manifest-case__play {
      width: 64px;
      height: 64px;
    }

    .manifest-case {
      gap: 24px;
    }

    .manifest-case__text {
      gap: 16px;
    }

    .manifest-case__content {
      gap: 24px;
    }

    .section-about-us__graphism {
      height: 60px;
      padding-left: var(--container-padding);
      padding-right: var(--container-padding);
    }

    .section-about-us .container {
      padding-top: 88px;
      padding-bottom: 80px;
    }

    .section-about-us .content {
      gap: 80px;
    }

    .about-blocks {
      gap: 64px;
    }

    .about-columns {
      flex-direction: column;
      gap: 40px;
    }

    .about-column {
      flex: 1 1 100%;
      max-width: 100%;
      gap: 16px;
    }

    .about-card {
      flex-direction: column;
      border-radius: 16px;
      /* gap: 0; */
    }

    .about-card__left {
      flex: none;
      width: 100%;
      padding: 32px 20px;
    }

    .about-card__right {
      /* gap: 0; */
    }

    .about-card__section {
      padding: 32px 20px;
      gap: 12px;
    }

    .big-numbers {
      gap: 128px;
    }

    .big-numbers__row {
      flex-direction: column;
      align-items: center;
      gap: 48px;
      padding: 0 20px;
    }

    .big-number {
      width: 100%;
    }
  }

  /* --- 480px (Mobile) --- */
  @media (max-width: 480px) {
    .section-manifest .container {
      padding-top: 120px;
      padding-bottom: 64px;
    }

    .manifest-case__image {
      height: 216px;
    }

    .manifest-case__play {
      width: 64px;
      height: 64px;
    }

    .about-card__left {
      padding: 32px 20px;
    }

    .about-card__section {
      padding: 32px 20px;
    }
  }
}

/* About: .about-card__somos — max menor em inglês (html lang="en") */
html:lang(en) #page_about .about-card__somos {
  font-size: clamp(4.75rem, 11vw, 9.625rem);
}

@media (max-width: 1440px) {
  html:lang(en) #page_about .about-card__somos {
    font-size: clamp(4.75rem, 7vw, 9.625rem);
  }
}

/* ============================================
       CASES PAGE
       ============================================ */
#page_cases {
  background-color: var(--brand-cloud);

  /* Navbar overrides — white text on yellow hero */
  .navbar__logo {
    color: var(--color-white);
  }

  .navbar__logo svg path[fill="#797979"] {
    fill: #fff;
  }

  .navbar__burger {
    color: var(--color-white);
  }

  .navbar__items a {
    color: var(--color-white);
  }

  .navbar__language,
  .navbar__language span {
    color: var(--color-white);
  }

  /* ---------- HERO ---------- */
  .section-hero-cases {
    background-color: var(--brand-yellow);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-hero-cases .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: clamp(64px, 8.8vw + 31px, 200px);
    padding-bottom: clamp(64px, 1.04vw + 60.1px, 80px);
    min-height: clamp(600px, 17.6vw + 534px, 872px);
  }

  .section-hero-cases__text {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 0.52vw + 22px, 32px);
    align-items: center;
    text-align: center;
    color: var(--color-white);
    max-width: 1380px;
  }

  .section-hero-cases__title {
    font-weight: 400;
    font-size: clamp(2.75rem, 6.21vw + 1.29375rem, 8.75rem);
    line-height: 1.1;
    color: var(--color-white);
  }

  .section-hero-cases__title strong {
    font-weight: 700;
  }

  .section-hero-cases__title span {
    font-weight: 100;
  }

  .section-hero-cases__subtitle {
    font-weight: 300;
    font-size: clamp(1.125rem, 0.91vw + 0.9125rem, 2rem);
    line-height: 1.3;
    color: var(--color-white);
    max-width: 896px;
  }

  /* ---------- CASES GRID ---------- */
  .section-cases-grid {
    background-color: var(--brand-cloud);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-cases-grid .container {
    padding-top: clamp(40px, 3.63vw + 26.4px, 96px);
    padding-bottom: clamp(80px, 3.11vw + 68.3px, 128px);
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 7.77vw + 10.9px, 160px);
    align-items: center;
  }

  /* Filters */
  .cases-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
  }

  .cases-filters__item {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.3;
    color: var(--brand-light-gray);
    cursor: pointer;
    white-space: nowrap;
    background: none;
    border: none;
    font-family: "Geologica", sans-serif;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
  }

  .cases-filters__item:hover,
  .cases-filters__item.active {
    color: var(--brand-dark-gray);
  }

  /* Content wrapper */
  .cases-grid-content {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 4.14vw + 32.5px, 112px);
    align-items: center;
    width: 100%;
  }

  /* Grid */
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(56px, 5.7vw + 34.6px, 144px) clamp(20px, 3.88vw + 5.4px, 80px);
    width: 100%;
  }

  /* Card (reusing existing .card styles but scoped) */
  .cases-grid .card {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.04vw + 12.1px, 32px);
    width: 100%;
  }

  .cases-grid .card__image {
    position: relative;
    width: 100%;
    height: clamp(240px, 18.64vw + 170px, 528px);
    border-radius: clamp(16px, 1.55vw + 10.2px, 40px);
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    padding: 16px;
  }

  .cases-grid .card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: clamp(16px, 1.55vw + 10.2px, 40px);
  }

  .cases-grid .card__icon {
    position: relative;
    z-index: 1;
    width: clamp(32px, 1.81vw + 25.2px, 60px);
    height: clamp(32px, 1.81vw + 25.2px, 60px);
    flex-shrink: 0;
    align-self: flex-start;
  }

  .cases-grid .card__icon img {
    width: 100%;
    height: 100%;
  }

  .cases-grid .card__text {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 0.78vw + 5.1px, 20px);
  }

  .cases-grid .card__label {
    font-weight: 400;
    font-size: clamp(0.875rem, 0.52vw + 0.75rem, 1.375rem);
    line-height: 1.2;
    color: var(--brand-light-gray);
  }

  .cases-grid .card__description {
    font-weight: 300;
    font-size: clamp(1.25rem, 1.17vw + 0.975rem, 2.375rem);
    line-height: 1.2;
    color: var(--brand-dark-gray);
  }

  .cases-grid .card--short .card__image {
    height: clamp(240px, 15.15vw + 183px, 474px);
  }

  /* Pagination */
  .cases-pagination {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .cases-pagination__item {
    width: clamp(48px, 1.04vw + 44.1px, 64px);
    height: clamp(48px, 1.04vw + 44.1px, 64px);
    border-radius: 999px;
    border: 2px solid var(--brand-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.39vw + 0.78125rem, 1.25rem);
    line-height: 1;
    color: var(--brand-dark-gray);
    cursor: pointer;
    background: none;
    font-family: "Geologica", sans-serif;
    transition:
      background-color 0.3s ease,
      color 0.3s ease;
  }

  .cases-pagination__item.active {
    background-color: var(--brand-dark-gray);
    color: var(--brand-cloud);
  }

  .cases-pagination__item:hover:not(.active) {
    background-color: var(--brand-dark-gray);
    color: var(--brand-cloud);
    opacity: 0.7;
  }

  .cases-pagination__arrow {
    width: 19.3px;
    height: 14px;
  }

  .cases-pagination__arrow img {
    width: 100%;
    height: 100%;
  }

  /* ---------- CONTACT CARDS ---------- */
  .section-contact-cards {
    background-color: var(--brand-cloud);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-contact-cards .container {
    display: flex;
    flex-direction: column;
    gap: clamp(96px, 7.77vw + 66.9px, 216px);
    align-items: center;
    padding-bottom: clamp(20px, 1.3vw + 15.1px, 40px);
  }

  .section-contact-cards__graphism {
    width: 100%;
  }

  .section-contact-cards__graphism img {
    width: 100%;
    height: auto;
  }

  /* Cards row */
  .contact-cards {
    display: flex;
    gap: clamp(20px, 3.88vw + 5.4px, 80px);
    width: 100%;
  }

  .contact-card {
    flex: 1;
    border-radius: clamp(16px, 1.55vw + 10.2px, 40px);
    padding: clamp(20px, 2.33vw + 11.3px, 56px) clamp(20px, 0.78vw + 17.1px, 32px) clamp(20px, 0.78vw + 17.1px, 32px) clamp(20px, 2.33vw + 11.3px, 56px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(64px, 4.66vw + 46.5px, 136px);
  }

  .contact-card--filled {
    background-color: var(--brand-light-gray);
  }

  .contact-card--outlined {
    border: 1px solid var(--brand-dark-gray);
  }

  .contact-card__title {
    font-weight: 700;
    font-size: clamp(1.5rem, 2.33vw + 0.95625rem, 3.75rem);
    line-height: 1.1;
  }

  .contact-card--filled .contact-card__title {
    color: var(--color-white);
  }

  .contact-card--outlined .contact-card__title {
    color: var(--brand-light-gray);
  }

  .contact-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .contact-card__text {
    font-weight: 400;
    font-size: clamp(1rem, 0.39vw + 0.90625rem, 1.375rem);
    line-height: 1.3;
  }

  .contact-card--filled .contact-card__text {
    color: var(--color-white);
  }

  .contact-card--outlined .contact-card__text {
    color: var(--brand-light-gray);
  }

  .contact-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 184px;
    border-radius: 64px;
    font-weight: 400;
    font-size: clamp(1rem, 0.26vw + 0.9375rem, 1.25rem);
    line-height: 1;
    cursor: pointer;
    border: none;
    font-family: "Geologica", sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .contact-card--filled .contact-card__button {
    background-color: var(--brand-cloud);
    color: var(--brand-light-gray);
  }

  .contact-card--outlined .contact-card__button {
    background-color: var(--brand-light-gray);
    color: var(--brand-cloud);
  }

  /* Mini footer bar */
  .cases-mini-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .cases-mini-footer__logo {
    width: 100px;
    height: 50px;
  }

  .cases-mini-footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .cases-mini-footer__links {
    display: flex;
    gap: clamp(40px, 5.7vw + 18.6px, 128px);
    align-items: center;
    font-weight: 300;
    font-size: clamp(1.25rem, 1.17vw + 0.975rem, 2.375rem);
    line-height: 1.3;
    color: var(--brand-dark-gray);
  }

  .cases-mini-footer__links a {
    transition: color 0.3s ease;
  }

  .cases-mini-footer__links a:hover {
    color: var(--brand-yellow);
  }

  .cases-mini-footer__vector {
    height: 30.5px;
    width: 343.1px;
  }

  .cases-mini-footer__vector img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* ---------- LOCAL (reuse existing) ---------- */
  .section-local {
    background-color: var(--brand-cloud);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-local .container {
    padding-top: clamp(64px, 3.63vw + 50.4px, 120px);
    padding-bottom: clamp(64px, 3.63vw + 50.4px, 120px);
  }

  /* ---------- FILTER TOGGLE (mobile) ---------- */
  .cases-filters__toggle {
    display: none;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.1;
    color: var(--brand-dark-gray);
    text-decoration: underline;
    text-underline-offset: 5%;
    background: none;
    border: none;
    font-family: "Geologica", sans-serif;
    cursor: pointer;
    padding: 0;
  }

  .cases-filters__list {
    display: flex;
    gap: 42px;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  /* ---------- RESPONSIVE — < 1920px ---------- */
  @media (max-width: 1919px) {
    .cases-mini-footer__links {
      font-size: clamp(1rem, 0.85vw + 0.6rem, 1.75rem);
      gap: clamp(24px, 2.5vw, 72px);
    }
  }

  /* ---------- RESPONSIVE — 1024px (Tablet) ---------- */
  @media (max-width: 1024px) {
    .cases-filters {
      justify-content: flex-start;
    }

    .cases-filters__toggle {
      display: block;
    }

    .cases-filters__list {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 10;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      background: var(--color-white);
      border-radius: 16px;
      padding: 8px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      min-width: 260px;
      margin-top: 12px;
      max-height: 300px;
      overflow-y: auto;
    }

    .cases-filters__list.open {
      display: block;
      /* flex-direction: column; */
    }

    .cases-filters__list .cases-filters__item {
      width: 100%;
      text-align: left;
      padding: 12px 20px;
      font-size: 0.875rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cases-filters__list .cases-filters__item::after {
      content: "";
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: transparent;
      flex-shrink: 0;
      margin-left: 12px;
    }

    .cases-filters__list .cases-filters__item:hover,
    .cases-filters__list .cases-filters__item.active {
      background-color: var(--brand-cloud);
      border-radius: 8px;
    }

    .cases-filters__list .cases-filters__item.active::after {
      background-color: var(--brand-yellow);
    }

    .contact-card__bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .contact-card__button {
      width: 100%;
    }

    .cases-mini-footer {
      flex-direction: column;
      gap: clamp(64px, 2.07vw + 56.2px, 96px);
      align-items: center;
    }

    .cases-mini-footer__links {
      flex-direction: column;
      gap: 28px;
      text-align: center;
      font-size: clamp(0.875rem, 2vw, 1.125rem);
    }

    .cases-mini-footer__vector {
      width: 100%;
    }
  }

  /* ---------- RESPONSIVE — 768px (Mobile) ---------- */
  @media (max-width: 768px) {
    .cases-mini-footer__links {
      font-size: 0.8125rem;
      gap: 20px;
    }

    .section-cases-grid .container {
      align-items: flex-start;
    }

    .cases-grid {
      grid-template-columns: 1fr;
    }

    .contact-cards {
      flex-direction: column;
    }

    .section-hero-cases__text {
      max-width: 100%;
    }

    .section-hero-cases__subtitle {
      max-width: 100%;
    }

    .section-local .offices {
      flex-direction: column;
      gap: 56px;
      align-items: center;
    }

    .section-local .office {
      text-align: center;
      flex: none;
      width: 100%;
      max-width: 304px;
    }
  }
}

/* ============================================
       SINGLE CASE PAGE
       ============================================ */
#page_single_case {
  background-color: var(--brand-cloud);

  /* Navbar overrides — white text on hero image */
  .navbar__logo {
    color: var(--color-white);
  }

  .navbar__logo svg path[fill="#797979"] {
    fill: #fff;
  }

  .navbar__items a {
    color: var(--color-white);
  }

  .navbar__language,
  .navbar__language span {
    color: var(--color-white);
  }

  /* ---------- HERO ---------- */
  .section-hero-case {
    position: relative;
    width: 100%;
    height: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }

  .section-hero-case__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .section-hero-case__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-hero-case__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
  }

  .section-hero-case .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .section-hero-case__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--color-white);
    max-width: 1249px;
  }

  /* ---------- CASE CONTENT ---------- */
  .section-case-content {
    background-color: var(--brand-cloud);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-case-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 200px;
  }

  .section-case-content .content {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  /* Info rows — client & project */
  .case-info {
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 100%;
  }

  .case-info__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
  }

  .case-info__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .case-info__label {
    color: var(--brand-light-gray);
  }

  .case-info__value {
    color: var(--brand-dark-gray);
  }

  .case-info__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding-top: 28px;
  }

  .case-info__tagline {
    color: var(--brand-dark-gray);
  }

  .case-info__description {
    color: var(--brand-light-gray);
  }

  /* Tags */
  .case-tags {
    display: flex;
    gap: 28px;
    align-items: center;
  }

  .case-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border: 2px solid var(--brand-light-gray);
    border-radius: 999px;
    color: var(--brand-light-gray);
    white-space: nowrap;
  }

  /* Full-width rounded images */
  .case-image-full {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 40px;
    overflow: hidden;
  }

  .case-image-full img {
    /* position: relative;
    inset: 0; */
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
  }

  /* Desafio / Solução + image row */
  .case-challenge-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }

  .case-challenge-text {
    display: flex;
    flex-direction: column;
    gap: 136px;
    width: 639px;
  }

  .case-challenge-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .case-challenge-block__title {
    color: var(--brand-dark-gray);
  }

  .case-challenge-block__body {
    color: var(--brand-light-gray);
  }

  .case-challenge-image {
    width: 840px;
    height: 840px;
    border-radius: 40px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .case-challenge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Side-by-side images */
  .case-images-row {
    display: flex;
    gap: 80px;
    width: 100%;
  }

  .case-images-row__item {
    flex: 1;
    height: 472px;
    border-radius: 40px;
    overflow: hidden;
  }

  .case-images-row__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Quote text */
  .case-quote {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 128px;
  }

  .case-quote__text {
    color: var(--brand-light-gray);
    text-align: justify;
    text-align-last: center;
    padding: 0 80px;
  }

  /* ---------- VIDEOS SECTION ---------- */
  .section-case-videos {
    background-color: var(--brand-light-gray);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .section-case-videos__graphism {
    background-color: var(--brand-cloud);
    height: 84px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .section-case-videos__graphism img {
    position: absolute;
    right: 80px;
    top: 0;
    width: 943.5px;
    height: 84px;
  }

  .section-case-videos .container {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .section-case-videos .content {
    width: 100%;
  }

  .video-card {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    aspect-ratio: 16 / 9;
  }

  .video-card.v3a-inline-video {
    cursor: default;
  }

  .video-card.v3a-inline-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: inherit;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .video-card.v3a-inline-video.is-unmuted::after {
    opacity: 0;
  }

  .video-card img,
  .video-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-card__play {
    position: relative;
    z-index: 1;
    width: 144px;
    height: 144px;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .video-card__play img {
    width: 100%;
    height: 100%;
  }

  .video-card .v3a-inline-video__activate .v3a-inline-video__sound {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-white);
    line-height: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .video-card .v3a-inline-video__activate  {
    inset: 0;
    align-items: flex-end;
    justify-content: flex-end;
    padding: clamp(16px, 2vw, 24px);
    background: transparent;
  }


  /* ========== RESPONSIVE — SINGLE CASE ========== */

  /* --- Clamp fonts for fluid scaling --- */
  .section-hero-case__text .text-display-140-ebold {
    font-size: clamp(3rem, 3.5vw + 1.5rem, 8.75rem);
  }

  .section-hero-case__text .text-heading-24-med {
    font-size: clamp(0.875rem, 0.8vw + 0.5rem, 1.5rem);
  }

  .case-info__value.text-title-60-bold {
    font-size: clamp(2rem, 2vw + 1rem, 3.75rem);
  }

  .case-info__tagline.text-title-44-ebold {
    font-size: clamp(1.5rem, 1.5vw + 0.75rem, 2.75rem);
  }

  .case-info__description.text-paragraph-32-light-wide {
    font-size: clamp(1rem, 1vw + 0.5rem, 2rem);
  }

  .case-challenge-block__title.text-heading-48-bold {
    font-size: clamp(1.5rem, 1.5vw + 0.75rem, 3rem);
  }

  .case-challenge-block__body.text-paragraph-24-light {
    font-size: clamp(1rem, 0.6vw + 0.75rem, 1.5rem);
  }

  .case-quote__text.text-paragraph-24-light {
    font-size: clamp(1rem, 0.6vw + 0.75rem, 1.5rem);
  }

  .case-info__label.text-paragraph-22-reg {
    font-size: clamp(0.875rem, 0.6vw + 0.625rem, 1.375rem);
  }

  /* --- 1440px — Laptop --- */
  @media (max-width: 1440px) {
    .section-hero-case {
      height: 800px;
    }

    .case-image-full {
      height: 680px;
    }

    .case-challenge-image {
      width: 580px;
      height: 580px;
    }

    .case-challenge-text {
      width: 50%;
      gap: 100px;
    }

    .case-images-row__item {
      height: 380px;
    }

    .section-case-content .container {
      padding-top: 80px;
      padding-bottom: 140px;
    }

    .video-card__play {
      width: 100px;
      height: 100px;
    }

    .case-quote__text {
      padding: 0 40px;
    }

    .case-quote {
      gap: 80px;
    }
  }

  /* --- 1024px — Tablet landscape --- */
  @media (max-width: 1024px) {
    .section-hero-case {
      height: 700px;
    }

    .section-hero-case .container {
      padding-bottom: 48px;
    }

    .section-case-content .container {
      padding-top: 64px;
      padding-bottom: 100px;
    }

    .section-case-content .content {
      gap: 56px;
    }

    /* Stack info rows vertically */
    .case-info__row {
      flex-direction: column;
      gap: 24px;
    }

    .case-info__right {
      padding-top: 0;
      gap: 32px;
    }

    .case-image-full {
      height: 480px;
      border-radius: 24px;
    }

    /* Challenge row: stack */
    .case-challenge-row {
      flex-direction: column;
      gap: 40px;
    }

    .case-challenge-text {
      width: 100%;
      gap: 48px;
    }

    .case-challenge-image {
      width: 100%;
      height: 400px;
      border-radius: 24px;
    }

    .case-challenge-block {
      gap: 24px;
    }

    /* Images row */
    .case-images-row {
      gap: 24px;
    }

    .case-images-row__item {
      height: 320px;
      border-radius: 24px;
    }

    .case-quote {
      gap: 56px;
    }

    .case-quote__text {
      padding: 0 20px;
    }

    /* Videos */
    .section-case-videos .container {
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .video-card {
      border-radius: 24px;
    }

    .video-card__play {
      width: 80px;
      height: 80px;
    }

    .section-case-videos__graphism {
      height: 56px;
    }

    .section-case-videos__graphism img {
      height: 56px;
      width: 680px;
      right: 40px;
    }
  }

  /* --- 768px — Tablet portrait / small tablet --- */
  @media (max-width: 768px) {
    .section-hero-case {
      height: 760px;
    }

    .section-hero-case .container {
      padding-bottom: 20px;
      padding-top: 20px;
    }

    .section-case-content .container {
      padding-top: 64px;
      padding-bottom: 80px;
    }

    .section-case-content .content {
      gap: 40px;
    }

    .case-info {
      gap: 40px;
    }

    .case-info__row {
      gap: 16px;
    }

    .case-info__right {
      gap: 24px;
    }

    .case-image-full {
      height: 240px;
      border-radius: 16px;
    }

    .case-image-full img {
      border-radius: 16px;
    }

    /* Tags: stack full width */
    .case-tags {
      flex-direction: column;
      gap: 16px;
    }

    .case-tag {
      width: 100%;
      font-size: 1rem;
      height: 56px;
    }

    /* Challenge */
    .case-challenge-text {
      gap: 48px;
    }

    .case-challenge-block {
      gap: 16px;
    }

    .case-challenge-image {
      height: 240px;
      border-radius: 16px;
    }

    /* Images: stack vertically */
    .case-images-row {
      flex-direction: column;
      gap: 20px;
    }

    .case-images-row__item {
      height: 240px;
      border-radius: 16px;
    }

    .case-quote {
      gap: 40px;
    }

    .case-quote__text {
      padding: 0;
    }

    .section-case-videos__graphism {
      height: 30px;
    }

    .section-case-videos__graphism img {
      height: 30px;
      width: 335px;
      right: 50%;
      transform: translateX(50%);
    }

    .section-case-videos .container {
      padding-top: 64px;
      padding-bottom: 72px;
    }

    .video-card {
      border-radius: 16px;
    }

    .video-card__play {
      width: 64px;
      height: 64px;
    }
  }

  /* --- 480px — Small mobile --- */
  @media (max-width: 480px) {
    .section-case-content .content {
      gap: 32px;
    }

    .case-info {
      gap: 32px;
    }

    .case-info__right {
      gap: 20px;
    }

    .case-challenge-text {
      gap: 40px;
    }

    .case-images-row__item {
      height: 200px;
    }

    .case-image-full {
      height: 200px;
    }

    .case-challenge-image {
      height: 200px;
    }
  }
}

/* ============================================
   ENTRY CONTENT (Gutenberg / Rich Text Pages)
   ============================================ */
.page-main {
  padding-top: 200px;
  padding-bottom: 80px;
}

@media (max-width: 1440px) {
  .page-main {
    padding-top: 160px;
  }
}

@media (max-width: 1024px) {
  .page-main {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .page-main {
    padding-top: 100px;
  }
}

/* 404 */
.page-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50vh;
  gap: 16px;
}

.page-404__title {
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-black);
}

.page-404__text {
  font-size: 1.125rem;
  color: var(--brand-dark-gray);
}

.page-404__btn {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 32px;
  background: var(--brand-yellow);
  color: var(--color-black);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.page-404__btn:hover {
  opacity: 0.85;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.entry-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--brand-dark-gray);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--color-black);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 1.3;
}

.entry-content h1 {
  font-size: 2rem;
}
.entry-content h2 {
  font-size: 1.625rem;
}
.entry-content h3 {
  font-size: 1.375rem;
}
.entry-content h4 {
  font-size: 1.125rem;
}

.entry-content p {
  margin-bottom: 1.25em;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.25em;
  padding-left: 1.5em;
}

.entry-content li {
  margin-bottom: 0.5em;
}

.entry-content ul li {
  list-style-type: disc;
}

.entry-content ol li {
  list-style-type: decimal;
}

.entry-content strong {
  font-weight: 700;
  color: var(--color-black);
}

.entry-content a {
  color: var(--color-black);
  text-decoration: underline;
  transition: color 0.2s;
}

.entry-content a:hover {
  color: var(--brand-yellow);
}

.entry-content blockquote {
  border-left: 4px solid var(--brand-yellow);
  padding: 1em 1.5em;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--brand-dark-gray);
  background: var(--brand-cloud);
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1em 0;
}

.entry-content .wp-block-list {
  margin-bottom: 1.25em;
  padding-left: 1.5em;
}

.entry-content hr {
  border: none;
  border-top: 1px solid var(--brand-light-gray);
  margin: 2em 0;
}

.section-hero-case__text h1 {
  text-transform: uppercase;
}

.navbar__items {
  a {
    position: relative;
    text-decoration: none;
  }

  a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  a:hover::after,
  a.active::after {
    width: 100%;
  }
}

.section-hero .section-hero__description {
  font-size: 1rem !important;
}

.section-hero__button {
  padding: 0.6rem 0.8rem !important;
  font-size: 0.9rem !important;
}

.footer__logo {
  width: 130px !important;
  height: 130px !important;
}
