:root {
  --fc-dark: #1b1b33;
  --fc-dark-2: #23263a;
  --fc-text: #8e9099;
  --fc-accent: #ee7203;
  --fc-white: #ffffff;
  --fc-light: #f7f5f2;
  --fc-line: #e8e5df;
  --fc-shell: min(1170px, calc(100% - 96px));
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/montserrat-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/montserrat-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/montserrat-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fc-white);
  color: var(--fc-text);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

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

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

.fc-shell {
  width: var(--fc-shell);
  margin: 0 auto;
}

.fc-kicker {
  margin: 0;
  color: var(--fc-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fc-kicker--dark {
  color: #6d727c;
}

.fc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid var(--fc-accent);
  border-radius: 0;
  background: var(--fc-accent);
  color: var(--fc-white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.fc-button:hover,
.fc-button:focus {
  background: #db6700;
  border-color: #db6700;
  color: #000;
}

.fc-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
}

.fc-header__bar {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 104px;
}

.fc-header__brand img {
  width: 270px;
  height: auto;
}

.fc-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.fc-header__nav a,
.fc-header__actions a {
  color: var(--fc-white);
  font-size: 15px;
  font-weight: 600;
}

.fc-header__nav > a.is-active,
.fc-header__nav-item.is-active > a {
  color: var(--fc-accent);
}

.fc-header__nav-item {
  position: relative;
}

.fc-header__nav-item > a {
  display: inline-flex;
  align-items: center;
}

.fc-header__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  display: grid;
  gap: 10px;
  min-width: 240px;
  padding: 18px 16px;
  background: rgba(18, 20, 35, 0.96);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.fc-header__submenu a {
  font-size: 14px;
  line-height: 1.3;
}

.fc-header__nav-item:hover .fc-header__submenu,
.fc-header__nav-item:focus-within .fc-header__submenu,
.fc-header__nav-item.is-open .fc-header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fc-header__nav a:hover,
.fc-header__actions a:hover,
.fc-mobile-nav a:hover {
  color: var(--fc-accent);
}

.fc-header__actions {
  display: flex;
  align-items: center;
  gap: 3px;
}

.fc-button--header {
  min-height: 48px;
  padding: 0 28px;
  margin-left: 6px;
  font-size: 15px;
  font-weight: 400;
}

.fc-header__actions .fc-button--header:hover,
.fc-header__actions .fc-button--header:focus {
  color: #000 !important;
}

.fc-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  color: var(--fc-accent) !important;
}

.fc-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.fc-header__actions .fc-social:hover,
.fc-header__actions .fc-social:focus {
  color: var(--fc-accent) !important;
}

.fc-page--sustentabilidade .fc-social {
  color: #4f9144 !important;
}

.fc-page--sustentabilidade .fc-header__nav a,
.fc-page--sustentabilidade .fc-header__actions a {
  color: #4f9144;
}

.fc-page--sustentabilidade .fc-header__nav > a.is-active,
.fc-page--sustentabilidade .fc-header__nav-item.is-active > a {
  color: #2f7f4a;
}

.fc-page--sustentabilidade .fc-header__nav a:hover,
.fc-page--sustentabilidade .fc-header__actions a:hover {
  color: #2f7f4a !important;
}

.fc-page--sustentabilidade .fc-header__actions .fc-social:hover,
.fc-page--sustentabilidade .fc-header__actions .fc-social:focus {
  color: #2f7f4a !important;
}

.fc-page--sustentabilidade .fc-button--header {
  background: #4f9144;
  border-color: #4f9144;
  color: var(--fc-white) !important;
}

.fc-page--sustentabilidade .fc-button--header:hover,
.fc-page--sustentabilidade .fc-button--header:focus {
  background: #437c3a;
  border-color: #437c3a;
  color: #000 !important;
}

.fc-page--sustentabilidade .fc-header__submenu {
  background: rgba(79, 145, 68, 0.96);
}

.fc-page--sustentabilidade .fc-header__submenu a {
  color: var(--fc-white);
}

.fc-page--sustentabilidade .fc-header__submenu a:hover,
.fc-page--sustentabilidade .fc-header__submenu a:focus {
  color: rgba(255, 255, 255, 0.82);
}

.fc-header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.fc-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--fc-white);
}

.fc-mobile-nav {
  display: none;
}

.fc-hero {
  position: relative;
  min-height: 818px;
  overflow: hidden;
  background: #000;
}

.fc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.78);
}

.fc-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.fc-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  min-width: 177.78vh;
  height: 56.25vw;
  min-height: 100vh;
  border: 0;
  z-index: 1;
  display: block;
  transform: translate(-50%, -50%) scale(1.38);
  transform-origin: center center;
  pointer-events: none;
}

.fc-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 818px;
}

.fc-hero__copy {
  max-width: 900px;
  padding: 150px 0 98px;
  text-align: center;
}

.fc-hero__copy h1,
.fc-intro__title h2,
.fc-about__copy h3,
.fc-solutions__copy h2,
.fc-sustainability__copy h2,
.fc-contact__visual h2,
.fc-metric strong {
  margin: 0;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
}

.fc-hero__copy h1 {
  color: var(--fc-white);
  font-size: clamp(54px, 6.6vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
}

.fc-hero__copy h1 span {
  display: block;
}

.fc-hero__accent,
.fc-intro__accent,
.fc-solutions__copy h2 .fc-solutions__accent {
  color: var(--fc-accent);
}

.fc-hero__copy p {
  max-width: 820px;
  margin: 26px auto 0;
  color: var(--fc-white);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.fc-hero__arrow {
  margin-top: 82px;
  color: var(--fc-white);
  font-size: 60px;
  font-weight: 200;
  line-height: 1;
}

.fc-clients-strip {
  overflow: hidden;
  background: #1d1c35;
}

.fc-clients-strip__track {
  display: flex;
  width: max-content;
  animation: fc-marquee 30s linear infinite;
}

.fc-clients-strip__group {
  display: flex;
  align-items: center;
  gap: 92px;
  min-width: max-content;
  padding: 68px 54px;
}

.fc-clients-strip__group img {
  width: auto;
  max-height: 74px;
  opacity: 0.72;
  filter: grayscale(1) brightness(1.2);
}

.fc-manifesto {
  position: relative;
}

.fc-manifesto__link {
  position: relative;
  display: block;
  background: #1a1622;
}

.fc-manifesto__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 9, 0.36);
}

