@font-face {
  font-family: "Abril Display";
  src: url("scr/fontes/Abril_Display_Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Abril Display";
  src: url("scr/fontes/Abril_Display_Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Abril Display";
  src: url("scr/fontes/Abril_Display_SemiBoldItalic.otf") format("opentype");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Filson Pro";
  src: url("scr/fontes/FilsonProRegular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Filson Pro";
  src: url("scr/fontes/FilsonProLight.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Filson Pro";
  src: url("scr/fontes/FilsonProBold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Filson Pro Book";
  src: url("scr/fontes/FilsonProBook.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Filson Pro Medium";
  src: url("scr/fontes/FilsonProMedium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --ink: #181818;
  --green: #94dd70;
  --green-dark: #74b655;
  --purple: #aaa5d7;
  --purple-dark: #837eaf;
  --teal: #004c4b;
  --card: #282828;
  --line: #787878;
  /* Tres papeis tipograficos, calibrados pela referencia aprovada. */
  --font-size-small: 20px;
  --font-size-medium: clamp(28px, 2.222vw, 32px);
  --font-size-large: clamp(40px, 4.722vw, 68px);
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--white);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
}

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

.shell {
  width: min(1316px, calc(100% - 120px));
  margin-inline: auto;
}

.member-login-bar {
  width: min(1316px, calc(100% - 120px));
  height: clamp(34px, 2.61vw, 50px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: clamp(16px, 1.5vw, 24px);
  background: url("scr/imagens/login/login-bar.svg?v=2") center / 100% 100% no-repeat;
}

.member-login {
  display: inline-flex;
  align-items: center;
  gap: clamp(7px, .52vw, 10px);
  border-radius: 999px;
  transition: opacity .2s ease, transform .2s ease;
}

.member-login:hover {
  opacity: .78;
  transform: translateY(-1px);
}

.member-login:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}

.member-login-label {
  display: block;
  width: clamp(245px, 21.25vw, 408px);
  height: auto;
}

.member-login-icon {
  display: block;
  width: clamp(20px, 1.56vw, 30px);
  height: auto;
}

.site-header {
  height: 125px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 40px;
}

.header-shortcuts { display: flex; gap: 10px; }

.header-shortcut {
  position: relative;
  display: block;
  flex: 0 0 auto;
  line-height: 0;
  transition: transform .2s ease;
}

.header-shortcut:hover { transform: translateY(-1px); }
.header-shortcut:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.header-shortcut--hubbers { width: 209px; height: 29px; }
.header-shortcut--company { width: 211px; height: 29px; }
.header-shortcut img { display: block; }

.shortcut-bg,
.shortcut-label,
.shortcut-arrow {
  position: absolute;
  pointer-events: none;
}

.shortcut-bg {
  inset: 0;
  width: 100%;
  height: 100%;
}

.shortcut-label {
  top: 6px;
  left: 17px;
  height: 17px;
  width: auto;
}

.header-shortcut--company .shortcut-label {
  left: 27px;
}

.shortcut-arrow {
  top: 7px;
  right: 17px;
  width: 20px;
  height: 15px;
}

.shortcut-bg-hover,
.shortcut-label-hover {
  opacity: 0;
}

.header-shortcut:hover .shortcut-bg-default,
.header-shortcut:focus-visible .shortcut-bg-default,
.header-shortcut:hover .shortcut-label-default,
.header-shortcut:focus-visible .shortcut-label-default {
  opacity: 0;
}

.header-shortcut:hover .shortcut-bg-hover,
.header-shortcut:focus-visible .shortcut-bg-hover,
.header-shortcut:hover .shortcut-label-hover,
.header-shortcut:focus-visible .shortcut-label-hover {
  opacity: 1;
}

.crumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 104px;
}

.crumb-label {
  display: inline-block;
  border: .15px dashed #cacaca;
  border-radius: 20px;
  padding: 5px 20px;
  color: #cfcfcf;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
  line-height: 1;
}
.crumb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.brand {
  display: block;
  line-height: 0;
}

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

.hero h1 {
  margin: 39px 0 68px;
  text-align: center;
  color: #eee;
  font: italic var(--font-size-large)/.99 "Abril Display", Georgia, "Times New Roman", serif;
  letter-spacing: -2px;
}

.hero-sym {
  display: inline-block;
  width: 1.72em;
  height: auto;
  margin-inline: .05em;
  vertical-align: -.08em;
}

.intro-card {
  min-height: 266px;
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  border: 1px solid #777;
  border-radius: 12px;
}

.image-placeholder { background-color: var(--teal); }

.intro-image {
  min-height: 266px;
  border-right: 0px solid #666;
  background: url("scr/imagens/001.webp") center / cover no-repeat;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2px 60px;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
}
.intro-copy p { margin: 0; font-size: var(--font-size-small); line-height: 1.30; letter-spacing: 1.5px; }


.hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin-top: 45px; }
.hero-actions .button { font-family: "Filson Pro", Arial, Helvetica, sans-serif; font-weight: 400; }

.button {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
  border-radius: 8px;
  color: #111;
  font-size: var(--font-size-medium);
  font-weight: 600;
  transition: filter .2s ease, transform .2s ease;
}

.button:hover { filter: brightness(1.08); transform: translateY(-2px); }
.button span {
  width: 47px;
  height: 34px;
  flex: 0 0 47px;
  display: block;
  background: url("scr/imagens/Seta 03.png") center / contain no-repeat;
  line-height: 0;
  transition: transform .22s ease;
}
.button:hover span,
.button:focus-visible span { transform: translateX(7px); }
.button:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.button-green { background: var(--green); }
.button-purple { background: var(--purple); }

.highlights {
  margin-top: 106px;
  padding: 0;
  overflow: hidden;
}

.highlights-track {
  width: 100%;
  display: flex;
  overflow: hidden;
  padding: 0;
  cursor: grab;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.highlights-track::-webkit-scrollbar { display: none; }
.highlights-track.is-dragging {
  cursor: grabbing;
}
.highlights-track:focus-visible { outline: 3px solid var(--purple); outline-offset: -3px; }

.carousel-loop {
  flex: 0 0 auto;
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.carousel-strip {
  flex: 0 0 auto;
  height: clamp(250px, 20.94vw, 402px);
}

.folder-set {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, .84vw, 16px);
  padding: clamp(23px, 1.93vw, 37px) clamp(10px, .84vw, 16px) clamp(34px, 2.8vw, 54px) 0;
}

.folder-card {
  position: relative;
  z-index: 0;
  width: auto;
  height: clamp(190px, 14.84vw, 285px);
  flex: 0 0 auto;
  transform: scale(1);
  transform-origin: center;
  transition: transform .32s cubic-bezier(.2, .75, .25, 1), filter .32s ease;
  will-change: transform;
}

.folder-card img {
  display: block;
  width: auto;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

@media (hover: hover) and (pointer: fine) {
  .folder-card:hover {
    z-index: 2;
    filter: brightness(1.08);
    transform: scale(1.04) translateY(-2px);
  }
}

.information {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 105px 0 0;
  color: var(--ink);
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 -4px 0 #fff;
}

.tabs {
  --tab-height: clamp(29px, 4.167vw, 60px);
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: var(--tab-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: transparent;
  transform: translate(-50%, calc(-100% + 2px));
  z-index: 3;
}

.tabs::before,
.tabs::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: top center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.tabs::before {
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60C27 60 44 53 59 38L86 10C90 4 96 0 103 0H678C684 0 690 3 693 8L709 32C713 38 720 42 728 42H1427C1434 42 1440 48 1440 55V60H0Z' fill='%2394dd70'/%3E%3C/svg%3E");
  clip-path: inset(0 50% 0 0);
  transform: scaleX(-1);
}
.tabs::after {
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60C27 60 44 53 59 38L86 10C90 4 96 0 103 0H678C684 0 690 3 693 8L709 32C713 38 720 42 728 42H1427C1434 42 1440 48 1440 55V60H0Z' fill='white'/%3E%3C/svg%3E");
}
.information.company-mode .tabs::before {
  clip-path: inset(0 50% 0 0);
  transform: scaleX(1);
}
.information.company-mode .tabs::after { transform: scaleX(-1); }

.tab {
  position: relative;
  z-index: 4;
  min-width: 0;
  height: var(--tab-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(8px, 2vw, 28px) 8px;
  border: 0;
  color: #111;
  background: transparent;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  cursor: pointer;
}
.tab-label {
  display: block;
  white-space: nowrap;
}
.tab:first-child { text-indent: clamp(8px, 2vw, 28px); }
.tab:last-child { text-indent: clamp(-28px, -2vw, -8px); }
.tab[aria-selected="true"] {
  cursor: default;
}
.tab:focus-visible { outline: 3px solid var(--purple); outline-offset: -5px; }
.tab-panel[hidden], .tab-ending[hidden] { display: none; }
.tab-ending {
  position: relative;
  z-index: 0;
}

.site-orbit {
  position: absolute;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
  color: rgba(116, 215, 81, .62);
}

.site-orbit-left { width: 690px; height: 690px; top: 35px; left: -370px; }
.site-orbit-right { width: 825px; height: 825px; top: 440px; right: -370px; }

.site-orbit-track {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 8;
  vector-effect: non-scaling-stroke;
}

.site-orbit-marker {
  fill: var(--green);
  stroke: var(--green);
  stroke-width: .35;
  paint-order: stroke fill;
}

.information.company-mode .site-orbit {
  color: rgba(151, 144, 218, .66);
}

.information.company-mode .site-orbit-marker {
  fill: var(--purple);
  stroke: var(--purple);
}

.information-inner { width: min(1020px, calc(100% - 160px)); margin: auto; padding: 101px 0 116px; }

.content-block { position: relative; z-index: 1; padding: 0 80px; }
.content-block + .content-block { border-top: 1px solid #555; margin-top: 73px; padding-top: 45px; }
.content-block h2 {
  margin: 0 0 54px;
  font: 400 var(--font-size-medium)/1 "Abril Display", Georgia, "Times New Roman", serif;
  letter-spacing: 0px;
  line-height: 47px;
}
.community dl { margin: 0; }
.community dt {
  margin-top: 30px;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
  font-weight: 700;
}
.community dd {
  margin: 5px 0 0;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
  font-weight: 400;
  line-height: 1.35;
}

.process h2 { margin-bottom: 50px; }
.process ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.process li { margin-bottom: 28px; font-size: var(--font-size-small); line-height: 1.3; }
.process li::marker { font-weight: 700; }
.process li strong { font-size: inherit; font-weight: 700; }

.findings h2 { margin-bottom: 65px; text-align: left; }
.findings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.finding-card {
  min-height: 160px;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 40px;
  border-radius: 18px;
  background: #e1eadc;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
}
.finding-card-wide { grid-column: 1 / -1; }
.finding-card h3 { margin: 0 0 5px; font-size: var(--font-size-small); line-height: 1.15; }
.finding-card p { margin: 0; font-size: var(--font-size-small); line-height: 1.45; }
.finding-icon {
  width: 76px;
  height: 76px;
  display: block;
  object-fit: contain;
}

.testimonials h2 { margin-bottom: 48px; }
.testimonial-card {
  width: calc(100% + 160px);
  min-height: 260px;
  margin-left: -80px;
  display: grid;
  grid-template-columns:
    clamp(110px, 13.5vw, 200px)
    minmax(0, 1fr)
    clamp(110px, 13.5vw, 200px);
  align-items: center;
  padding: 35px 15px;
  background: #efefef;
  border-radius: 18px;
}

.testimonial-card button {
  width: 58px;
  height: 58px;
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform .2s ease;
}
.testimonial-card button:hover { transform: scale(1.08); }
.testimonial-card button:focus-visible { outline: 2px solid #005151; outline-offset: 4px; border-radius: 50%; }
.testimonial-card button img { display: block; width: 100%; height: 100%; }
.testimonial-card button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.testimonial-content {
  min-width: 0;
}
.testimonial-card blockquote { margin: 0; font-size: var(--font-size-small); line-height: 1.45; }
.testimonial-quote { margin: 0; font-family: "Filson Pro Book", Arial, Helvetica, sans-serif; font-weight: 400; }
.testimonial-emphasis { font-family: "Filson Pro", Arial, Helvetica, sans-serif; font-weight: 700; }
.testimonial-card cite { display: block; margin-top: 20px; font-style: normal; }
.testimonial-card cite strong {
  display: block;
  color: var(--green-dark);
  font-family: "Filson Pro Medium", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
  font-weight: 500;
}
.testimonial-card cite small {
  display: block;
  margin-top: 17px;
  font-family: "Filson Pro Book", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
  font-weight: 400;
}

.specialists h2 {
  margin-bottom: 54px;
  font-size: var(--font-size-medium);
  line-height: 1.12;
}
.specialists h3 {
  margin: 0 0 30px;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-medium);
  font-weight: 700;
}
.specialists ul {
  margin: 0;
  padding-left: 20px;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
  font-weight: 400;
  line-height: 1.45;
}
.specialists li strong { font-weight: 700; }

.company-panel { padding-bottom: 132px; font-family: "Filson Pro", Arial, Helvetica, sans-serif; }
.company-panel .content-block h2 { margin-bottom: 52px; }
.company-panel p,
.company-panel li,
.company-panel dd { font-size: var(--font-size-small); line-height: 1.42; }
.company-clients > p { max-width: 870px; margin: 0 0 32px; }
.company-clients ul { margin: 0; padding-left: 18px; font-weight: 700; }
.company-value > p { margin: 0 0 40px; }
.company-panel dl { margin: 0; }
.company-panel dt { margin-top: 31px; font-size: var(--font-size-small); font-weight: 700; }
.company-panel dd { margin: 3px 0 0; }
.company-differences h2 { margin-bottom: 48px; }
.company-featured {
  margin: 0 0 45px;
  padding: 27px 75px 30px;
  border: 2px solid #68995b;
  border-radius: 18px;
  background: #9ddd7f;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, .15);
}
.company-featured h3 { margin: 0 0 4px; font-size: var(--font-size-medium); }
.company-featured p { margin: 0; }

.company-impact-image {
  width: 100%;
  height: 330px;
  background: url("scr/imagens/bannerroxo/company-purple-final.webp") center / cover no-repeat;
  border-radius: 0 0 13px 13px;
  margin-top: 0;
}

.company-ending {
  position: relative;
  z-index: 1;
  margin-top: -40px;
}

.hubbers-ending {
  position: relative;
  z-index: 1;
  margin-top: -40px;
}

.company-cta { padding: 96px 0 105px; text-align: center; }
.company-cta h2 {
  margin: 0;
  color: #eee;
  font: italic var(--font-size-large)/.98 "Abril Display", Georgia, "Times New Roman", serif;
  letter-spacing: -2px;
}
.company-cta p {
  margin: 45px 0 34px;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
  line-height: 1.45;
}
.company-cta-button {
  width: 1026px;
  max-width: 100%;
  min-height: 90px;
  margin: auto;
  position: relative;
  justify-content: center;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.company-cta-button span { position: absolute; right: 46px; }

.company-faqs {
  padding-bottom: 113px;
}

.company-faqs .faq-list {
  margin-top: 0;
}

.impact-image {
  width: 100%;
  height: 310px;
  background: url("scr/imagens/002.webp") center / cover no-repeat;
  border-radius: 0 0 13px 13px;
}

.impact { padding: 79px 0 113px; text-align: center; }
.impact > h2 {
  margin: 0;
  color: #eee;
  font: italic var(--font-size-large)/.98 "Abril Display", Georgia, "Times New Roman", serif;
  letter-spacing: -3px;
}
.impact-title-mobile { display: none; }
.impact > p {
  margin: 29px 0 31px;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
  font-weight: 400;
  line-height: 1.35;
}
.impact-button {
  width: 1026px;
  max-width: 100%;
  min-height: 90px;
  margin: auto;
  justify-content: center;
  position: relative;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.impact-button span { position: absolute; right: 46px; }

.faq-list {
  width: 1186px;
  max-width: 100%;
  margin: 106px auto 0;
  text-align: left;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
}
.faq-list summary { list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-group { color: var(--green); }
.faq-group + .faq-group { margin-top: 82px; }
.faq-companies { color: var(--purple); }
.faq-group-title {
  position: relative;
  padding: 0 80px 17px;
  border-bottom: 3px solid currentColor;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-large);
  font-weight: 300;
  line-height: 1.05;
}
.faq-group-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(8px, 4vw, 48px);
  width: 28px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: transform .2s ease;
}
.faq-hubbers > .faq-group-title::after { background-image: url("scr/imagens/Seta 01.png"); }
.faq-companies > .faq-group-title::after { background-image: url("scr/imagens/Seta 02.png"); }
.faq-group[open] > .faq-group-title::after { transform: translateY(-50%) rotate(180deg); }
.faq-items { padding-inline: 80px 0; }
.faq-item { border-bottom: 1px solid #5d5d5d; color: inherit; }
.faq-item:last-child { border-bottom: 0; }
.faq-item > summary {
  position: relative;
  padding: 24px 58px 20px 4px;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
  font-weight: 700;
  line-height: 1.25;
}
.faq-item > summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 3px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: var(--font-size-small);
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}
.faq-item[open] > summary::after {
  content: "";
  width: 28px;
  height: 14px;
  border: 0;
  border-radius: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%) rotate(180deg);
}
.faq-hubbers .faq-item[open] > summary::after { background-image: url("scr/imagens/Seta 01.png"); }
.faq-companies .faq-item[open] > summary::after { background-image: url("scr/imagens/Seta 02.png"); }
.faq-item > p {
  margin: -4px 58px 0 29px;
  padding: 0 0 29px;
  color: #eee;
  font-family: "Filson Pro", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-small);
  font-weight: 400;
  line-height: 1.45;
}

.site-footer {
  min-height: 133px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(65px, calc((100% - 1210px) / 2));
  border-radius: 46px 46px 0 0;
  color: #777;
  background: white;
  font-size: var(--font-size-small);
}

.footer-social {
  display: flex;
  gap: 50px;
  font-family: "Filson Pro Book", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transition: color .2s ease, opacity .2s ease;
}
.footer-contact:hover { color: var(--green-dark); }
.footer-contact:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 5px; border-radius: 3px; }
.footer-contact.is-pending { opacity: .7; cursor: not-allowed; }
.footer-contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
  object-fit: contain;
}
.icon-linkedin,
.icon-whatsapp {
  filter: invert(83%) sepia(39%) saturate(691%) hue-rotate(48deg) brightness(94%) contrast(88%);
}
.powered {
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: "Filson Pro Book", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.powered img { display: block; width: 105px; height: auto; }
.powered-link {
  display: block;
  border-radius: 4px;
  transition: opacity .2s ease, transform .2s ease;
}
.powered-link:hover { opacity: .78; transform: translateY(-1px); }
.powered-link:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 5px; }

@media (max-width: 900px) {
  .member-login-bar {
    width: min(calc(100% - 40px), 700px);
    padding-right: 20px;
  }
  .member-login-label { width: clamp(210px, 44vw, 300px); }
  .shell { width: min(100% - 40px, 700px); }
  .site-header { height: 115px; padding-top: 30px; }
  .crumbs { flex-wrap: wrap; gap: 9px; margin-bottom: 70px; }
  .brand { margin-left: auto; }
  .brand img { width: 145px; }
  .hero h1 { margin: 35px 0 65px; font-size: var(--font-size-large); }
  .intro-card { grid-template-columns: 1fr; }
  .intro-image { min-height: 260px; border-right: 0; border-bottom: 1px solid #666; }
  .intro-copy { padding: 35px; }
  .intro-copy p { font-size: var(--font-size-small); }
  .hero-actions { grid-template-columns: 1fr; }
  .button { min-height: 68px; font-size: var(--font-size-medium); }
  .information-inner { width: calc(100% - 36px); padding-top: 75px; }
  .content-block { padding-inline: 10px; }
  .content-block h2 { font-size: var(--font-size-medium); }
  .findings-grid { grid-template-columns: 1fr; }
  .finding-card-wide { grid-column: auto; }
  .finding-card { padding: 26px 30px; }
  .testimonial-card { width: 100%; margin-left: 0; grid-template-columns: 55px 1fr 55px; }
  .testimonial-card button { width: 40px; height: 40px; }
  .company-featured { padding: 25px 30px; }
  .company-cta h2 { font-size: var(--font-size-large); }
  .company-cta p br { display: none; }
  .impact > h2 { font-size: var(--font-size-large); }
  .impact > p br { display: none; }
  .faq-group-title { padding-left: 20px; font-size: var(--font-size-large); }
  .faq-group-title::after { right: 20px; }
  .faq-items { padding-left: 20px; }
  .faq-item > summary { font-size: var(--font-size-small); }
  .faq-item > p { margin-left: 12px; }
  .site-footer { gap: 25px; padding: 30px; border-radius: 30px 30px 0 0; }
  .footer-social { flex-direction: column; gap: 10px; }
}

@media (max-width: 520px) {
  .carousel-strip { height: 222px; }
  .folder-set {
    gap: 8px;
    padding: 18px 8px 28px 0;
  }
  .folder-card { height: 174px; }

  .site-orbit {
    color: rgba(116, 215, 81, .46);
  }
  .site-orbit-left {
    width: 420px;
    height: 420px;
    top: 54px;
    left: -335px;
  }
  .site-orbit-right {
    width: 470px;
    height: 470px;
    top: 350px;
    right: -385px;
  }
  .information.company-mode .site-orbit {
    color: rgba(151, 144, 218, .5);
  }

  .member-login-bar {
    width: calc(100% - 24px);
    height: 34px;
    padding-right: 12px;
  }
  .member-login { gap: 6px; }
  .member-login-label { width: min(70vw, 245px); }
  .member-login-icon { width: 20px; }
  .site-header { height: 120px; }
  .header-shortcuts { flex-direction: column; gap: 6px; }
  .header-shortcut--hubbers,
  .header-shortcut--company {
    width: min(211px, 100%);
    height: auto;
  }
  .header-shortcut--hubbers { aspect-ratio: 209 / 29; }
  .header-shortcut--company { aspect-ratio: 211 / 29; }
  .shortcut-label {
    top: 20.69%;
    left: 8.14%;
    height: 58.62%;
  }
  .header-shortcut--company .shortcut-label { left: 12.8%; }
  .shortcut-arrow {
    top: 24.14%;
    right: 8.14%;
    width: 9.53%;
    height: 51.72%;
  }
  .brand img { width: 120px; }
  .hero h1 { font-size: var(--font-size-large); }
  .crumbs { margin-bottom: 60px; }
  .crumb-label { padding-inline: 12px; font-size: var(--font-size-small); }
  .crumb-dot { width: 5px; height: 5px; }
  .intro-copy { padding: 25px; }
  .button {
    min-height: 68px;
    padding-inline: 20px;
    font-size: clamp(20px, 5.6vw, 24px);
    line-height: 1.1;
  }
  .button span { width: 37px; height: 27px; flex-basis: 37px; }
  .tabs { --tab-height: 64px; }
  .tab {
    padding: 0 5px 7px;
    font-size: 13px;
    line-height: .95;
    text-indent: 0;
  }
  .tab-future .tab-label {
    max-width: 110px;
    white-space: normal;
    line-height: .95;
  }
  .tab:first-child,
  .tab:last-child { text-indent: 0; }
  .information-inner { width: calc(100% - 24px); }
  .content-block h2 { font-size: var(--font-size-medium); }
  .findings h2 { margin-bottom: 40px; }
  .finding-card { min-height: 0; grid-template-columns: 58px 1fr; gap: 16px; padding: 22px 18px; border-radius: 13px; }
  .finding-icon { width: 54px; height: 54px; }
  .finding-card h3,
  .finding-card p { font-size: var(--font-size-small); }
  .company-panel p,
  .company-panel li,
  .company-panel dd,
  .company-panel dt { font-size: var(--font-size-small); }
  .company-featured { padding: 22px; }
  .company-impact-image { height: 210px; }
  .company-ending,
  .hubbers-ending { margin-top: -24px; }
  .company-cta { padding-block: 70px; }
  .company-cta h2 { font-size: var(--font-size-large); letter-spacing: -1px; }
  .company-cta p { font-size: var(--font-size-small); }
  .testimonial-card { grid-template-columns: 34px 1fr 34px; gap: 4px; padding: 24px 8px; }
  .testimonial-card button { display: block; width: 30px; height: 30px; }
  .impact-image { height: 210px; }
  .impact > h2 {
    font-size: clamp(36px, 10.2vw, 40px);
    line-height: .98;
    letter-spacing: -1px;
  }
  .impact-title-desktop { display: none; }
  .impact-title-mobile { display: inline; }
  .impact > p { font-size: var(--font-size-small); }
  .impact-button {
    min-height: 68px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 10px;
    padding: 0 18px 0 24px;
    font-size: 22px;
    text-align: center;
  }
  .impact-button span {
    position: static;
    width: 32px;
    height: 24px;
    flex-basis: auto;
  }
  .faq-group + .faq-group { margin-top: 60px; }
  .faq-group-title {
    padding-right: 48px;
    padding-left: 8px;
    font-size: 34px;
    letter-spacing: -.5px;
    white-space: nowrap;
  }
  .faq-group-title::after { right: 8px; }
  .faq-items { padding-left: 8px; }
  .faq-item > summary { padding-right: 42px; font-size: var(--font-size-small); }
  .faq-item > summary::after { right: 0; }
  .faq-item > p { margin-right: 36px; margin-left: 4px; font-size: var(--font-size-small); }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    font-size: 15px;
    line-height: 1.25;
  }
  .footer-social { gap: 12px; }
  .footer-contact {
    gap: 8px;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button span { transition: none; }
}
