:root {
  color-scheme: light;
  --blue: #0167eb;
  --green: #1dac0a;
  --white: #ffffff;
  --ink: #222222;
  --muted: #848484;
  --panel: #eeeeee;
  --soft: #f8f6f4;
  --max-wide: 1538px;
  --max-content: 1288px;
  --shadow-soft: 0 26px 70px rgba(0, 0, 0, 0.14);
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./assets/fonts/poppins-latin-300.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/poppins-latin-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/poppins-latin-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/poppins-latin-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/poppins-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("./assets/fonts/poppins-latin-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
.page-shell {
  color-scheme: light;
  background: var(--white);
}

img,
svg {
  display: block;
}

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

button {
  border: 0;
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.hero {
  position: relative;
  height: clamp(720px, 58vw, 1002px);
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #050505;
}

.hero__bg,
.hero__bg-layer {
  position: absolute;
  inset: 0;
}

.hero__bg {
  z-index: 0;
  overflow: hidden;
}

.hero__bg-layer {
  opacity: 0;
  background-size: var(--hero-bg-size, cover);
  background-position: var(--hero-bg-position, center 42%);
  transform: scale(1.01);
  transition: opacity 760ms ease, transform 1200ms ease;
}

.hero__bg-layer.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.08) 64%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.hero-mobile-media,
.menu-toggle,
.mobile-menu,
.button__text--mobile,
.feature-dots,
.final-cta__icon {
  display: none;
}

.hero__nav {
  position: relative;
  z-index: 2;
  width: min(var(--max-content), calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(30px, 3.8vw, 66px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero__nav-main {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: currentColor;
}

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

.brand--academy {
  width: 221px;
  height: 84px;
}

.brand__mark {
  width: 72px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand__mark svg {
  width: 100%;
  height: 100%;
}

.brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0.92;
  letter-spacing: 0;
}

.brand__text strong {
  font-size: clamp(34px, 2.65vw, 48px);
  font-weight: 800;
}

.brand__text small {
  margin-top: 5px;
  font-size: clamp(16px, 1.25vw, 23px);
  font-weight: 300;
}

.brand--footer {
  width: 228.46px;
  height: 66px;
  margin: 0 auto;
  color: var(--white);
  justify-content: center;
}

.brand--footer .brand__mark {
  width: 66px;
  height: 52px;
}

.brand--footer .brand__text strong {
  font-size: 54px;
}

.button {
  min-height: 61px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 999px;
  padding: 0 48px;
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.button--small {
  min-width: 319px;
  font-size: 18px;
  gap: 18px;
}

.button--blue {
  background: var(--blue);
}

.button--green {
  min-width: 371px;
  background: var(--green);
}

.button--white {
  min-width: 374px;
  background: var(--white);
  color: var(--blue);
}

.button__icon,
.button__arrow {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.button__icon svg,
.button__arrow svg {
  width: 100%;
  height: 100%;
}

.hero__content {
  position: absolute;
  z-index: 2;
  top: clamp(188px, 15.9vw, 276px);
  left: max(24px, calc((100vw - var(--max-content)) / 2));
  width: min(440px, calc(100% - 48px));
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(48px, 3.48vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__content [data-hero-copy] {
  max-width: 389px;
  margin: 24px 0 38px;
  font-size: 19px;
  line-height: 1.2;
  text-wrap: pretty;
}

.hero__controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 89px;
  width: min(1132px, calc(100% - 56px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hero-tab {
  height: 61px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: background-color 220ms ease, transform 220ms ease;
}

.hero-tab:hover,
.hero-tab:focus-visible,
.hero-tab.is-active {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.hero__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 39px;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: rgba(217, 217, 217, 0.64);
  transition: width 220ms ease, background-color 220ms ease;
}

.hero-dot.is-active {
  width: 38px;
  background: #d9d9d9;
}

.academy {
  width: min(var(--max-wide), calc(100% - 192px));
  margin: 44px auto 0;
  padding: clamp(60px, 4.4vw, 80px) 48px clamp(80px, 5.9vw, 102px);
  border-radius: clamp(42px, 4.7vw, 82px);
  background: var(--panel);
  text-align: center;
}

.academy__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
}

.academy__icon svg {
  width: 42px;
  height: 42px;
}

.academy h2,
.academy h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(31px, 2.32vw, 40px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.academy h2 strong,
.academy h3 {
  font-weight: 700;
}

.academy h3 {
  margin-top: 74px;
}

.academy h3 span {
  font-weight: 400;
}

.academy__copy {
  width: min(849px, 100%);
  margin: 26px auto 0;
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  line-height: 1.23;
}

.copy-mobile {
  display: none;
}

.content-grid {
  width: min(754px, 100%);
  margin: 82px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 238px));
  justify-content: center;
  gap: 28px 20px;
}

.content-card {
  position: relative;
  min-height: 499px;
  overflow: hidden;
  border-radius: 20px;
  color: var(--white);
  background: #111111;
  text-align: left;
  isolation: isolate;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.content-card::before,
.content-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.content-card::before {
  display: none;
}

.content-card__picture,
.content-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.content-card__picture {
  z-index: -1;
}

.content-card__image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 520ms ease;
}

.content-card--sinistros .content-card__image {
  object-position: 70% 42%;
}

.content-card--financeira .content-card__image {
  object-position: 62% center;
}

.content-card--clube .content-card__image {
  object-position: 76% center;
}

.content-card::after {
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.38) 45%, rgba(0, 0, 0, 0.86) 100%);
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.content-card:hover::before {
  transform: none;
}

.content-card:hover .content-card__image {
  transform: scale(1.08);
}

.round-link {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  transition: transform 220ms ease, background-color 220ms ease;
}

.round-link svg {
  width: 19px;
  height: 19px;
}

.round-link:hover,
.round-link:focus-visible {
  transform: translateY(-2px) scale(1.04);
}

.round-link--white {
  background: var(--white);
  color: var(--blue);
}

.content-card__body {
  position: absolute;
  z-index: 2;
  left: 36px;
  right: 24px;
  bottom: 42px;
}

.content-card h4 {
  max-width: 165px;
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.content-card p {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.08;
}

.academy__button {
  margin-top: 106px;
}

.feature-grid {
  width: min(1225px, calc(100% - 96px));
  margin: 98px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 366px);
  justify-content: center;
  gap: 65px;
}

.feature-card {
  position: relative;
  min-height: 537px;
  overflow: hidden;
  border-radius: 14px;
}

.feature-card > .round-link {
  top: 12px;
  right: auto;
  left: 29px;
  width: 35px;
  height: 35px;
}

.feature-card > .round-link svg {
  width: 13px;
  height: 13px;
}

.feature-card--clube > .round-link {
  left: 22px;
}

.feature-card--light {
  padding: 76px 29px 0;
  background: var(--soft);
}

.feature-card--light h3 {
  margin: 0 0 30px;
  color: var(--blue);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: 0;
}

.feature-card--light p {
  max-width: 180px;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.1;
}

.feature-card--light img {
  position: absolute;
  left: 29px;
  right: 29px;
  bottom: 0;
  width: calc(100% - 58px);
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px 18px 0 0;
}

.feature-card--blue {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 40px 78px;
  background: var(--blue);
  color: var(--white);
}

.feature-card--blue > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.feature-card--blue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 103, 235, 0.08) 0%, rgba(1, 103, 235, 0.72) 63%, rgba(1, 103, 235, 0.98) 100%);
}

.feature-card--blue > div {
  position: relative;
  z-index: 2;
}

.feature-card--blue h3 {
  max-width: 280px;
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.02;
}

.feature-card--blue p {
  max-width: 220px;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.1;
}

.feature-card--blue .round-link {
  position: absolute;
  z-index: 3;
  top: auto;
  right: 29px;
  bottom: 12px;
  left: auto;
}

.mobility {
  position: relative;
  width: min(var(--max-wide), calc(100% - 192px));
  min-height: 892px;
  margin: 104px auto 0;
  overflow: hidden;
  border-radius: clamp(42px, 4.7vw, 82px);
  color: var(--white);
  background: var(--blue);
  isolation: isolate;
}

.mobility__bg,
.mobility__overlay {
  position: absolute;
  inset: 0;
}

.mobility__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.mobility__overlay {
  z-index: -2;
  background: rgba(1, 103, 235, 0.9);
}

.mobility__devices {
  position: absolute;
  left: -5px;
  bottom: -4px;
  width: min(1060px, 70%);
  height: 82%;
  z-index: 1;
}

.mobility__laptop {
  position: absolute;
  left: -20px;
  bottom: -30px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.32));
}

.mobility__phone {
  position: absolute;
  left: 0;
  bottom: 126px;
  width: 254px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.24));
}

.mobility__content {
  position: absolute;
  z-index: 2;
  top: 244px;
  right: min(132px, 8.6%);
  width: min(420px, 34%);
}

.mobility h2 {
  margin: 0 0 28px;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0;
}

.mobility p {
  margin: 0 0 48px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  line-height: 1.5;
}

.final-cta {
  width: min(560px, calc(100% - 48px));
  margin: 144px auto 142px;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.25;
}

.final-cta h2 strong {
  font-weight: 800;
}

.final-cta p {
  width: min(477px, 100%);
  margin: 0 auto 48px;
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  line-height: 1.23;
}

.footer {
  min-height: 394px;
  padding: 56px 24px 64px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.footer__social {
  --social-scale: 1;
  margin: 36px 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(14.545px * var(--social-scale));
}

.footer__social-link {
  width: calc(32px * var(--social-scale));
  height: calc(32px * var(--social-scale));
  display: block;
  overflow: hidden;
  border-radius: 999px;
}

.footer__social-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 5px;
}

.footer__social-icon {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("./assets/social-icons.svg");
  background-repeat: no-repeat;
  background-size: calc(171.64px * var(--social-scale)) calc(32px * var(--social-scale));
}

.footer__social-icon--instagram {
  background-position: 0 0;
}

.footer__social-icon--whatsapp {
  background-position: calc(-46.545px * var(--social-scale)) 0;
}

.footer__social-icon--linkedin {
  background-position: calc(-93.091px * var(--social-scale)) 0;
}

.footer__social-icon--youtube {
  background-position: calc(-139.636px * var(--social-scale)) 0;
}

.footer p {
  margin: 0 0 28px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
}

.footer small {
  display: block;
  max-width: 1040px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.56);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.35;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1440px) {
  .hero__content {
    top: 48%;
    transform: translateY(-50%);
  }
}