.fc-manifesto__link img {
  width: 100%;
  height: min(70vh, 630px);
  object-fit: cover;
}

.fc-manifesto__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 364px;
  height: 364px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.fc-manifesto__ring span {
  color: var(--fc-white);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fc-video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.fc-video-modal.is-open {
  display: flex;
}

.fc-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 18, 0.82);
}

.fc-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 40px));
  margin: 0;
}

.fc-video-modal__close {
  position: absolute;
  top: -42px;
  right: 0;
  border: 0;
  background: transparent;
  color: var(--fc-white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.fc-video-modal__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.fc-video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.fc-intro {
  padding: 34px 0 0;
  background: var(--fc-white);
}

.fc-intro__title {
  text-align: center;
}

.fc-intro__title h2 {
  font-size: clamp(54px, 6.6vw, 88px);
  line-height: 0.95;
  text-transform: uppercase;
}

.fc-intro__title h2 span {
  display: block;
}

.fc-about {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 102px;
  align-items: start;
  padding: 112px 0 82px;
}

.fc-about__media img {
  width: 100%;
}

.fc-about__copy {
  padding-top: 40px;
}

.fc-about__copy h3 {
  margin-top: 18px;
  font-size: clamp(46px, 4vw, 64px);
  line-height: 0.95;
}

.fc-about__copy p {
  margin: 0 0 22px;
  color: var(--fc-text);
  font-size: 18px;
  line-height: 1.82;
}

.fc-metrics {
  padding: 48px 0 108px;
  overflow: hidden;
}

.fc-metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px;
  align-items: center;
}

.fc-metric {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-metric::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -45px;
  width: 1px;
  height: 86px;
  background: #e8e5df;
}

.fc-metric:last-child::after {
  display: none;
}

.fc-metric strong {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #f3f3f1;
  font-size: clamp(120px, 15vw, 228px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-align: center;
}

.fc-metric span {
  position: relative;
  z-index: 1;
  color: var(--fc-dark-2);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  text-align: center;
}

.fc-solutions {
  padding: 78px 0 88px;
  background: #1d1c35;
}

.fc-solutions__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: stretch;
}

.fc-solutions__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0 10px;
}

.fc-solutions__copy h2 {
  max-width: 610px;
  margin-top: 20px;
  color: var(--fc-white);
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: 1.02;
}

.fc-solutions__typed {
  display: inline;
  position: relative;
  color: var(--fc-accent);
}

.fc-solutions__typed::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.92em;
  margin-left: 4px;
  background: currentColor;
  vertical-align: -0.08em;
  animation: fc-caret 0.9s step-end infinite;
}

.fc-solutions__list {
  display: grid;
  gap: 18px;
  margin: 42px 0 42px;
  max-width: 560px;
}

.fc-solutions__list h3,
.fc-sustainability__item h3 {
  margin: 0 0 4px;
  color: var(--fc-white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.fc-solutions__list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.5;
}

.fc-solutions__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: center;
}

.fc-solutions__gallery figure {
  margin: 0;
  background: #f4f2ef;
  overflow: hidden;
}

.fc-solutions__gallery img {
  width: 100%;
  aspect-ratio: 0.95 / 1;
  object-fit: cover;
}

.fc-sustainability {
  padding: 0 0 86px;
  background: #1d1c35;
  color: var(--fc-white);
  overflow: hidden;
}

.fc-sustainability__marquee {
  padding: 42px 0 82px;
}

.fc-sustainability__marquee-line {
  overflow: hidden;
  white-space: nowrap;
}

.fc-sustainability__marquee-line + .fc-sustainability__marquee-line {
  margin-top: 14px;
}

.fc-sustainability__track {
  display: inline-flex;
  gap: 64px;
  min-width: max-content;
  animation: fc-marquee 26s linear infinite;
}

.fc-sustainability__marquee-line--right .fc-sustainability__track {
  animation-name: fc-marquee-reverse;
}

.fc-sustainability__track span {
  color: var(--fc-white);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(56px, 5vw, 88px);
  line-height: 1;
  text-transform: uppercase;
}

.fc-sustainability__track img {
  width: auto;
  height: clamp(44px, 4.2vw, 74px);
  object-fit: contain;
  flex: 0 0 auto;
  align-self: center;
}

.fc-sustainability__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 62px;
  align-items: start;
}

.fc-sustainability__copy {
  padding-left: 4px;
}

.fc-sustainability__copy h2 {
  max-width: 560px;
  color: var(--fc-white);
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: 1.02;
}

.fc-sustainability__copy p {
  max-width: 620px;
  margin: 26px 0 36px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.72;
}

.fc-sustainability__items {
  display: grid;
  gap: 32px;
}

.fc-sustainability__item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 20px;
  align-items: center;
}

.fc-sustainability__item img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.fc-sustainability__item h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.08;
}

.fc-certificates {
  padding: 92px 0 98px;
  background: var(--fc-light);
}

.fc-certificates__heading {
  max-width: 760px;
  margin-bottom: 42px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.fc-certificates__heading h2 {
  margin: 14px 0 0;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 0.98;
}

.fc-certificates__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fc-certificate-card {
  min-height: 100%;
  padding: 28px;
  background: var(--fc-white);
}

.fc-certificate-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 188px;
  margin-bottom: 22px;
}

.fc-certificate-card img {
  width: auto;
  max-width: 88%;
  max-height: 168px;
  object-fit: contain;
}

