:root {
  --blue: #007fe7;
  --blue-dark: #074b8c;
  --blue-text: #0c3c78;
  --orange: #f58a11;
  --yellow: #f4e95d;
  --green: #24ad4b;
  --white: #ffffff;
  --ink: #123c72;
  --muted: #66778e;
  --soft-blue: #f5faff;
  --line: #e5eef7;
  --shadow-soft: 0 16px 42px rgba(8, 71, 135, .08);
  --shadow-card: 0 12px 30px rgba(5, 62, 122, .07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "Open Sans", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.shell {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(0, 127, 231, .10);
  backdrop-filter: blur(12px);
}

.header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 90px;
  min-width: 90px;
}

.brand img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.nav--desktop {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav--desktop a {
  position: relative;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: #244c78;
}

.nav--desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  border-radius: 9px;
  transition: right .2s ease;
}

.nav--desktop a:hover::after {
  right: 0;
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 25px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.whatsapp:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 10px 24px rgba(36, 173, 75, .22);
}

.whatsapp--header {
  min-height: 45px;
  padding: 0 20px;
}

.wa-icon {
  width: 21px;
  height: 21px;
  object-fit: contain;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  margin-left: auto;
  padding: 8px 16px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-text);
  border-radius: 3px;
}

.mobile-menu {
  display: none;
}

/* HERO */
.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 38%, rgba(244, 233, 93, .20), transparent 16%),
    linear-gradient(180deg, #fff 0%, #fff 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 520px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 66px 28px 68px 0;
}

.micro {
  margin: 0 0 11px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--orange);
}

.hero h1 {
  font-family: "M PLUS Rounded 1c", "Arial Rounded MT Bold", system-ui, sans-serif;
  margin: 0;
  max-width: 490px;
  font-size: clamp(48px, 4vw, 66px);
  line-height: .99;
  letter-spacing: -.045em;
  font-weight: 800;
  color: #163f74;
}

.hero h1 span {
  display: block;
}

.hero__blue {
  color: var(--blue);
}

.hero__lead {
  max-width: 400px;
  margin: 24px 0 19px;
  color: #5c6f89;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
}

.signature-wrap {
  width: fit-content;
  position: relative;
  margin: 0 0 28px;
  transform: rotate(-1.3deg);
}

.signature {
  font-family: "M PLUS Rounded 1c", "Arial Rounded MT Bold", system-ui, sans-serif;
  margin: 0;
  position: relative;
  z-index: 2;
  color: var(--blue);
  font-size: 21px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.025em;
}

.signature::before {
  content: "";
  position: absolute;
  left: -5px;
  right: -8px;
  bottom: -4px;
  height: 9px;
  border-bottom: 3px solid var(--yellow);
  border-radius: 0 0 80% 45%;
  transform: skewX(-17deg) rotate(-1deg);
}

.signature::after {
  content: "";
  position: absolute;
  left: 3px;
  width: 64%;
  bottom: -9px;
  height: 4px;
  border-bottom: 2px solid var(--orange);
  border-radius: 60%;
  opacity: .78;
}

.whatsapp--hero {
  width: fit-content;
  min-height: 51px;
  padding: 0 23px;
  margin-bottom: 25px;
  font-size: 15px;
}

.google-proof {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.google-icon--small {
  width: 24px;
  height: 24px;
}

.google-proof__copy strong,
.google-proof__copy small {
  display: block;
}

.google-proof__copy strong {
  font-size: 14px;
  font-weight: 600;
  color: #183f75;
}

.google-proof__copy small {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* Hero recorte: o branco curvo faz parte da própria arte e é respeitado pelo enquadramento */
.hero__media {
  position: relative;
  min-height: 520px;
  margin-right: calc((100vw - min(1180px, calc(100vw - 44px))) / -2);
  overflow: visible;
}

.hero__photo-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
}

.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__media::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -1px;

  width: 260px;

  background: linear-gradient(90deg,
      #ffffff 0%,
      #ffffff 18%,
      rgba(255, 255, 255, .98) 32%,
      rgba(255, 255, 255, .88) 48%,
      rgba(255, 255, 255, .58) 67%,
      rgba(255, 255, 255, .22) 84%,
      rgba(255, 255, 255, 0) 100%);

  pointer-events: none;
}

