:root {
  --color-background: #fbf8f4;
  --color-text: #12416b;
  --color-accent-start: #660733;
  --color-accent-end: #cc0e65;
  --color-accent-hover-start: #57052b;
  --color-accent-hover-end: #b40c59;
  --color-highlight: #cc0e65;
  --color-frame: #e6b12c;
  --shadow-soft: 0 18px 40px rgba(18, 65, 107, 0.08);
  --radius-pill: 999px;
  --container-desktop: 1280px;
  --container-notebook: 1100px;
  --side-gutter-mobile: 4vw;
  --header-min-height: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-background);
  color: var(--color-text);
  font-family: "Montserrat", sans-serif;
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container-desktop));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  min-height: var(--header-min-height);
  padding: 10px 0;
  display: flex;
  align-items: center;
  background: var(--color-background);
  transition: background-color 180ms ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.hero-section {
  background: var(--color-background);
  display: flex;
  align-items: center;
  padding: 12px 0 56px;
  min-height: 600px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 638px) minmax(0, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 600px;
}

.hero-copy {
  display: grid;
  align-content: center;
  width: 100%;
}

.hero-title {
  margin: 0;
  font-family: "Gloock", serif;
  font-size: clamp(2.75rem, 2rem + 1.7vw, 3.75rem);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: 0;
  color: var(--color-text);
}

.hero-title span {
  color: var(--color-highlight);
}

.hero-text {
  width: 100%;
  margin: 52px 0 32px;
  font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.875rem);
  font-weight: 600;
  line-height: 1.23;
  letter-spacing: 0;
  color: var(--color-text);
}