.fc-certificate-card__logo--fsc {
  max-width: 92%;
  max-height: 184px;
}

.fc-certificate-card__logo--ecologo {
  transform: scale(1.4);
}

.fc-certificate-card__logo--disney {
  transform: scale(1.6);
}

.fc-certificate-card__logo--smeta {
  transform: scale(1.4);
}

.fc-certificate-card__logo--fsc {
  transform: scale(1.25);
  transform-origin: center;
}

.fc-certificate-card p {
  margin: 0;
  color: #666a72;
  font-size: 16px;
  line-height: 1.65;
}

.fc-contact {
  padding: 74px 0 48px;
  background: var(--fc-white);
}

.fc-footer {
  background: var(--fc-light);
}

.fc-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.fc-contact__visual h2 {
  max-width: 520px;
  margin-top: 12px;
  color: #040404;
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: 1.02;
}

.fc-contact__visual p {
  max-width: 570px;
  margin: 26px 0 0;
  color: #6b7078;
  font-size: 18px;
  line-height: 1.72;
}

.fc-contact__visual img {
  width: 100%;
  max-width: 594px;
  margin-top: 54px;
}

.fc-contact-form {
  padding: 52px 62px 48px;
  background: #fbfaf8;
}

.fc-contact-form__field {
  display: block;
  margin-bottom: 28px;
}

.fc-contact-form__field span {
  display: none;
}

.fc-contact-form input,
.fc-contact-form textarea {
  width: 100%;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid var(--fc-line);
  border-radius: 0;
  background: transparent;
  color: #111827;
  font: inherit;
  outline: none;
}

.fc-contact-form input::placeholder,
.fc-contact-form textarea::placeholder {
  color: #a7aab1;
}

.fc-contact-form textarea {
  min-height: 100px;
  resize: vertical;
  padding-top: 6px;
}

.fc-contact-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0 30px;
  color: #7f848c;
  font-size: 14px;
  line-height: 1.65;
}

.fc-contact-form__consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.fc-contact-form__consent a,
.fc-footer__info a,
.fc-footer__copy a {
  color: var(--fc-accent);
}

.fc-footer__meta {
  padding: 42px 0 36px;
}

.fc-footer__meta-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) minmax(360px, 1.02fr) minmax(180px, 0.5fr) minmax(320px, 0.9fr);
  grid-template-areas: "brand info nav certs";
  gap: 54px;
  align-items: start;
}

.fc-footer__brandblock {
  grid-area: brand;
}

.fc-footer__logo {
  width: 232px;
}

.fc-footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.fc-footer__info {
  grid-area: info;
  padding-top: 0;
}

.fc-footer__nav {
  grid-area: nav;
  display: grid;
  gap: 10px;
  align-content: start;
  padding-top: 0;
}

.fc-footer__nav a {
  color: #6d727c;
  font-size: 14px;
  line-height: 1.05;
}

.fc-footer__nav a:hover,
.fc-footer__nav a:focus {
  color: var(--fc-accent);
}

.fc-social--footer {
  width: 66px;
  height: 66px;
  color: var(--fc-accent);
}

.fc-social--footer svg {
  width: 30px;
  height: 30px;
}

.fc-footer__info p,
.fc-footer__copy p {
  margin: 0 0 12px;
  color: #6d727c;
  font-size: 14px;
  line-height: 1.18;
}

.fc-footer__certs {
  grid-area: certs;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 10px;
  align-items: center;
  justify-items: center;
  padding-top: 0;
}

.fc-footer__certs img {
  width: auto;
  max-width: 100%;
  max-height: 84px;
  object-fit: contain;
}

.fc-footer__seal--fsc {
  transform: scale(1.22);
  transform-origin: center;
}

.fc-footer__seal--disney {
  transform: scale(1.34);
  transform-origin: center;
}

.fc-footer__seal--smeta {
  transform: scale(1.18);
  transform-origin: center;
}

.fc-footer__copy {
  padding: 6px 0 30px;
}

.fc-footer__copy p {
  margin: 0;
  color: #666a72;
  font-size: 14px;
  text-align: center;
}

.fc-page-main {
  background: var(--fc-white);
}

.fc-page-hero {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(rgba(24, 24, 42, 0.1), rgba(24, 24, 42, 0.1)),
    url("./../imagens/bg-topo.png") top center/cover no-repeat;
}

.fc-page-hero--sustentabilidade {
  min-height: 312px;
  background: url("./../imagens/banner-topo-sustentabilidade.jpg") center/cover no-repeat;
}

.fc-page-hero__inner {
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding-top: 96px;
}

.fc-page-hero--sustentabilidade .fc-page-hero__inner {
  min-height: 312px;
  padding-top: 94px;
}

.fc-page-hero h1 {
  margin: 0;
  color: var(--fc-white);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(38px, 3.8vw, 56px);
  line-height: 0.96;
  text-transform: uppercase;
  text-align: center;
}

.fc-page-hero--sustentabilidade h1 {
  color: #19a64a;
}

.fc-page-hero__arrow {
  color: var(--fc-accent);
  font-size: 44px;
  line-height: 1;
}

.fc-page-section {
  padding: 88px 0;
}

.fc-page-section--tight {
  padding: 56px 0 72px;
}

.fc-page-grid {
  display: grid;
  gap: 56px;
}