@media (max-width: 1180px) {
  .hero__nav {
    width: min(100% - 40px, 980px);
  }

  .hero__content {
    left: 40px;
  }

  .academy,
  .mobility {
    width: calc(100% - 64px);
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .mobility__devices {
    width: 66%;
  }

  .mobility__content {
    right: 56px;
    width: 36%;
  }
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 860px;
    background-position: 58% center;
  }

  .hero__nav {
    align-items: flex-start;
  }

  .brand__mark {
    width: 52px;
    height: 42px;
  }

  .brand__text strong {
    font-size: 31px;
  }

  .brand__text small {
    font-size: 14px;
  }

  .button--small {
    min-width: 0;
    padding: 0 22px;
    font-size: 14px;
  }

  .hero__content {
    top: 184px;
    left: 32px;
    right: 32px;
    width: auto;
  }

  .hero h1 {
    max-width: 390px;
  }

  .hero__controls {
    bottom: 86px;
    grid-template-columns: repeat(2, 1fr);
  }

  .academy {
    padding-inline: 28px;
  }

  .content-grid {
    width: min(520px, 100%);
    grid-template-columns: repeat(2, minmax(0, 238px));
  }

  .feature-grid {
    width: min(520px, calc(100% - 48px));
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 500px;
  }

  .mobility {
    min-height: 880px;
    padding: 64px 32px 0;
  }

  .mobility__content {
    position: relative;
    top: auto;
    right: auto;
    width: min(500px, 100%);
    margin: 0 auto;
    text-align: center;
  }

  .mobility__devices {
    left: 50%;
    bottom: 0;
    width: min(760px, 112%);
    height: 52%;
    transform: translateX(-50%);
  }

  .mobility__phone {
    width: 160px;
    bottom: 82px;
    left: 24px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .button,
  .button--green,
  .button--white {
    width: 100%;
    min-width: 0;
    padding: 0 24px;
    font-size: 17px;
  }

  .hero {
    order: 1;
    height: 955px;
    min-height: 955px;
    background-color: var(--blue);
  }

  .hero__shade {
    display: none;
  }

  .hero__bg {
    display: none;
  }

  .hero-mobile-media {
    position: absolute;
    inset: 0;
    display: block;
    pointer-events: none;
  }

  .hero-mobile-media__bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 944px;
    height: 547px;
    max-width: none;
    object-fit: cover;
    opacity: 0.16;
    transform: translateX(-50%);
  }

  .hero-mobile-media__laptop {
    position: absolute;
    top: 24px;
    left: calc(50% - 259px);
    width: 633px;
    max-width: none;
    height: auto;
  }

  .hero-mobile-media__phone {
    position: absolute;
    top: 303px;
    left: 0;
    width: 109px;
    max-width: none;
    height: auto;
  }

  .hero__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: calc(102px + env(safe-area-inset-top));
    margin: 0;
    padding: calc(22px + env(safe-area-inset-top)) 24px 22px 23px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 0 0 19px 19px;
    background: rgba(1, 103, 235, 0.26);
    backdrop-filter: blur(8px);
    transform: translateY(0);
    transition: transform 220ms ease, background-color 180ms ease, border-radius 180ms ease;
    z-index: 1000;
  }

  .hero__nav.is-hidden {
    transform: translateY(calc(-100% - 8px));
  }

  .hero__nav-main {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
  }

  .hero__nav.is-open {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .menu-toggle {
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
  }

  .menu-toggle:focus {
    outline: none;
  }

  .menu-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 5px;
  }

  .hero__nav .brand--academy {
    width: 153px;
    height: 58px;
    flex: 0 0 auto;
  }

  .hero__nav .brand__mark {
    width: 50px;
    height: 42px;
  }

  .hero__nav .brand__text strong {
    font-size: 30px;
  }

  .hero__nav .brand__text small {
    margin-top: 3px;
    font-size: 15px;
    line-height: 1;
  }

  .hero__nav .button--small {
    width: 108px;
    min-width: 108px;
    margin-left: auto;
    height: 48px;
    min-height: 48px;
    padding: 0 17px;
    gap: 9px;
    border-radius: 27px;
    background: #f6f6f6;
    color: var(--blue);
    font-size: 15px;
  }

  .hero__nav .button__icon {
    width: 18px;
    height: 18px;
  }

  .button__text--desktop {
    display: none;
  }

  .button__text--mobile {
    display: inline;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 124px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    border-bottom-right-radius: 19px;
    border-bottom-left-radius: 19px;
    background: rgba(1, 103, 235, 0.63);
    backdrop-filter: blur(8px);
    color: var(--white);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .hero__nav.is-open .mobile-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu a {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
  }

  .hero__content {
    top: 414px;
    left: 50%;
    right: auto;
    width: 305px;
    height: 452px;
    padding: 34px 28px;
    border-radius: 25px;
    background: var(--blue);
    box-shadow: 3px 4px 13.7px 3px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
  }

  .hero__content .button--green {
    position: absolute;
    top: 465px;
    left: 50%;
    width: 332px;
    min-width: 0;
    height: 55px;
    min-height: 55px;
    padding: 0 43px 0 26px;
    gap: 32px;
    border-radius: 45px;
    font-size: 20px;
    transform: translateX(-50%);
  }

  .hero__content .button--green:hover,
  .hero__content .button--green:focus-visible {
    transform: translateX(-50%) translateY(-2px);
  }

  .hero h1 {
    max-width: 255px;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.02;
  }

  .hero__content [data-hero-copy] {
    position: absolute;
    top: 154px;
    left: 28px;
    width: 214px;
    margin: 0;
    font-size: 13px;
    line-height: 1.44;
  }

  .hero__controls {
    top: 653px;
    bottom: auto;
    left: 50%;
    width: 255px;
    grid-template-columns: 1fr;
    gap: 11px;
    transform: translateX(-50%);
  }

  .hero-tab {
    height: 41px;
    border-radius: 11px;
    font-size: 15px;
    letter-spacing: 1.35px;
    transform: none;
  }

  .hero-tab:hover,
  .hero-tab:focus-visible,
  .hero-tab.is-active {
    transform: none;
  }

  .hero-tab[data-slide="sinistros"] {
    order: 1;
  }

  .hero-tab[data-slide="gestao"] {
    order: 2;
  }

  .hero-tab[data-slide="oficinas"] {
    order: 3;
  }

  .hero-tab[data-slide="aftermarket"] {
    order: 4;
  }

  .hero__dots {
    display: none;
  }

  .feature-grid {
    order: 2;
    --feature-rail-padding: max(20px, calc((100vw - 366px) / 2));
    width: 100%;
    margin: 48px 0 0;
    padding: 0 var(--feature-rail-padding) 4px;
    display: flex;
    grid-template-columns: none;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    scroll-padding-inline: var(--feature-rail-padding);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .feature-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    flex: 0 0 366px;
    min-height: 537px;
    scroll-snap-align: center;
  }

  .feature-dots {
    order: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 22px 0 47px;
  }

  .feature-dots button {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: transparent;
    cursor: pointer;
  }

  .feature-dots button::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d9d9d9;
  }

  .feature-dots button:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 0;
  }

  .feature-dots .is-active::before {
    width: 10px;
    height: 10px;
    background: var(--blue);
  }

  .academy {
    order: 4;
    width: 394px;
    max-width: calc(100% - 46px);
    min-height: 2557px;
    margin: 0 auto;
    padding: 37px 23px 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 53px;
  }

  .academy__icon {
    width: 59px;
    height: 59px;
    margin: 0 0 30px;
  }

  .academy__icon svg {
    width: 31px;
    height: 31px;
  }

  .academy h2 {
    width: 299px;
    font-size: 30px;
    line-height: 1.16;
  }

  .academy__copy {
    order: 3;
    width: 295px;
    margin: 24px auto 0;
    font-size: 16px;
    line-height: 1.23;
  }

  .copy-desktop {
    display: none;
  }

  .copy-mobile {
    display: inline;
  }

  .academy__button {
    order: 4;
    width: 332px;
    height: 55px;
    min-height: 55px;
    margin-top: 48px;
    padding: 0 24px;
    gap: 24px;
    font-size: 16px;
  }

  .academy h3 {
    order: 5;
    width: 293px;
    margin-top: 79px;
    font-size: 30px;
    line-height: 1.11;
  }

  .content-grid {
    order: 6;
    width: 295px;
    margin-top: 89px;
    grid-template-columns: 295px;
    gap: 15px;
  }

  .content-card {
    min-height: 244px;
    border-radius: 14px;
  }

  .content-card--sistema {
    order: 1;
  }

  .content-card--clube {
    order: 2;
  }

  .content-card--oficinas {
    order: 3;
  }

  .content-card--oficinas .content-card__image {
    object-position: center 36%;
  }

  .content-card--sinistros {
    order: 4;
  }

  .content-card--financeira {
    order: 5;
  }

  .content-card--aftermarket {
    order: 6;
  }

  .content-card:hover {
    transform: none;
    box-shadow: none;
  }

  .content-card:hover::before {
    transform: none;
  }

  .content-card:hover .content-card__image {
    transform: scale(1.02);
  }

  .content-card p {
    display: none;
  }

  .content-card__body {
    left: 20px;
    right: 72px;
    bottom: 23px;
  }

  .content-card h4 {
    max-width: 190px;
    margin: 0;
    font-size: 24px;
    line-height: 1;
  }

  .round-link {
    top: 8px;
    right: 8px;
    width: 54px;
    height: 54px;
  }

  .round-link svg {
    width: 20px;
    height: 20px;
  }

  .feature-card > .round-link {
    top: 12px;
    right: auto;
    left: 29px;
    width: 35px;
    height: 35px;
  }

  .feature-card > .round-link svg {
    width: 13px;
    height: 13px;
  }

  .feature-card--clube > .round-link {
    left: 22px;
  }

  .feature-card--blue .round-link {
    position: absolute;
    z-index: 3;
    top: auto;
    right: 29px;
    bottom: 12px;
    left: auto;
  }

  .mobility {
    display: none;
  }

  .final-cta {
    order: 5;
    width: 295px;
    margin: 82px auto 92px;
  }

  .final-cta__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 28px;
    display: grid;
    place-items: center;
    color: #575757;
  }

  .final-cta h2 {
    margin-bottom: 22px;
    font-size: 26px;
    line-height: 1.16;
  }

  .final-cta p {
    width: 260px;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.28;
  }

  .final-cta .button--green {
    width: 258px;
    height: 55px;
    min-height: 55px;
    padding: 0 24px;
    gap: 22px;
    font-size: 15px;
  }

  .footer {
    min-height: 513px;
    padding: 72px 39px 40px;
  }

  .brand--footer {
    width: 154px;
    height: 44.5px;
  }

  .footer__social {
    --social-scale: 1.375;
    margin: 42px 0 30px;
  }

  .footer p {
    margin-bottom: 42px;
    font-size: 16px;
    line-height: 20px;
  }

  .footer small {
    width: 362px;
    max-width: 100%;
    font-size: 15px;
    line-height: 18px;
  }
}

@media (max-width: 420px) {
  .hero__nav {
    padding-right: 18px;
    gap: 14px;
  }

  .hero__nav-main {
    gap: 12px;
  }

  .hero__content {
    width: min(305px, calc(100% - 34px));
  }

  .hero__content .button--green,
  .academy__button {
    width: min(332px, calc(100vw - 44px));
  }

  .academy {
    max-width: calc(100% - 28px);
  }

  .content-grid {
    width: min(295px, calc(100vw - 84px));
    grid-template-columns: 1fr;
  }

  .content-card {
    min-height: 244px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