.hero-cta {
  margin-top: 0;
  justify-self: start;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-frame {
  width: min(100%, clamp(260px, 38vw, 467px));
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.hero-frame img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.stats-section {
  min-height: 200px;
  display: flex;
  align-items: center;
  padding: 21px 0;
}

.stats-panel {
  min-height: 158px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(90deg, #01274a 0%, #12416b 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
}

.stat-item {
  min-height: 110px;
  padding: 8px 12px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.stat-item:not(:first-child) {
  border-left: 3px solid rgba(255, 255, 255, 0.98);
}

.stat-number {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(1.9rem, 1.55rem + 0.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.stat-text {
  margin: 0;
  width: 100%;
  max-width: 190px;
  color: #ffffff;
  font-size: clamp(0.84rem, 0.76rem + 0.22vw, 0.94rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: pretty;
  align-self: start;
}

.stat-item:nth-child(1) .stat-text {
  max-width: 190px;
}

.stat-item:nth-child(2) .stat-text {
  max-width: 194px;
}

.stat-item:nth-child(3) .stat-text {
  max-width: 132px;
}

.stat-item:nth-child(4) .stat-text {
  max-width: 164px;
}

.stat-item:nth-child(5) .stat-text {
  max-width: 190px;
}

.stat-text strong {
  font-weight: 800;
}

.about-section {
  padding: 88px 0 96px;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 5vw, 96px);
}

.about-visual {
  position: relative;
  width: min(100%, 520px);
  min-height: 520px;
  display: grid;
  place-items: center;
  --orbit-radius: 228px;
}

.about-photo-ring {
  width: min(100%, 420px);
  position: relative;
}

.about-photo-surface {
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.about-photo-surface img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.about-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 1;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle));
  transform-origin: center;
  animation: orbit-spin 60s linear infinite;
  animation-delay: var(--orbit-delay, 0s);
}

.about-tag {
  position: absolute;
  left: 50%;
  top: calc(var(--orbit-radius) * -1);
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #eb9900 0%, #ffb620 100%);
  color: #ffffff;
  font-size: clamp(1rem, 0.92rem + 0.24vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(235, 153, 0, 0.18);
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) * -1));
  transform-origin: center;
  animation: orbit-counter-spin 60s linear infinite;
  animation-delay: var(--orbit-delay, 0s);
}

.about-orbit-psychologist {
  --orbit-angle: -55deg;
  --orbit-delay: 0s;
}

.about-orbit-mentor {
  --orbit-angle: 25deg;
  --orbit-delay: 0s;
}

.about-orbit-manager {
  --orbit-angle: 125deg;
  --orbit-delay: 0s;
}

.about-orbit-writer {
  --orbit-angle: 225deg;
  --orbit-delay: 0s;
}

.about-copy {
  max-width: 706px;
  width: 100%;
}

.about-eyebrow {
  margin: 0 0 18px;
  color: #ef7a7c;
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-title {
  margin: 0;
  color: #12416b;
  font-family: "Gloock", serif;
  font-size: clamp(2.2rem, 1.7rem + 1.6vw, 3.125rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-title span {
  color: #cc0e65;
}

.about-text {
  margin: 32px 0 0;
  color: #12416b;
  font-size: clamp(1.125rem, 0.95rem + 0.7vw, 1.5625rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.about-text strong {
  font-weight: 700;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.about-button {
  min-height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.92rem + 0.28vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.about-button-primary {
  background: linear-gradient(90deg, var(--color-accent-start) 0%, var(--color-accent-end) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.about-button-primary:hover,
.about-button-primary:focus-visible {
  background: linear-gradient(90deg, var(--color-accent-hover-start) 0%, var(--color-accent-hover-end) 100%);
  transform: translateY(-1px);
}

.about-button-secondary {
  border: 1px solid #12416b;
  color: #12416b;
  background: transparent;
  font-size: clamp(1.125rem, 1rem + 0.55vw, 1.5625rem);
  font-weight: 600;
}

.about-button-secondary:hover,
.about-button-secondary:focus-visible {
  transform: translateY(-1px);
}

.services-section {
  padding: 92px 0 108px;
}

.services-eyebrow {
  margin: 0;
  color: #ef7a7c;
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

.services-title {
  margin: 10px 0 56px;
  color: #12416b;
  font-family: "Gloock", serif;
  font-size: clamp(2.2rem, 1.7rem + 1.6vw, 3.125rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.services-title span {
  color: #cc0e65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.service-card {
  min-height: 366px;
  padding: 24px 28px 22px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: -7px 12px 21.9px -3px rgba(0, 0, 0, 0.15);
  color: #12416b;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  justify-items: center;
  text-align: center;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #12416b;
  color: #ffffff;
  transition: background-color 220ms ease, color 220ms ease;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-glyph {
  width: 32px;
  height: 32px;
  display: block;
  background-color: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.service-icon-glyph-team {
  mask-image: url("../images/karinapessoasIcon.svg");
  -webkit-mask-image: url("../images/karinapessoasIcon.svg");
}

.service-icon-glyph-leadership {
  mask-image: url("../images/karinapessoas2Icon.svg");
  -webkit-mask-image: url("../images/karinapessoas2Icon.svg");
}

.service-icon-glyph-training {
  mask-image: url("../images/karinapessoas3Icon.svg");
  -webkit-mask-image: url("../images/karinapessoas3Icon.svg");
}

.service-icon-glyph-rhservice {
  mask-image: url("../images/karinamaosIcon.svg");
  -webkit-mask-image: url("../images/karinamaosIcon.svg");
}

.service-icon-glyph-processes {
  mask-image: url("../images/karinataskIcon.svg");
  -webkit-mask-image: url("../images/karinataskIcon.svg");
}

.service-icon-glyph-mentoring {
  mask-image: url("../images/karinapessoas4Icon.svg");
  -webkit-mask-image: url("../images/karinapessoas4Icon.svg");
}

.service-icon-glyph-clinical {
  mask-image: url("../images/karinachatIcon.svg");
  -webkit-mask-image: url("../images/karinachatIcon.svg");
}

.service-icon-glyph-talks {
  mask-image: url("../images/karinapessoas5Icon.svg");
  -webkit-mask-image: url("../images/karinapessoas5Icon.svg");
}

.service-card-title {
  margin: 0 0 12px;
  color: #cc0e65;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 1.08rem + 0.42vw, 1.5625rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.service-card-text {
  margin: 0;
  color: currentColor;
  font-size: clamp(0.9375rem, 0.9rem + 0.12vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.service-card-text strong {
  font-weight: 700;
}

.service-card-button {
  min-height: 36px;
  padding: 0 18px;
  margin-top: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--color-accent-start) 0%, var(--color-accent-end) 100%);
  color: #ffffff;
  font-size: clamp(1rem, 0.93rem + 0.22vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
  transition: transform 180ms ease;
}

@media (min-width: 1201px) {
  .service-card:hover,
  .service-card:focus-within {
    background: #12416b;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .service-card:hover .service-icon,
  .service-card:focus-within .service-icon {
    background: #ffffff;
    color: #12416b;
  }

  .service-card:hover .service-card-title,
  .service-card:focus-within .service-card-title {
    color: #ffffff;
  }

  .service-card:hover .service-card-button,
  .service-card:focus-within .service-card-button {
    transform: translateY(-1px);
  }
}

@keyframes orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle));
  }

  to {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) + 360deg));
  }
}

@keyframes orbit-counter-spin {
  from {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) * -1));
  }

  to {
    transform: translate(-50%, -50%) rotate(calc((var(--orbit-angle) + 360deg) * -1));
  }
}

.header-shell {
  min-height: var(--header-min-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: auto;
  max-width: 100%;
  height: 58px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nav-link,
.contact-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.95rem + 0.18vw, 1.1875rem);
  line-height: 1.2;
  letter-spacing: 0;
  transition: color 180ms ease, background-color 180ms ease, font-weight 180ms ease, transform 180ms ease;
}

.nav-link {
  color: var(--color-text);
  font-weight: 600;
  padding: 0 4px;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  font-weight: 700;
}

.contact-link {
  width: 150px;
  min-width: 150px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-accent-start) 0%, var(--color-accent-end) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1rem, 0.94rem + 0.23vw, 1.25rem);
  line-height: 1.2;
  box-shadow: var(--shadow-soft);
}

.contact-link:hover,
.contact-link:focus-visible {
  background: linear-gradient(90deg, var(--color-accent-hover-start) 0%, var(--color-accent-hover-end) 100%);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-accent-end);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-link:focus-visible,
.contact-link:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--color-accent-end);
  outline-offset: 3px;
}

@media (max-width: 1366px) {
  .container {
    width: min(calc(100% - 48px), var(--container-notebook));
  }
}

@media (max-width: 1200px) {
  .container {
    width: calc(100% - (var(--side-gutter-mobile) * 2));
  }

  .hero-section,
  .hero-shell {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 40px;
  }

  .hero-media {
    order: -1;
    width: 100%;
  }

  .hero-copy {
    width: 100%;
    justify-items: stretch;
    text-align: center;
  }

  .hero-frame {
    width: min(100%, clamp(240px, 52vw, 420px));
  }

  .hero-title,
  .hero-text {
    width: 100%;
  }

  .hero-text {
    margin: 36px 0 28px;
  }

  .header-shell {
    position: relative;
    gap: 20px;
  }

  .menu-toggle {
    display: inline-block;
    flex-shrink: 0;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(18, 65, 107, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .contact-link {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    min-height: 52px;
    padding: 0 16px;
  }

  .contact-link {
    justify-content: center;
    margin-top: 4px;
  }

  .hero-cta {
    justify-self: center;
    width: 150px;
    min-width: 150px;
    justify-content: center;
    margin-top: 0;
  }

  .stats-section {
    min-height: auto;
    padding: 28px 0;
  }

  .stats-panel {
    min-height: 158px;
    padding: 16px 18px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .stat-item {
    min-height: 110px;
    padding: 8px 12px;
    grid-template-rows: auto auto;
  }

  .stat-item:not(:first-child) {
    border-left: 3px solid rgba(255, 255, 255, 0.98);
    border-top: 0;
  }

  .stat-text,
  .stat-item:nth-child(1) .stat-text,
  .stat-item:nth-child(2) .stat-text,
  .stat-item:nth-child(3) .stat-text,
  .stat-item:nth-child(4) .stat-text,
  .stat-item:nth-child(5) .stat-text {
    width: 100%;
    max-width: 190px;
    font-size: clamp(0.84rem, 0.76rem + 0.22vw, 0.94rem);
    line-height: 1.04;
  }

  .stat-number {
    font-size: clamp(1.9rem, 1.55rem + 0.8vw, 2.25rem);
  }

  .about-section {
    padding: 72px 0 84px;
  }

  .about-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 44px;
  }

  .about-visual {
    order: -1;
    width: min(100%, 480px);
    min-height: 440px;
    --orbit-radius: 194px;
  }

  .about-photo-ring {
    width: min(100%, 360px);
  }

  .about-orbit,
  .about-tag {
    animation: none;
  }

  .about-copy {
    max-width: 100%;
    text-align: center;
  }

  .about-title {
    width: 100%;
  }

  .about-eyebrow {
    margin-bottom: 14px;
  }

  .about-actions {
    justify-content: center;
  }

  .services-section {
    padding: 76px 0 92px;
  }

  .services-title {
    margin-bottom: 44px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .service-card {
    min-height: auto;
    padding: 20px 22px 18px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }

  .service-icon-glyph {
    width: 32px;
    height: 32px;
  }

  .service-card-title {
    margin-bottom: 10px;
  }

  .service-card-text {
    line-height: 1.16;
  }

  .service-card-button {
    min-height: 34px;
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 8px 0;
  }

  .brand img {
    height: 50px;
  }

  .hero-shell {
    gap: 28px;
  }

  .hero-frame {
    width: min(100%, clamp(220px, 78vw, 340px));
  }

  .hero-title {
    font-size: clamp(2.25rem, 1.75rem + 2.2vw, 3rem);
  }

  .hero-text {
    margin: 28px 0 24px;
    font-size: clamp(1.125rem, 1rem + 0.7vw, 1.375rem);
  }

  .stats-panel {
    padding: 20px 0;
    grid-template-columns: 1fr;
  }

  .stat-item {
    min-height: auto;
    padding: 18px 24px;
    grid-template-rows: auto auto;
  }

  .stat-item:nth-child(2n),
  .stat-item:last-child {
    border-left: 0;
  }

  .stat-item:nth-child(n + 2) {
    border-top: 3px solid rgba(255, 255, 255, 0.95);
  }

  .stat-number {
    font-size: clamp(2rem, 1.7rem + 1.6vw, 2.5rem);
  }

  .stat-text {
    font-size: clamp(1rem, 0.95rem + 0.45vw, 1.25rem);
  }

  .stat-text,
  .stat-item:nth-child(1) .stat-text,
  .stat-item:nth-child(2) .stat-text,
  .stat-item:nth-child(3) .stat-text,
  .stat-item:nth-child(4) .stat-text,
  .stat-item:nth-child(5) .stat-text {
    width: 100%;
    max-width: none;
  }

  .about-section {
    padding: 56px 0 72px;
  }

  .about-shell {
    gap: 32px;
  }

  .about-visual {
    width: 100%;
    min-height: 320px;
    --orbit-radius: 150px;
  }

  .about-photo-ring {
    width: min(100%, 280px);
  }

  .about-tag {
    min-height: 38px;
    padding: 0 16px;
    font-size: clamp(0.9rem, 0.84rem + 0.35vw, 1rem);
  }

  .about-title br {
    display: none;
  }

  .about-text {
    margin-top: 24px;
  }

  .about-actions {
    gap: 12px;
    margin-top: 32px;
  }

  .about-button {
    width: 100%;
    padding: 0 24px;
  }

  .services-section {
    padding: 60px 0 76px;
  }

  .services-title {
    margin-bottom: 34px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    min-height: auto;
    padding: 22px 22px 20px;
  }

  .service-card-title {
    margin-bottom: 10px;
  }

.service-card-text {
    font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  }

}

.testimonials-section {
  padding: 92px 0 110px;
}

.testimonials-eyebrow {
  margin: 0;
  color: #ef7a7c;
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.testimonials-title {
  margin: 10px 0 54px;
  color: #12416b;
  font-family: "Gloock", serif;
  font-size: clamp(2.2rem, 1.7rem + 1.6vw, 3.125rem);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}

.testimonials-title span {
  color: #cc0e65;
}

.testimonials-carousel {
  position: relative;
}

.testimonials-arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.testimonials-arrow img {
  width: 32px;
  height: 32px;
  display: block;
}

.testimonials-arrow-left {
  left: -58px;
}

.testimonials-arrow-right {
  right: -58px;
}

.testimonials-viewport {
  overflow: hidden;
  padding-bottom: 28px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 320ms ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  padding: 24px 28px 26px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 21.9px -3px rgba(0, 0, 0, 0.12);
}

.testimonial-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #12416b;
}

.testimonial-name {
  margin: 0;
  color: #cc0e65;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.38vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
}

.testimonial-role {
  margin: 2px 0 0;
  color: #cc0e65;
  font-size: clamp(1rem, 0.94rem + 0.16vw, 1.125rem);
  font-weight: 500;
  line-height: 1.25;
}

.testimonial-text {
  margin: 0;
  color: #12416b;
  font-size: clamp(1rem, 0.94rem + 0.16vw, 1.125rem);
  font-weight: 500;
  line-height: 1.34;
}

@media (max-width: 1200px) {
  .testimonials-section {
    padding: 78px 0 92px;
  }

  .testimonials-title {
    margin-bottom: 42px;
  }

  .testimonials-carousel {
    padding: 0 44px;
  }

  .testimonials-arrow {
    width: 40px;
    height: 40px;
  }

  .testimonials-arrow-left {
    left: 0;
  }

  .testimonials-arrow-right {
    right: 0;
  }

  .testimonial-card {
    flex-basis: 100%;
    padding: 22px 22px 24px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 62px 0 76px;
  }

  .testimonials-title {
    margin-bottom: 34px;
  }

  .testimonials-title br {
    display: none;
  }

  .testimonials-carousel {
    padding: 0 40px;
  }

  .testimonials-arrow {
    width: 36px;
    height: 36px;
  }

  .testimonials-arrow img {
    width: 28px;
    height: 28px;
  }

  .testimonials-arrow-left {
    left: 0;
  }

  .testimonials-arrow-right {
    right: 0;
  }

  .testimonial-card {
    flex-basis: 100%;
    padding: 20px 20px 22px;
  }

  .testimonial-card-head {
    margin-bottom: 16px;
  }

  .testimonial-avatar {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-orbit {
    animation: none;
    transform: translate(-50%, -50%) rotate(var(--orbit-angle));
  }

  .about-tag {
    animation: none;
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) * -1));
  }
}

.materials-section {
  position: relative;
  padding: 112px 0 96px;
  background: #12416b;
  z-index: 0;
}

.materials-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -12%);
  z-index: 1;
}

.materials-divider img {
  display: block;
  width: 94px;
  height: 45px;
}

.materials-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: center;
  gap: clamp(40px, 5vw, 96px);
}

.materials-copy {
  max-width: 760px;
}

.materials-eyebrow {
  margin: 0 0 14px;
  color: #69ade9;
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
}

.materials-title {
  margin: 0;
  color: #ffffff;
  font-family: "Gloock", serif;
  font-size: clamp(2.2rem, 1.75rem + 1.6vw, 3.125rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.materials-list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.materials-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  font-size: clamp(1.125rem, 1rem + 0.8vw, 1.5625rem);
  font-weight: 600;
  line-height: 1.22;
}

.materials-item-icon {
  width: 47px;
  height: 47px;
  flex-shrink: 0;
}

.materials-button {
  min-height: 52px;
  width: fit-content;
  padding: 0 26px;
  margin-top: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #12416b 0%, #237fd1 100%);
  color: #ffffff;
  font-size: clamp(1.125rem, 1rem + 0.45vw, 1.375rem);
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 16px 36px rgba(18, 65, 107, 0.3);
}

.materials-visual {
  display: flex;
  justify-content: center;
}

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

@media (max-width: 1200px) {
  .materials-section {
    padding: 94px 0 84px;
  }

  .materials-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 42px;
  }

  .materials-copy {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .materials-title {
    width: 100%;
  }

  .materials-list {
    justify-items: center;
    width: min(100%, 720px);
    margin: 34px auto 0;
  }

  .materials-item {
    width: fit-content;
    text-align: center;
  }

  .materials-button {
    margin-top: 36px;
  }

  .materials-visual {
    order: -1;
  }

  .materials-visual img {
    width: min(100%, 340px);
  }
}

@media (max-width: 767px) {
  .materials-section {
    padding: 84px 0 72px;
  }

  .materials-divider img {
    width: 82px;
    height: auto;
  }

  .materials-shell {
    gap: 30px;
  }

  .materials-list {
    gap: 14px;
  }

  .materials-item {
    align-items: flex-start;
    gap: 14px;
    font-size: clamp(1rem, 0.96rem + 0.26vw, 1.125rem);
  }

  .materials-item-icon {
    width: 42px;
    height: 42px;
  }

  .materials-button {
    width: 100%;
    margin-top: 30px;
  }

  .materials-visual img {
    width: min(100%, 280px);
  }
}

.contact-section {
  position: relative;
  background: linear-gradient(180deg, #12416b 0 180px, #fbf8f4 180px 100%);
  padding: 0 0 96px;
  z-index: 1;
}

.contact-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 483px) minmax(0, 1fr);
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 21.9px -3px rgba(0, 0, 0, 0.12);
}

.contact-media {
  height: 100%;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-content {
  padding: 46px 40px 34px;
  height: auto;
  align-self: start;
}

.contact-title {
  width: 90%;
  margin: 0;
  color: #12416b;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 1.45rem + 1.15vw, 2.5rem);
  font-weight: 700;
  line-height: clamp(2.1rem, 1.6rem + 1.25vw, 2.6875rem);
  letter-spacing: 0;
}

.contact-text {
  width: 90%;
  margin: 20px 0 28px;
  color: #12416b;
  font-size: clamp(1rem, 0.82rem + 0.6vw, 1.5625rem);
  font-weight: 400;
  line-height: clamp(1.35rem, 1.08rem + 0.78vw, 1.875rem);
  letter-spacing: 0;
}

.contact-text strong {
  font-weight: 400;
}

.contact-form {
  width: 90%;
  display: grid;
  gap: 16px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-field {
  display: block;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #e7e4d6;
  color: #12416b;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.32vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
  padding: 0 24px;
}

.contact-field input {
  min-height: 58px;
}

.contact-field textarea {
  min-height: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 28px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #838181;
  opacity: 1;
}

.contact-submit {
  width: fit-content;
  min-width: 151px;
  min-height: 55px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent-start) 0%, var(--color-accent-end) 100%);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 0.88rem + 0.38vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.contact-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: linear-gradient(90deg, var(--color-accent-hover-start) 0%, var(--color-accent-hover-end) 100%);
}

.contact-feedback {
  min-height: 24px;
  margin: 0;
  color: #12416b;
  font-size: clamp(0.9375rem, 0.9rem + 0.14vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
}

.contact-feedback.is-success {
  color: #2e7d32;
}

.contact-feedback.is-error {
  color: #b3261e;
}

.contact-feedback.is-info {
  color: #12416b;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1200px) {
  .contact-section {
    background: linear-gradient(180deg, #12416b 0 150px, #fbf8f4 150px 100%);
    padding-bottom: 84px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-media {
    display: none;
  }

  .contact-content {
    padding: 34px 28px 30px;
    text-align: center;
    height: auto;
    display: grid;
    justify-items: center;
  }

  .contact-form {
    justify-items: center;
  }

  .contact-field {
    width: min(100%, 720px);
  }

  .contact-submit {
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .contact-section {
    background: linear-gradient(180deg, #12416b 0 110px, #fbf8f4 110px 100%);
    padding-bottom: 72px;
  }

  .contact-content {
    padding: 26px 20px 24px;
  }

  .contact-text {
    margin: 16px 0 22px;
  }

  .contact-field input {
    min-height: 54px;
  }

  .contact-field textarea {
    min-height: 100px;
  }

  .contact-submit {
    width: 100%;
  }
}

.about-page-hero {
  padding: 72px 0 96px;
  background: var(--color-background);
}

.about-page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 542px);
  align-items: center;
  gap: clamp(40px, 5vw, 96px);
}

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

.about-page-hero-title {
  margin: 0;
  color: #cc0e65;
  font-family: "Gloock", serif;
  font-size: clamp(2.75rem, 2.05rem + 1.8vw, 3.75rem);
  font-weight: 400;
  line-height: clamp(2.5rem, 2.08rem + 1.1vw, 3.3375rem);
  letter-spacing: 0;
}

.about-page-hero-subtitle {
  margin: 18px 0 0;
  color: #12416b;
  font-size: clamp(1.25rem, 1.02rem + 0.9vw, 1.875rem);
  font-weight: 700;
  line-height: clamp(1.5rem, 1.22rem + 1vw, 2.125rem);
  letter-spacing: 0;
}

.about-page-hero-text {
  margin: 34px 0 0;
  color: #12416b;
  font-size: clamp(1rem, 0.82rem + 0.6vw, 1.5625rem);
  font-weight: 500;
  line-height: clamp(1.35rem, 1.08rem + 0.78vw, 1.875rem);
  letter-spacing: 0;
  max-width: 30ch;
}

.about-page-hero-text strong {
  font-weight: 700;
}

.about-page-hero-media img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
}

.about-page-journey {
  padding: 20px 0 104px;
  background: var(--color-background);
}

.about-page-journey-title {
  margin: 0;
  color: #12416b;
  font-family: "Gloock", serif;
  font-size: clamp(2.2rem, 1.7rem + 1.6vw, 3.125rem);
  font-weight: 400;
  line-height: clamp(2.4rem, 1.95rem + 1.35vw, 3.375rem);
  letter-spacing: 0;
  text-align: center;
}

.about-page-journey-title span {
  color: #cc0e65;
}

.about-page-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.about-page-journey-card {
  padding: 18px 22px 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: -7px 12px 21.9px -3px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
}

.about-page-journey-card img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
}

.about-page-journey-text {
  margin: 18px 0 0;
  color: #12416b;
  font-size: clamp(1rem, 0.92rem + 0.38vw, 1.25rem);
  font-weight: 500;
  line-height: clamp(1.35rem, 1.18rem + 0.55vw, 1.625rem);
  letter-spacing: 0;
  text-align: center;
}

.about-page-journey-text strong {
  font-weight: 700;
}

.about-page-method {
  padding: 96px 0 112px;
  background: var(--color-background);
}

.about-page-method-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 522px);
  align-items: center;
  gap: clamp(40px, 5vw, 96px);
}

.about-page-method-copy {
  max-width: 720px;
}

.about-page-method-title {
  margin: 0;
  color: #12416b;
  font-family: "Gloock", serif;
  font-size: clamp(2.2rem, 1.75rem + 1.6vw, 3.125rem);
  font-weight: 400;
  line-height: clamp(2.4rem, 1.95rem + 1.35vw, 3.375rem);
  letter-spacing: 0;
}

.about-page-method-title span {
  color: #cc0e65;
}

.about-page-method-subtitle {
  margin: 24px 0 0;
  color: #12416b;
  font-size: clamp(1.25rem, 1.02rem + 0.9vw, 1.875rem);
  font-weight: 500;
  line-height: clamp(1.5rem, 1.24rem + 0.96vw, 2.125rem);
  letter-spacing: 0;
}

.about-page-method-subtitle strong {
  font-weight: 700;
}

.about-page-method-intro {
  margin: 44px 0 0;
  color: #12416b;
  font-size: clamp(1.125rem, 1rem + 0.55vw, 1.5625rem);
  font-weight: 600;
  line-height: 1.2;
}

.about-page-method-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  justify-items: start;
  --method-pill-width: min(100%, 460px);
}