.fc-page-grid--2 {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.fc-page-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-page-lead h2,
.fc-page-copy h2,
.fc-page-card h3,
.fc-page-blog h2,
.fc-page-form-block__copy h2,
.fc-page-feature-list h3,
.fc-page-feature-copy h3,
.fc-page-portfolio h2,
.fc-page-about h2,
.fc-page-timeline h2,
.fc-page-impact h2 {
  margin: 0 0 16px;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
}

.fc-page-lead h2,
.fc-page-copy h2,
.fc-page-form-block__copy h2,
.fc-page-portfolio h2,
.fc-page-about h2,
.fc-page-timeline h2,
.fc-page-impact h2 {
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
}

.fc-page-lead p,
.fc-page-copy p,
.fc-page-card p,
.fc-page-feature-copy p,
.fc-page-feature-list p,
.fc-page-about p,
.fc-page-impact p,
.fc-page-form-note,
.fc-page-blog-card p {
  margin: 0;
  color: #666a72;
  font-size: 17px;
  line-height: 1.68;
}

.fc-page-copy > * + *,
.fc-page-lead > * + * {
  margin-top: 18px;
}

.fc-page-media img,
.fc-page-media iframe {
  width: 100%;
  display: block;
}

.fc-page-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.fc-page-card {
  padding: 26px 24px;
  background: #f7f5f2;
}

.fc-page-card h3 {
  font-size: 24px;
  line-height: 1.08;
}

.fc-solutions-page__intro {
  max-width: 820px;
}

.fc-solutions-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 30px;
  margin-top: 36px;
}

.fc-solutions-page__card {
  display: grid;
  background: #f8f6f3;
}

.fc-solutions-page__media {
  display: block;
  overflow: hidden;
}

.fc-solutions-page__media img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  display: block;
}

.fc-solutions-page__content {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px 24px 28px;
}

.fc-solutions-page__content .fc-kicker {
  margin: 0;
}

.fc-solutions-page__content h3 {
  margin: 0;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 0.98;
}

.fc-solutions-page__content p:last-of-type {
  margin: 0;
  color: #666a72;
  font-size: 17px;
  line-height: 1.68;
}

.fc-solutions-page__content .fc-button {
  width: fit-content;
  min-width: 188px;
  margin-top: 6px;
}

.fc-page-highlight {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #101320;
}

.fc-page-highlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.fc-page-highlight__copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px;
  color: var(--fc-white);
}

.fc-page-highlight__copy h2 {
  max-width: 320px;
  margin: 0;
  color: var(--fc-white);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 0.98;
}

.fc-page-highlight__play {
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.fc-page-form-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: center;
}

.fc-page-form-block__copy img {
  width: 100%;
  max-width: 420px;
  margin-top: 22px;
}

.fc-page-form {
  padding: 34px 36px;
  background: #fbfaf8;
}

.fc-page-form__row {
  margin-bottom: 16px;
}

.fc-page-form input,
.fc-page-form textarea,
.fc-page-form select {
  width: 100%;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid var(--fc-line);
  border-radius: 0;
  background: transparent;
  color: #111827;
  font: inherit;
  outline: none;
}

.fc-page-form textarea {
  min-height: 108px;
  resize: vertical;
}

.fc-page-form__row--upload input[type="file"] {
  padding-bottom: 10px;
  color: #7c8189;
  font-size: 14px;
}

.fc-page-form__row--upload input[type="file"]::file-selector-button {
  margin-right: 10px;
  padding: 6px 10px;
  border: 1px solid #cfc8ba;
  background: #fff;
  color: #44484f;
  font: inherit;
  cursor: pointer;
}

.fc-page-form__consent {
  display: flex;
  gap: 10px;
  margin: 14px 0 20px;
  color: #7f848c;
  font-size: 14px;
  line-height: 1.55;
}

.fc-page-blog {
  text-align: center;
}

.fc-page-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.fc-page-blog-card {
  text-align: left;
}

.fc-page-blog-card img {
  width: 100%;
  margin-bottom: 14px;
}

.fc-page-blog-card h3 {
  margin: 0 0 8px;
  color: var(--fc-dark-2);
  font-size: 18px;
}

.fc-page-feature-list {
  display: grid;
  gap: 18px;
}

.fc-page-feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.fc-page-feature-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.fc-page-feature-item h4 {
  margin: 0 0 4px;
  color: var(--fc-dark-2);
  font-size: 16px;
}

.fc-page-feature-item p {
  font-size: 15px;
  line-height: 1.55;
}

.fc-page-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.fc-page-portfolio__item {
  margin: 0;
  padding: 0;
  border: 0;
  background: #f7f5f2;
  text-align: left;
  cursor: pointer;
}

.fc-page-portfolio__item img {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
}

.fc-page-portfolio__item span {
  display: block;
  padding: 14px 16px 18px;
  color: var(--fc-dark-2);
  font-size: 14px;
  font-weight: 600;
}

.fc-page-portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.fc-page-portfolio__filter {
  padding: 12px 18px;
  border: 1px solid #e5ded1;
  background: var(--fc-white);
  color: #666971;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.fc-page-portfolio__filter.is-active {
  border-color: var(--fc-accent);
  background: var(--fc-accent);
  color: var(--fc-white);
}

.fc-page-portfolio__item[hidden] {
  display: none;
}

.fc-portfolio-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 1300;
}

.fc-portfolio-modal.is-open {
  display: flex;
}

.fc-portfolio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
}

.fc-portfolio-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: 90vh;
  padding: 26px;
  background: var(--fc-white);
}

.fc-portfolio-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #1f1f1f;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.fc-portfolio-modal__body {
  display: grid;
  gap: 18px;
}

.fc-portfolio-modal__body img {
  width: 100%;
  max-height: calc(90vh - 120px);
  object-fit: contain;
}

.fc-portfolio-modal__body h3 {
  margin: 0;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1;
}

.fc-page-about__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.fc-page-about__metric {
  padding: 24px 22px;
  background: #f7f5f2;
  text-align: center;
}

.fc-page-about__metric strong {
  display: block;
  color: var(--fc-accent);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.fc-page-about__metric span {
  display: block;
  margin-top: 10px;
  color: #666a72;
  font-size: 15px;
}

.fc-page-color-band {
  padding: 64px 0;
  background: #ee7203;
}

.fc-page-color-band .fc-page-grid--3 .fc-page-card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.14);
}

.fc-page-color-band .fc-page-card h3,
.fc-page-color-band .fc-page-card p {
  color: var(--fc-white);
}