.hero__accent {
  position: absolute;
  z-index: 4;
  left: 8%;
  bottom: 8px;
  width: 94%;
  height: 5px;
  border-radius: 100%;
  transform-origin: left;
  pointer-events: none;
}

.hero__accent--yellow {
  background: var(--yellow);
  transform: rotate(-4.2deg) translateY(-6px);
}

.hero__accent--orange {
  background: var(--orange);
  transform: rotate(-2.6deg);
}

/* TRUST */
.trust {
  padding: 50px 0 30px;
  background: linear-gradient(180deg, #f7fbff, #f4f9ff);
  border-top: 1px solid #edf5fc;
  border-bottom: 1px solid #edf5fc;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 28px;
  border-right: 1px solid #dfeaf5;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item h3 {
  margin: 15px 0 0;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 600;
  color: #173f74;
}

.icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.client-phrase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 24px;
}

.client-phrase span {
  width: 55px;
  height: 1px;
  background: var(--orange);
  opacity: .65;
}

.client-phrase p {
  margin: 0;
  color: #173f74;
  font-size: 18px;
  font-weight: 700;
}

/* HOW */
.how,
.reviews {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title p {
  margin: 0;
  color: var(--orange);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 600;
}

.section-title h2 {
  font-family: "M PLUS Rounded 1c", "Arial Rounded MT Bold", system-ui, sans-serif;
  margin: 7px 0 0;
  color: var(--blue);
  font-size: clamp(31px, 3.3vw, 43px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 800;
}

.steps {
  max-width: 930px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 62px 1fr 62px 1fr;
  align-items: center;
}

.step-card {
  position: relative;
  min-height: 210px;
  padding: 33px 24px 23px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.step-card__number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.step-card__icon {
  height: 59px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 40px;
  font-weight: 400;
}


.step-card h3 {
  margin: 2px 0 7px;
  color: #173f74;
  font-size: 16px;
  font-weight: 700;
}

.step-card p {
  max-width: 190px;
  margin: 0 auto;
  color: #687a92;
  font-size: 14px;
  line-height: 1.58;
  font-weight: 400;
}

.step-card__icon {
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.step-card__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.flow-arrow {
  position: relative;

  width: 62px;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;

  font-size: 0;
  transform: translateY(-8px);
}

.flow-arrow::before {
  content: "";

  width: 28px;
  height: 2px;

  background: var(--orange);
  border-radius: 2px;
}

.flow-arrow::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 8px;
  height: 8px;

  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);

  transform: translate(8px, -50%) rotate(45deg);
}

/* REVIEWS */
.reviews {
  background: #fbfdff;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 198px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: 0 10px 26px rgba(7, 65, 125, .05);
}

.review-card__top {
  display: grid;
  grid-template-columns: 42px 1fr 26px;
  align-items: center;
  gap: 11px;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #eaf5ff;
  font-size: 14px;
  font-weight: 800;
}

.review-card__top strong,
.review-card__top small {
  display: block;
}

.review-card__top strong {
  color: #173f74;
  font-size: 14px;
  font-weight: 700;
}

.review-card__top small {
  margin-top: 2px;
  color: #8a98aa;
  font-size: 11.5px;
  font-weight: 500;
}

.stars {
  margin: 13px 0 8px;
  color: var(--orange);
  letter-spacing: 1.6px;
  font-size: 16px;
}

.review-card p {
  margin: 0;
  color: #5f7189;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.reviews__action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.google-button {
  min-height: 44px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--blue);
  border-radius: 11px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 12.5px;
  font-weight: 700;
}

/* CTA */
.cta {
  padding: 0 0 40px;
  text-align: center;
}

.cta__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 64px;
  padding: 14px 30px;

  border-radius: 25px;

  background:
    radial-gradient(circle at 5% 50%, rgba(244, 233, 93, .18), transparent 18%),
    linear-gradient(112deg, #006fda, #007fe7);

  box-shadow: var(--shadow-soft);
}

.cta__box h2 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

/* FOOTER */
.footer {
  background: #0874d4;
  color: #fff;
  padding: 48px 0 18px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 160px 120px 200px 1fr;
  gap: 34px;
  align-items: start;
}

.footer__brand img {
  width: 100px;
  border-radius: 12px;
}

.footer__brand p {
  margin: 10px 0 0;
  font-size: 11.5px;
  font-weight: 400;
}

.footer h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 500;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer__col a,
.footer__instagram p,
.footer__instagram a {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, .94);
}