.about-page-method-item {
  min-height: 52px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #eeede2;
  display: flex;
  align-items: center;
  gap: 16px;
  width: var(--method-pill-width);
  max-width: 100%;
  text-align: left;
}

.about-page-method-item img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.about-page-method-item span {
  color: #12416b;
  font-size: clamp(1rem, 0.92rem + 0.38vw, 1.25rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.about-page-method-media img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
}

.about-page-education {
  padding: 92px 0 80px;
  background: #12416b;
}

.about-page-education-title {
  margin: 0;
  color: #fefdf9;
  font-family: "Gloock", serif;
  font-size: clamp(2.2rem, 1.75rem + 1.6vw, 3.125rem);
  font-weight: 400;
  line-height: clamp(2.4rem, 1.95rem + 1.35vw, 3.375rem);
  letter-spacing: 0;
  text-align: center;
}

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

.about-page-education-card {
  min-height: 132px;
  padding: 20px 22px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  color: #ffffff;
}

.about-page-education-card.is-filled {
  background: #cc0e65;
}

.about-page-education-card.is-outlined {
  background: transparent;
  border: 1px solid #ffffff;
}

.about-page-education-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.about-page-education-glyph {
  width: 30px;
  height: 30px;
  display: block;
  background-color: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.about-page-education-glyph-student {
  mask-image: url("../images/estudante2Icon.svg");
  -webkit-mask-image: url("../images/estudante2Icon.svg");
}

.about-page-education-glyph-certificate {
  mask-image: url("../images/certificadoIcon.svg");
  -webkit-mask-image: url("../images/certificadoIcon.svg");
}

.about-page-education-glyph-trophy {
  mask-image: url("../images/trofeuIcon.svg");
  -webkit-mask-image: url("../images/trofeuIcon.svg");
}

.about-page-beyond-work {
  padding: 96px 0 108px;
  background: var(--color-background);
}

.about-page-beyond-work-shell {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(320px, 400px);
  align-items: start;
  gap: clamp(36px, 4.5vw, 72px);
  justify-content: space-between;
}

.about-page-beyond-work-copy {
  max-width: 560px;
}

.about-page-beyond-work-title {
  margin: 0;
  color: #12416b;
  font-family: "Gloock", serif;
  font-size: clamp(2.2rem, 1.75rem + 1.45vw, 3.125rem);
  font-weight: 400;
  line-height: clamp(2.35rem, 1.95rem + 1.15vw, 3.25rem);
  letter-spacing: 0;
}

.about-page-beyond-work-title span {
  color: #cc0e65;
}

.about-page-beyond-work-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
  margin-top: 30px;
  max-width: 620px;
}

.about-page-beyond-work-highlight img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.about-page-beyond-work-subtitle {
  margin: 0;
  color: #12416b;
  font-size: clamp(1.2rem, 1.02rem + 0.62vw, 1.875rem);
  font-weight: 600;
  line-height: 1.18;
}

.about-page-beyond-work-text {
  margin: 32px 0 0;
  color: #12416b;
  font-size: clamp(1rem, 0.92rem + 0.32vw, 1.25rem);
  font-weight: 500;
  line-height: 1.22;
  max-width: 470px;
}

.about-page-beyond-work-text strong {
  font-weight: 700;
}

.about-page-beyond-work-carousel {
  position: relative;
  width: min(100%, 400px);
}

.about-page-beyond-work-viewport {
  overflow: hidden;
}

.about-page-beyond-work-track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.about-page-beyond-work-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  overflow: hidden;
}