.fc-page-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fc-page-pillars .fc-page-card {
  text-align: center;
}

.fc-page-pillars img {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
}

.fc-page-timeline__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.fc-page-timeline__item {
  position: relative;
  padding-top: 34px;
  text-align: center;
}

.fc-page-timeline__item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6a38ff;
  transform: translateX(-50%);
}

.fc-page-timeline__item::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f2c29b;
  z-index: -1;
}

.fc-page-timeline__item:first-child::after {
  left: 50%;
  width: 50%;
}

.fc-page-timeline__item:last-child::after {
  width: 50%;
}

.fc-page-timeline__item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--fc-dark-2);
}

.fc-page-form-page {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: start;
}

.fc-page-form-page__copy {
  padding-top: 14px;
}

.fc-page-form-page__copy h2 {
  margin: 0;
  color: var(--fc-dark-2);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.fc-page-form-page__copy p {
  max-width: 350px;
  margin: 28px 0 0;
  color: #7c8189;
  font-size: 15px;
  line-height: 1.7;
}

.fc-page-form-page__copy img {
  width: 100%;
  max-width: 500px;
  margin-top: 34px;
}

.fc-page-form-page__form {
  padding: 42px 42px 38px;
  background: #fbfaf8;
  min-height: 475px;
}

.fc-page-form-page__form .fc-button {
  min-width: 0;
  padding: 13px 18px;
  font-size: 14px;
}

.fc-solution-page__intro,
.fc-solution-page__features {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 86px;
  align-items: start;
}

.fc-solution-page__intro-media img,
.fc-solution-page__features-media img {
  width: 100%;
}

.fc-solution-page__gallery {
  display: grid;
  gap: 12px;
}

.fc-solution-page__gallery figure {
  margin: 0;
  background: #f7f5f2;
}

.fc-solution-page__single-figure {
  margin: 0;
  background: transparent;
}

.fc-solution-page__gallery img {
  width: 100%;
  display: block;
}

.fc-solution-page__gallery--education {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc-solution-page__gallery--education figure:last-child {
  grid-column: 1 / -1;
}

.fc-solution-page__gallery--editorial {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc-solution-page__gallery--editorial figure:last-child {
  grid-column: 1 / -1;
}

.fc-solution-page__gallery--editorial figure {
  background: transparent;
}

.fc-solution-page__gallery--stacked {
  grid-template-columns: 1fr;
}

.fc-solution-page__intro-copy,
.fc-solution-page__features-copy {
  padding-top: 16px;
}

.fc-solution-page__intro-copy h2,
.fc-solution-page__features-copy h2 {
  margin: 16px 0 0;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(48px, 4.4vw, 72px);
  line-height: 0.96;
}

.fc-solution-page__intro-copy p:not(.fc-kicker),
.fc-solution-page__feature-item p {
  margin: 26px 0 0;
  color: #8e9099;
  font-size: 18px;
  line-height: 1.72;
}

.fc-solution-page__intro-copy .fc-button {
  margin-top: 34px;
}

.fc-solution-page__features-section {
  padding-top: 10px;
}

.fc-solution-page__feature-list {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}

.fc-solution-page__feature-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
}

.fc-solution-page__feature-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.fc-solution-page__feature-item h3 {
  margin: 0;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.02;
}

.fc-solution-page__feature-item p {
  margin-top: 8px;
  font-size: 16px;
}

.fc-page-blog-card a {
  display: block;
}

.fc-page-blog-card h3 {
  line-height: 1.32;
}

.fc-about-page {
  padding: 62px 0 26px;
  background: var(--fc-white);
}

.fc-sustainability-intro {
  padding: 76px 0 32px;
  background: var(--fc-white);
}

.fc-sustainability-intro__headline {
  margin: 0;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
}

.fc-sustainability-intro__headline span:last-child {
  color: var(--fc-accent);
}

.fc-sustainability-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 88px;
  align-items: center;
  margin-top: 72px;
}

.fc-sustainability-intro__media img {
  width: 100%;
  display: block;
}

.fc-sustainability-intro__copy h3 {
  margin: 16px 0 0;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(48px, 4.2vw, 72px);
  line-height: 0.96;
}

.fc-sustainability-intro__copy p {
  margin: 24px 0 0;
  color: #8e9099;
  font-size: 18px;
  line-height: 1.72;
}

.fc-sustainability-intro__copy p strong {
  color: #666971;
}

.fc-sustainability-pillars {
  padding: 28px 0 54px;
}

.fc-sustainability-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fc-sustainability-card {
  min-height: 700px;
  padding: 42px 28px 34px;
  color: var(--fc-white);
}

.fc-sustainability-card--green {
  background: #89b55b;
}

.fc-sustainability-card--purple {
  background: #7670c9;
}

.fc-sustainability-card--orange {
  background: #f4752b;
}

.fc-sustainability-card__kicker {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fc-sustainability-card h3 {
  margin: 22px 0 0;
  color: var(--fc-white);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(52px, 4.2vw, 74px);
  line-height: 0.94;
}

.fc-sustainability-card > p:not(.fc-sustainability-card__kicker) {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.62;
}

.fc-sustainability-card h4 {
  margin: 44px 0 0;
  color: var(--fc-white);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(52px, 4.2vw, 72px);
  line-height: 0.94;
}

.fc-sustainability-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px;
}

.fc-sustainability-card li {
  display: grid;
  gap: 6px;
}

.fc-sustainability-card li strong {
  font-size: 16px;
}

.fc-sustainability-card li span {
  font-size: 15px;
  line-height: 1.6;
}

.fc-sustainability-ods {
  padding: 70px 0 84px;
  text-align: center;
}

.fc-sustainability-ods p,
.fc-sustainability-ods h3 {
  margin: 0;
  color: #8e9099;
}

.fc-sustainability-ods h3 {
  margin-top: 12px;
  color: #666971;
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(28px, 2.6vw, 40px);
}

.fc-sustainability-ods__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
  margin-top: 42px;
}