.footer__instagram {
  padding-left: 27px;
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.footer__instagram-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.footer__instagram-head h3 {
  margin-bottom: 2px;
}

.instagram-link {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 9px;
  white-space: nowrap;
  font-weight: 700;
}

.footer__instagram>p {
  max-width: 410px;
  margin: 10px 0 13px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  max-width: 350px;
}

.instagram-grid a {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__bottom {
  margin-top: 31px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: 12px;
  color: rgba(255, 255, 255, .86);
}

.footer__bottom div {
  display: flex;
  gap: 20px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 13px 30px rgba(36, 173, 75, .28);
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

/* RESPONSIVO */
@media (max-width: 970px) {

  .nav--desktop,
  .whatsapp--header {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.is-open {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 15px 22px 22px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu .whatsapp {
    width: fit-content;
    padding: 12px 17px;
  }

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

  .hero__copy {
    padding: 51px 0 37px;
  }

  .hero__media {
    min-height: 500px;
    margin-right: 0;
  }

  .hero__photo-frame {
    border-radius: 0;
  }

  .hero__media::before {
    display: none;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid #dfeaf5;
  }

  .steps {
    max-width: 500px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }

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

  .footer__instagram {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-left: 0;
    padding-top: 23px;
  }

  @media (max-width: 970px) {
    .flow-arrow {
      width: 100%;
      height: 25px;

      margin: 4px 0 16px;

      transform: rotate(90deg);
    }
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .header__inner {
    min-height: 72px;
  }

  .brand,
  .brand img {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }

  .hero__copy {
    padding-top: 37px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero__lead {
    margin-top: 19px;
    font-size: 15.5px;
  }

  .signature {
    font-size: 19px;
  }

  .hero__media {
    min-height: 380px;
  }

  .hero__photo-frame img {
    object-position: 50% 50%;
  }

  .trust {
    padding-top: 33px;
  }

  .trust-item {
    min-height: 141px;
    padding: 9px 10px;
  }

  .trust-item h3 {
    font-size: 13px;
  }

  .client-phrase {
    gap: 9px;
  }

  .client-phrase span {
    width: 24px;
  }

  .client-phrase p {
    font-size: 13.5px;
    text-align: center;
  }

  .how,
  .reviews {
    padding: 55px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .cta__box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 25px 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px 17px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__instagram-head {
    flex-direction: column;
  }

  .instagram-grid {
    max-width: none;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .footer__bottom div {
    flex-wrap: wrap;
  }

}


/* Tipografia UI: textos menores e navegação */
.nav--desktop a,
.mobile-menu,
.hero__lead,
.google-proof,
.trust-item h3,
.client-phrase p,
.section-title p,
.step-card h3,
.step-card p,
.review-card,
.google-button,
.footer,
.whatsapp {
  font-family: "Open Sans", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}


.instagram-followers {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
}

/* PRÊMIO AZUL TURQUESA */
.award {
  padding: 72px 0;
  background: #ffffff;
}

.award__grid {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 65px;
}

.award__content {
  max-width: 470px;
}

.award__eyebrow {
  display: block;
  margin-bottom: 12px;
  font-family:
    "Open Sans",
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  color: #f58a11;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.award__content h2 {
  margin: 0 0 22px;
  font-family:
    "M PLUS Rounded 1c",
    system-ui,
    sans-serif;
  color: #17487e;
  font-size: 39px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.035em;
}

.award__content h2 span {
  display: block;
  color: #007fe7;
}

.award__content p {
  margin: 0 0 17px;
  font-family:
    "Open Sans",
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  color: #66778e;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.award__highlight {
  color: #17487e !important;
  font-weight: 600 !important;

  padding-left: 17px;
  border-left: 3px solid #f4e95d;
}

/* CARROSSEL */
.award {
  padding: 70px 0;
  background: #fcfcfa;
  border-top: 1px solid #e5ebf1;
  border-bottom: 1px solid #e5ebf1;
}

.award-carousel {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.award-carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(7, 64, 124, .10);
}

.award-carousel__track {
  display: flex;
  transition:
    transform .55s cubic-bezier(.22, .61, .36, 1);
}

.award-carousel__slide {
  min-width: 100%;
  aspect-ratio: 1 / 1;
  background: #f3f7fa;
}

.award-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* SETAS */
.award-carousel__arrow {
  position: absolute;
  top: calc(50% - 12px);
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #dce8f3;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(7, 64, 124, .08);
  transition:
    transform .18s ease,
    border-color .18s ease;
}

.award-carousel__arrow:hover {
  border-color: #007fe7;
  transform: translateY(-50%) scale(1.05);
}

.award-carousel__arrow--prev {
  left: -50px;
}

.award-carousel__arrow--next {
  right: -50px;
}

.award-carousel__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #007fe7;
  border-right: 2px solid #007fe7;
  transform-origin: center;
}

.award-carousel__arrow--prev {
  left: -50px;
}

.award-carousel__arrow--prev::before {
  transform:
    translate(-35%, -50%) rotate(-135deg);
}

.award-carousel__arrow--next {
  right: -50px;
}

.award-carousel__arrow--next::before {
  transform:
    translate(-65%, -50%) rotate(45deg);
}

/* INDICADORES */
.award-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 17px;
}

.award-carousel__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cbd9e8;
  cursor: pointer;
  transition:
    width .25s ease,
    background .25s ease,
    border-radius .25s ease;
}

.award-carousel__dot.is-active {
  width: 23px;
  border-radius: 10px;
  background: #007fe7;
}

@media (max-width: 850px) {

  .award {
    padding: 55px 0;
  }

  .award__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .award__content {
    max-width: 620px;
  }

  .award__content h2 {
    font-size: 32px;
  }

}

@media (max-width: 620px) {
  .award-carousel {
    max-width: calc(100% - 56px);
  }

  .award-carousel__arrow {
    z-index: 5;
  }

  .award-carousel__arrow--prev {
    left: -26px;
  }

  .award-carousel__arrow--next {
    right: -26px;
  }
}

@media (max-width: 970px) {
  .hero__media {
    width: 100vw;
    max-width: none;
    min-height: 0;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    aspect-ratio: 16 / 9;
  }

  .hero__photo-frame {
    width: 100%;
  }

  .hero__photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__media::before {
    display: block;

    top: 0;
    left: 0;
    right: 0;
    bottom: auto;

    width: 100%;
    height: 75px;

    background: linear-gradient(180deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.72) 28%,
        rgba(255, 255, 255, 0.28) 62%,
        rgba(255, 255, 255, 0) 100%);

    pointer-events: none;
  }
}

@media (max-width: 620px) {
  .hero__media {
    aspect-ratio: 16 / 10;
  }

  .hero__media::before {
    height: 60px;
  }
}

.brand-logo--mobile {
  display: none;
}

@media (max-width: 970px) {
  .brand-logo--desktop {
    display: none;
  }

  .brand-logo--mobile {
    display: block;
  }

  .header {
    background: var(--blue);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .menu-toggle span {
    background: #ffffff;
  }

  .mobile-menu.is-open {
    background: #ffffff;
  }

  .mobile-menu>a {
    color: var(--blue-text);
  }
}

@media (max-width: 620px) {

  .brand,
  .brand-logo--mobile {
    width: 88px;
    height: 88px;
    min-width: 88px;
  }

  .brand-logo--mobile {
    object-fit: contain;
  }

  .header__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
  }

  .brand {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand-logo--mobile {
    width: 82px;
    height: 82px;
    object-fit: contain;
  }
}