.about-page-beyond-work-slide img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.about-page-manifesto {
  padding: 92px 0 104px;
  background: #12416b;
}

.about-page-manifesto-shell {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.about-page-manifesto-icon {
  width: 74px;
  height: 74px;
}

.about-page-manifesto-title {
  margin: 26px 0 0;
  color: #ffffff;
  font-family: "Gloock", serif;
  font-size: clamp(2.2rem, 1.75rem + 1.6vw, 3.125rem);
  font-weight: 400;
  line-height: clamp(2.4rem, 1.95rem + 1.35vw, 3.375rem);
  letter-spacing: 0;
}

.about-page-manifesto-subtitle {
  margin: 24px 0 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 1.12rem + 0.7vw, 1.875rem);
  font-weight: 600;
  line-height: 1.2;
}

.about-page-manifesto-text {
  margin: 30px 0 0;
  color: #ffffff;
  font-size: clamp(1.125rem, 1rem + 0.45vw, 1.5625rem);
  font-weight: 600;
  line-height: 1.22;
  max-width: 760px;
}

.about-page-manifesto-button {
  margin-top: 46px;
}

.about-page-recognition {
  padding-top: 0;
}

.about-page-beyond-work-arrow-left {
  left: -58px;
}

.about-page-beyond-work-arrow-right {
  right: -58px;
}