.fc-sustainability-ods__grid img {
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  display: block;
}

.fc-sustainability-acting {
  padding: 26px 0 0;
  overflow: hidden;
}

.fc-sustainability-acting__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 76px;
  align-items: center;
}

.fc-sustainability-acting__media img {
  width: 100%;
  display: block;
}

.fc-sustainability-acting__copy h3 {
  margin: 0;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(48px, 4vw, 68px);
  line-height: 0.98;
  max-width: 690px;
}

.fc-sustainability-acting__list {
  margin-top: 28px;
  border-top: 1px solid #ece8df;
}

.fc-sustainability-acting__list div {
  padding: 24px 0;
  border-bottom: 1px solid #ece8df;
  color: #3f424a;
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(24px, 2vw, 34px);
}

.fc-sustainability-marquee {
  margin-top: 38px;
  padding: 26px 0 4px;
  overflow: hidden;
}

.fc-sustainability-marquee__track {
  display: flex;
  gap: 110px;
  white-space: nowrap;
  width: max-content;
  animation: fc-marquee-left 24s linear infinite;
}

.fc-sustainability-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: #2f7f4a;
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1;
  text-transform: uppercase;
}

.fc-sustainability-marquee__track span img {
  width: auto;
  height: 48px;
  flex: 0 0 auto;
}

.fc-sustainability-ethics {
  padding: 64px 0 76px;
  background: #f47a2c;
}

.fc-sustainability-ethics__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: start;
}

.fc-sustainability-ethics__visual h3,
.fc-sustainability-ethics__content h4,
.fc-sustainability-ethics__content p,
.fc-sustainability-ethics__content a {
  color: var(--fc-white);
}

.fc-sustainability-ethics__visual h3 {
  margin: 0;
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(48px, 4vw, 70px);
  line-height: 0.98;
}

.fc-sustainability-ethics__visual img {
  width: 100%;
  max-width: 620px;
  margin-top: 42px;
  display: block;
}

.fc-sustainability-ethics__content {
  display: grid;
  gap: 30px;
}

.fc-sustainability-ethics__content article {
  display: grid;
  gap: 16px;
}

.fc-sustainability-ethics__content h4 {
  margin: 0;
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(30px, 2.6vw, 42px);
}

.fc-sustainability-ethics__content p {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
}

.fc-sustainability-ethics__content a {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  text-decoration: none;
  font-size: 28px;
}

.fc-sustainability-timeline {
  padding: 78px 0 42px;
}

.fc-sustainability-timeline__heading {
  margin-bottom: 34px;
  text-align: center;
}

.fc-sustainability-timeline__heading h3 {
  margin: 12px 0 0;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(42px, 3.8vw, 58px);
  line-height: 1;
}

.fc-sustainability-timeline img {
  width: 100%;
  display: block;
}

.fc-about-page__headline {
  text-align: center;
}

.fc-about-page__headline h2,
.fc-about-page__story-copy h2,
.fc-about-page__statement-title h2,
.fc-about-page__operations-copy h2,
.fc-about-page__differentials-title h2,
.fc-about-page__differential h3 {
  margin: 0;
  color: var(--fc-dark-2);
  font-family: "Coolvetica", "Montserrat", sans-serif;
}

.fc-about-page__headline h2 {
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: 0.96;
  text-transform: uppercase;
}

.fc-about-page__headline-accent {
  color: var(--fc-accent);
}

.fc-about-page__section {
  padding: 72px 0;
}

.fc-about-page__story {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 86px;
  align-items: start;
}

.fc-about-page__story-media img {
  width: 135%;
  max-width: none;
}

.fc-about-page__story-copy {
  padding-top: 10px;
}

.fc-about-page__story-copy h2 {
  margin-top: 18px;
  font-size: clamp(48px, 4vw, 66px);
  line-height: 0.96;
}

.fc-about-page__story-copy p,
.fc-about-page__statement-copy p,
.fc-about-page__operations-copy p,
.fc-about-page__differential p {
  margin: 0;
  color: #8e9099;
  font-size: 18px;
  line-height: 1.72;
}

.fc-about-page__story-copy p + p,
.fc-about-page__statement-copy p + p,
.fc-about-page__operations-copy p + p {
  margin-top: 28px;
}

.fc-about-page__story-copy .fc-button {
  margin-top: 42px;
  min-width: 246px;
}

.fc-about-page__section--statement {
  background: #f4f4f1;
  padding-top: 92px;
  padding-bottom: 92px;
}

.fc-about-page__statement {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 96px;
  align-items: start;
}

.fc-about-page__statement-title h2 {
  margin-top: 20px;
  font-size: clamp(54px, 5vw, 88px);
  line-height: 0.94;
}

.fc-about-page__statement-title h2 span {
  color: var(--fc-accent);
}

.fc-about-page__statement-copy {
  display: grid;
  gap: 36px;
  padding-top: 8px;
}

.fc-about-page__statement-copy p {
  font-size: 18px;
  line-height: 1.72;
}

.fc-about-page__section--operations {
  padding-top: 64px;
  padding-bottom: 92px;
}

.fc-about-page__operations {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 64px;
  align-items: center;
}

.fc-about-page__operations-copy h2 {
  max-width: 420px;
  font-size: clamp(50px, 4.7vw, 78px);
  line-height: 0.94;
}

.fc-about-page__operations-copy h2 span {
  color: var(--fc-accent);
}

.fc-about-page__operations-copy p {
  max-width: 320px;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.9;
}

.fc-about-page__operations-media img {
  width: 100%;
}

.fc-about-page__differentials {
  overflow: hidden;
  padding: 0 0 88px;
  background: #1d1c35;
}

.fc-about-page__marquee {
  overflow: hidden;
  padding: 44px 0 78px;
}

.fc-about-page__marquee-track {
  display: inline-flex;
  gap: 44px;
  min-width: max-content;
  animation: fc-marquee 30s linear infinite;
}

.fc-about-page__marquee-track span {
  color: var(--fc-white);
  font-family: "Coolvetica", "Montserrat", sans-serif;
  font-size: clamp(52px, 4.3vw, 74px);
  line-height: 1;
  text-transform: uppercase;
}

.fc-about-page__marquee-track img {
  width: auto;
  height: 26px;
  flex: 0 0 auto;
  align-self: center;
}

.fc-about-page__differentials-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: 76px;
  align-items: start;
}

.fc-about-page__differentials-title {
  padding-top: 124px;
}

.fc-about-page__differentials-title .fc-kicker {
  margin-bottom: 22px;
}

.fc-about-page__differentials-title h2 {
  color: var(--fc-white);
  font-size: clamp(44px, 3.8vw, 64px);
  line-height: 1.04;
}

.fc-about-page__differentials-list {
  display: grid;
  gap: 28px;
}

.fc-about-page__differential {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 34px;
  align-items: center;
}

.fc-about-page__differential img {
  width: 112px;
  height: 112px;
  object-fit: cover;
}

.fc-about-page__differential h3 {
  margin-bottom: 8px;
  color: var(--fc-accent);
  font-size: 24px;
  line-height: 1.1;
}

.fc-about-page__differential p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.72;
}