.about-page-education-card-title {
  margin: 0;
  color: currentColor;
  font-size: clamp(1rem, 0.92rem + 0.44vw, 1.375rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-page-education-card-text {
  margin: 6px 0 0;
  color: currentColor;
  font-size: clamp(0.9rem, 0.86rem + 0.14vw, 1rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.about-page-education-copy:has(.about-page-education-card-text:empty) {
  align-self: center;
}

@media (max-width: 1200px) {
  .about-page-hero {
    padding: 60px 0 88px;
  }

  .about-page-hero-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 36px;
  }

  .about-page-hero-media {
    order: -1;
    width: min(100%, 720px);
  }

  .about-page-hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .about-page-hero-subtitle,
  .about-page-hero-text {
    max-width: 100%;
  }

  .about-page-journey {
    padding: 16px 0 92px;
  }

  .about-page-journey-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-page-journey-card {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .about-page-method {
    padding: 80px 0 96px;
  }

  .about-page-method-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 36px;
  }

  .about-page-method-media {
    order: -1;
    width: min(100%, 720px);
  }

  .about-page-method-copy {
    max-width: 100%;
    text-align: center;
  }

  .about-page-method-list {
    width: var(--method-pill-width);
    max-width: 100%;
    margin-inline: auto;
    justify-items: stretch;
  }

  .about-page-method-item {
    width: 100%;
    justify-content: flex-start;
  }

  .about-page-education {
    padding: 80px 0 68px;
  }

  .about-page-education-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .about-page-education-card {
    width: min(100%, 720px);
    margin: 0 auto;
    min-height: 0;
    align-items: center;
  }

  .about-page-beyond-work {
    padding: 80px 0 96px;
  }

  .about-page-beyond-work-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 40px;
  }

  .about-page-beyond-work-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .about-page-beyond-work-highlight {
    width: fit-content;
    max-width: min(100%, 720px);
    margin-inline: auto;
    gap: 20px;
    margin-top: 26px;
  }

  .about-page-beyond-work-subtitle {
    text-align: left;
  }

  .about-page-beyond-work-text {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .about-page-beyond-work-carousel {
    width: min(100%, 560px);
    padding: 0 44px;
  }

  .about-page-beyond-work-arrow-left {
    left: 0;
  }

  .about-page-beyond-work-arrow-right {
    right: 0;
  }

  .about-page-manifesto {
    padding: 80px 0 92px;
  }

  .about-page-manifesto-shell {
    max-width: 100%;
  }

  .about-page-manifesto-icon {
    width: 68px;
    height: 68px;
  }

  .about-page-manifesto-button {
    margin-top: 40px;
  }

  .about-page-recognition {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .about-page-hero {
    padding: 44px 0 72px;
  }

  .about-page-hero-shell {
    gap: 28px;
  }

  .about-page-hero-title {
    font-size: clamp(2.3rem, 1.9rem + 1.8vw, 3rem);
  }

  .about-page-hero-subtitle {
    margin-top: 14px;
  }

  .about-page-hero-text {
    margin-top: 26px;
    max-width: none;
  }

  .about-page-hero-media img {
    border-radius: 24px;
  }

  .about-page-journey {
    padding: 12px 0 80px;
  }

  .about-page-journey-grid {
    margin-top: 32px;
    gap: 20px;
  }

  .about-page-journey-card {
    padding: 16px 16px 20px;
  }

  .about-page-journey-card img {
    border-radius: 24px;
  }

  .about-page-journey-text {
    margin-top: 16px;
  }

  .about-page-method {
    padding: 64px 0 84px;
  }

  .about-page-method-shell {
    gap: 28px;
  }

  .about-page-method-subtitle {
    margin-top: 18px;
  }

  .about-page-method-intro {
    margin-top: 30px;
  }

  .about-page-method-list {
    margin-top: 22px;
    gap: 12px;
  }

  .about-page-method-item {
    min-height: 48px;
    padding: 10px 14px;
    gap: 10px;
  }

  .about-page-method-item img {
    width: 22px;
    height: 22px;
  }

  .about-page-method-item span {
    font-size: clamp(0.875rem, 0.84rem + 0.18vw, 0.95rem);
    line-height: 1.15;
  }

  .about-page-method-media img {
    border-radius: 24px;
  }

  .about-page-education {
    padding: 68px 0 56px;
  }

  .about-page-education-grid {
    margin-top: 28px;
    gap: 14px;
  }

  .about-page-education-card {
    min-height: 0;
    padding: 16px;
    gap: 12px;
  }

  .about-page-education-icon {
    width: 40px;
    height: 40px;
  }

  .about-page-education-glyph {
    width: 24px;
    height: 24px;
  }

  .about-page-education-card-title {
    font-size: clamp(0.95rem, 0.9rem + 0.28vw, 1.1rem);
  }

  .about-page-education-card-text {
    margin-top: 6px;
  }

  .about-page-beyond-work {
    padding: 64px 0 84px;
  }

  .about-page-beyond-work-shell {
    gap: 32px;
  }

  .about-page-beyond-work-highlight {
    gap: 20px;
    margin-top: 22px;
    width: fit-content;
    max-width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: center;
    margin-inline: auto;
  }

  .about-page-beyond-work-highlight img {
    width: 34px;
    height: 34px;
  }

  .about-page-beyond-work-subtitle {
    font-size: clamp(1.05rem, 0.98rem + 0.3vw, 1.2rem);
    line-height: 1.16;
    text-align: left;
  }

  .about-page-beyond-work-subtitle br {
    display: none;
  }

  .about-page-beyond-work-text {
    margin-top: 26px;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .about-page-beyond-work-carousel {
    width: min(100%, 360px);
    padding: 0 32px;
  }

  .about-page-beyond-work-arrow-left {
    left: 0;
  }

  .about-page-beyond-work-arrow-right {
    right: 0;
  }

  .about-page-manifesto {
    padding: 68px 0 80px;
  }

  .about-page-manifesto-icon {
    width: 60px;
    height: 60px;
  }

  .about-page-manifesto-title {
    margin-top: 24px;
  }

  .about-page-manifesto-subtitle {
    margin-top: 20px;
  }

  .about-page-manifesto-text {
    margin-top: 24px;
  }

  .about-page-manifesto-button {
    width: 100%;
    margin-top: 32px;
  }

  .about-page-recognition {
    padding-top: 0;
  }
}

.site-footer {
  color: #ffffff;
}

.site-footer-main {
  background: #12416b;
  padding: 52px 0 48px;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) minmax(180px, 1fr) minmax(160px, 0.8fr) minmax(220px, 1fr);
  gap: 48px;
  align-items: start;
}

.footer-brand-column {
  max-width: 470px;
}

.footer-brand {
  display: inline-block;
}

.footer-brand img {
  width: min(100%, 194px);
  height: auto;
}

.footer-description {
  margin: 24px 0 0;
  color: #ffffff;
  font-size: clamp(0.9375rem, 0.88rem + 0.3vw, 1.125rem);
  font-weight: 500;
  line-height: 1.35;
  max-width: 27ch;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link img,
.footer-contact-item img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-heading {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(1.0625rem, 1rem + 0.28vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.footer-links-list,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-list {
  display: grid;
  gap: 12px;
}

.footer-links-list a,
.footer-contact-item {
  color: #ffffff;
  font-size: clamp(0.9375rem, 0.9rem + 0.12vw, 1rem);
  font-weight: 400;
  line-height: 1.35;
}

.footer-contact-list {
  display: grid;
  gap: 14px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-item img {
  width: 23px;
  flex-shrink: 0;
}

.site-footer-bottom {
  background: #093459;
  padding: 18px 0;
}

.footer-bottom-text {
  margin: 0;
  color: #929292;
  text-align: center;
  font-size: clamp(0.9375rem, 0.88rem + 0.22vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .site-footer-main {
    padding: 44px 0 42px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand-column {
    max-width: 100%;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-description {
    max-width: 34ch;
    margin-inline: auto;
  }

  .footer-links-list,
  .footer-contact-list {
    justify-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .site-footer-main {
    padding: 36px 0 34px;
  }

  .footer-shell {
    gap: 28px;
  }

  .site-footer-bottom {
    padding: 16px 0;
  }
}