@media (max-width: 1279px) {
  .fc-header__nav-item:hover .fc-header__submenu,
  .fc-header__nav-item:focus-within .fc-header__submenu,
  .fc-header__nav-item.is-open .fc-header__submenu {
    display: none;
  }

  .fc-page-hero,
  .fc-page-hero__inner {
    min-height: 300px;
  }

  .fc-page-hero--sustentabilidade,
  .fc-page-hero--sustentabilidade .fc-page-hero__inner {
    min-height: 280px;
  }

  .fc-page-grid--2,
  .fc-page-form-block,
  .fc-page-form-page {
    grid-template-columns: 1fr;
  }

  .fc-page-card-grid,
  .fc-page-blog__grid,
  .fc-page-portfolio__grid,
  .fc-solutions-page__grid,
  .fc-page-about__metrics,
  .fc-page-pillars,
  .fc-page-timeline__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fc-solution-page__intro,
  .fc-solution-page__features {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .fc-sustainability-intro__grid,
  .fc-sustainability-acting__grid,
  .fc-sustainability-ethics__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .fc-sustainability-pillars__grid {
    grid-template-columns: 1fr;
  }

  .fc-sustainability-ods__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fc-about-page__story,
  .fc-about-page__statement,
  .fc-about-page__operations,
  .fc-about-page__differentials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fc-about-page__operations-copy p {
    max-width: 100%;
  }

  .fc-about-page__differentials-title {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .fc-page-hero,
  .fc-page-hero__inner,
  .fc-page-hero--sustentabilidade .fc-page-hero__inner {
    min-height: 250px;
  }

  .fc-page-hero--sustentabilidade {
    min-height: 250px;
  }

  .fc-page-section {
    padding: 64px 0;
  }

  .fc-page-grid,
  .fc-page-form-block,
  .fc-page-form-page {
    gap: 28px;
  }

  .fc-page-card-grid,
  .fc-page-blog__grid,
  .fc-page-portfolio__grid,
  .fc-solutions-page__grid,
  .fc-page-about__metrics,
  .fc-page-pillars,
  .fc-page-timeline__row {
    grid-template-columns: 1fr;
  }

  .fc-solutions-page__content {
    padding: 24px 22px 26px;
  }

  .fc-page-highlight__copy {
    padding: 24px;
  }

  .fc-page-highlight__play {
    width: 108px;
    height: 108px;
  }

  .fc-page-form,
  .fc-page-form-page__form {
    padding: 26px 24px;
  }

  .fc-solution-page__intro-copy h2,
  .fc-solution-page__features-copy h2 {
    font-size: 50px;
  }

  .fc-solution-page__intro-copy p:not(.fc-kicker),
  .fc-solution-page__feature-item p {
    font-size: 16px;
  }

  .fc-solution-page__feature-item {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .fc-solution-page__feature-item img {
    width: 48px;
    height: 48px;
  }

  .fc-solution-page__feature-item h3 {
    font-size: 22px;
  }

  .fc-solution-page__gallery {
    gap: 8px;
  }

  .fc-sustainability-intro {
    padding: 54px 0 22px;
  }

  .fc-sustainability-intro__headline {
    font-size: 48px;
  }

  .fc-sustainability-intro__grid {
    margin-top: 42px;
  }

  .fc-sustainability-intro__copy h3,
  .fc-sustainability-acting__copy h3,
  .fc-sustainability-ethics__visual h3 {
    font-size: 48px;
  }

  .fc-sustainability-intro__copy p,
  .fc-sustainability-ethics__content p {
    font-size: 16px;
  }

  .fc-sustainability-card {
    min-height: 0;
    padding: 30px 22px 26px;
  }

  .fc-sustainability-card h3,
  .fc-sustainability-card h4 {
    font-size: 44px;
  }

  .fc-sustainability-ods {
    padding: 54px 0 60px;
  }

  .fc-sustainability-ods__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .fc-sustainability-marquee__track {
    gap: 56px;
  }

  .fc-sustainability-marquee__track span {
    font-size: 38px;
  }

  .fc-sustainability-marquee__track span img {
    height: 18px;
  }

  .fc-sustainability-ethics {
    padding: 48px 0 54px;
  }

  .fc-sustainability-ethics__content h4 {
    font-size: 28px;
  }

  .fc-sustainability-ethics__content a {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .fc-about-page {
    padding: 44px 0 8px;
  }

  .fc-about-page__section,
  .fc-about-page__section--statement,
  .fc-about-page__section--operations {
    padding: 58px 0;
  }

  .fc-about-page__headline h2 {
    font-size: 54px;
  }

  .fc-about-page__story-copy h2,
  .fc-about-page__operations-copy h2,
  .fc-about-page__differentials-title h2 {
    font-size: 48px;
  }

  .fc-about-page__statement-title h2 {
    font-size: 56px;
  }

  .fc-about-page__story-copy p,
  .fc-about-page__statement-copy p,
  .fc-about-page__operations-copy p,
  .fc-about-page__differential p {
    font-size: 16px;
  }

  .fc-about-page__story-copy .fc-button {
    width: 100%;
    min-width: 0;
  }

  .fc-about-page__marquee {
    padding: 34px 0 44px;
  }

  .fc-about-page__marquee-track {
    gap: 30px;
  }

  .fc-about-page__marquee-track span {
    font-size: 44px;
  }

  .fc-about-page__marquee-track img {
    height: 18px;
  }

  .fc-about-page__differential {
    grid-template-columns: 96px 1fr;
    gap: 18px;
  }

  .fc-about-page__differential img {
    width: 84px;
    height: 84px;
  }

  .fc-about-page__differential h3 {
    font-size: 20px;
  }
}

@keyframes fc-marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes fc-marquee-left {
  from {
    transform: translateX(0);
  }

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

@keyframes fc-marquee-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes fc-caret {
  50% {
    opacity: 0;
  }
}

@media (max-width: 1279px) {
  :root {
    --fc-shell: min(100%, calc(100% - 56px));
  }

  .fc-header__nav,
  .fc-header__actions {
    display: none;
  }

  .fc-header__toggle {
    display: block;
  }

  .fc-mobile-nav.is-open {
    display: grid;
    gap: 14px;
    padding: 0 28px 24px;
    background: rgba(24, 24, 42, 0.92);
    backdrop-filter: blur(16px);
  }

  .fc-mobile-nav a {
    color: var(--fc-white);
    font-size: 15px;
    font-weight: 500;
  }

  .fc-hero,
  .fc-hero__inner {
    min-height: 720px;
  }

  .fc-hero__copy h1 {
    font-size: clamp(54px, 6.6vw, 88px);
  }

  .fc-hero__copy p {
    font-size: 20px;
  }

  .fc-clients-strip__group {
    gap: 60px;
    padding: 52px 34px;
  }

  .fc-clients-strip__group img {
    max-height: 62px;
  }

  .fc-about,
  .fc-solutions__grid,
  .fc-sustainability__grid,
  .fc-contact__grid,
  .fc-footer__meta-grid {
    grid-template-columns: 1fr;
  }

  .fc-about {
    gap: 52px;
  }

  .fc-metrics__grid {
    gap: 24px;
  }

  .fc-metric::after {
    display: none;
  }

  .fc-contact-form {
    padding: 42px;
  }

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

  .fc-footer__meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand info"
      "nav certs";
    gap: 30px 40px;
  }

  .fc-footer__certs {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  :root {
    --fc-shell: calc(100% - 34px);
  }

  .fc-header__bar {
    min-height: 84px;
  }

  .fc-header__brand img {
    width: 229px;
  }

  .fc-hero,
  .fc-hero__inner {
    min-height: 640px;
  }

  .fc-hero__copy {
    padding: 120px 0 52px;
  }

  .fc-hero__copy h1 {
    font-size: 54px;
  }

  .fc-hero__copy p {
    font-size: 16px;
  }

  .fc-hero__arrow {
    margin-top: 52px;
    font-size: 44px;
  }

  .fc-clients-strip__group {
    gap: 44px;
    padding: 40px 22px;
  }

  .fc-clients-strip__group img {
    max-height: 48px;
  }

  .fc-manifesto__link img {
    height: 392px;
  }

  .fc-manifesto__ring {
    width: 220px;
    height: 220px;
  }

  .fc-manifesto__ring span {
    font-size: 13px;
    text-align: center;
  }

  .fc-intro {
    padding-top: 22px;
  }

  .fc-about {
    padding: 74px 0 52px;
    gap: 34px;
  }

  .fc-about__copy {
    padding-top: 0;
  }

  .fc-about__copy p,
  .fc-solutions__list p,
  .fc-sustainability__copy p,
  .fc-contact__visual p,
  .fc-footer__info p,
  .fc-footer__copy p {
    font-size: 16px;
  }

  .fc-metrics {
    padding: 18px 0 64px;
  }

  .fc-metrics__grid {
    grid-template-columns: 1fr;
  }

  .fc-metric {
    min-height: 150px;
  }

  .fc-solutions {
    padding: 60px 0;
  }

  .fc-solutions__copy {
    padding-top: 0;
  }

  .fc-solutions__gallery {
    gap: 6px;
  }

  .fc-sustainability {
    padding-bottom: 58px;
  }

  .fc-sustainability__marquee {
    padding: 30px 0 48px;
  }

  .fc-sustainability__grid {
    gap: 34px;
  }

  .fc-sustainability__item {
    grid-template-columns: 78px 1fr;
  }

  .fc-sustainability__item img {
    width: 66px;
    height: 66px;
  }

  .fc-contact {
    padding-top: 56px;
  }

  .fc-certificates {
    padding: 64px 0 68px;
  }

  .fc-certificates__grid {
    grid-template-columns: 1fr;
  }

  .fc-footer__meta-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "info"
      "nav"
      "certs";
    gap: 30px;
  }

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

  .fc-certificate-card__media {
    height: 164px;
  }

  .fc-certificate-card img {
    max-height: 140px;
  }

  .fc-certificate-card__logo--fsc {
    max-height: 156px;
  }

  .fc-contact__visual img {
    margin-top: 34px;
  }

  .fc-contact-form {
    padding: 30px 22px;
  }

  .fc-footer__logo {
    width: 220px;
  }

  .fc-footer__certs {
    gap: 12px;
  }

  .fc-footer__certs img {
    max-height: 108px;
  }
}
