@charset "iso-8859-1";
@font-face {
  font-family: "RG Standard";
  src:
    url("./assets/fonts/RGStandard-Regular.woff2") format("woff2"),
    url("./assets/fonts/RGStandard-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RG Standard";
  src:
    url("./assets/fonts/RGStandard-Medium.woff2") format("woff2"),
    url("./assets/fonts/RGStandard-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RG Standard";
  src:
    url("./assets/fonts/RGStandard-Bold.woff2") format("woff2"),
    url("./assets/fonts/RGStandard-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Antique Olive Std";
  src: url("./assets/fonts/Antique-Olive-Std-Nord_3868.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Antique Olive Std";
  src: url("./assets/fonts/Antique-Olive-Std-Roman_3869.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #FF0062;
  --hero-blue: #2A0BBF;
  --blue: #2A0BBF;
  --orange: #FF3918;
  --pink: #FF0062;
  --lilac: #AE81FF;
  --sky: #00AAFF;
  --ink: #ffffff;
  --lime: #BEFF00;
  --cream: #fff8df;
  --muted: rgba(255, 255, 255, 0.76);
  --stroke: rgba(255, 255, 255, 0.78);
  --ticker-height: 42px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ticker-height) + 14px);
}

body {
  margin: 0;
  background: var(--page-bg, var(--bg));
  color: #fff;
  font-family: "RG Standard", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  transition: background-color 260ms ease;
}

button,
a {
  font: inherit;
}

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

.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;
}

[data-parallax] {
  --parallax-y: 0px;
  will-change: transform;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(190, 255, 0, 0.12), rgba(190, 255, 0, 0) 32%),
    #2A0BBF;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 420ms ease,
    visibility 0s linear 420ms;
}

.page-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.page-loader-inner {
  width: min(66vw, 240px);
  display: grid;
  justify-items: center;
  gap: 22px;
}

.page-loader-inner img {
  width: min(54vw, 190px);
}

.page-loader-inner span {
  position: relative;
  width: 120px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.page-loader-inner span::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 48%;
  border-radius: inherit;
  background: var(--lime);
  animation: page-loader-bar 1s ease-in-out infinite;
}

.scroll-reveal {
  --reveal-y: 18px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y, 0px)), 0);
  transition:
    opacity 560ms ease,
    transform 720ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal[data-reveal-kind="decorative"] {
  --reveal-y: 10px;
  transition-duration: 680ms;
}

.scroll-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

@keyframes page-loader-bar {
  0% {
    transform: translateX(-110%);
  }

  55% {
    transform: translateX(70%);
  }

  100% {
    transform: translateX(230%);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero::before {
    transform: scale(1);
    animation: none;
  }

  .hero-vestibular,
  .hero-slogan,
  .hero-slogan-desktop,
  .cta-wrap,
  .scroll-cue {
    opacity: 1;
    transform: translate3d(var(--hero-reveal-x, 0), 0, 0) scale(1);
    animation: none;
    transition: none;
  }

  .top-marquee-track {
    animation: none;
  }
}

.hero,
.courses {
  padding: 18px 32px;
  background: var(--bg);
  transition: background-color 260ms ease;
}

.hero {
  min-height: 100svh;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.52) 100%),
    url("./assets/foto-hero02.jpg") center top / cover no-repeat,
    var(--hero-blue);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: inherit;
  transform: scale(1.1);
  transform-origin: center center;
  will-change: transform;
}

body.is-hero-ready .hero::before {
  animation: hero-background-settle 1160ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.topbar {
  position: relative;
  z-index: 100;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-marquee {
  position: absolute;
  top: env(safe-area-inset-top, 0px);
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--ticker-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fff;
  color: #2A0BBF;
  font-family: "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-marquee-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: top-marquee-scroll 24s linear infinite;
}

.top-marquee-group {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  white-space: nowrap;
}

.top-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.top-marquee span::before {
  content: "\25C7";
  color: var(--lime);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.menu-control {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + var(--ticker-height) + 12px);
  right: 10px;
  z-index: 120;
  width: 120px;
  min-height: 60px;
  display: grid;
  grid-template-columns: 56px 56px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  isolation: isolate;
  box-shadow: 0 8px 20px rgba(9, 7, 19, 0.1);
  transition:
    left 260ms ease,
    right 260ms ease,
    width 260ms ease,
    border-radius 220ms ease,
    box-shadow 220ms ease;
}

body.is-past-ticker .menu-control {
  top: calc(env(safe-area-inset-top, 0px) + 12px);
}

.site-search {
  min-width: 0;
  display: flex;
  align-items: center;
}

.site-search-toggle,
.menu-button {
  width: 56px;
  height: 60px;
  border: 0;
  display: grid;
  place-content: center;
  background: transparent;
  cursor: pointer;
}

.site-search-toggle img {
  width: 22px;
  max-width: none;
}

.site-search-input {
  width: 0;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #090713;
  font-family: "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  outline: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    width 240ms ease,
    opacity 180ms ease;
}

.site-search-input::-webkit-search-decoration,
.site-search-input::-webkit-search-cancel-button {
  display: none;
}

.menu-button {
  position: relative;
  z-index: 2;
  gap: 5px;
  transition:
    width 220ms ease,
    height 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.menu-button span {
  width: 24px;
  height: 2px;
  display: block;
  background: #2A0BBF;
  border-radius: 99px;
  transition:
    width 220ms ease,
    height 220ms ease,
    transform 220ms ease,
    background-color 220ms ease;
}

.menu-close-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 28px;
  max-width: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.78);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.menu-button[aria-expanded="true"] {
  width: 48px;
  height: 48px;
  gap: 0;
  border-radius: 50%;
  background: #eee8ff;
  box-shadow: none;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-close-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(0.72);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-control {
  z-index: 120;
  width: 48px;
  min-height: 48px;
  grid-template-columns: 48px;
  border-radius: 50%;
  background: #eee8ff;
  box-shadow: none;
}

body.menu-open .site-search {
  display: none;
}

body.menu-open .fixed-actions {
  opacity: 0;
  pointer-events: none;
}

body.search-open .fixed-actions {
  opacity: 0;
  pointer-events: none;
}

.menu-control.is-search-open {
  left: 30px;
  right: 30px;
  width: auto;
  grid-template-columns: 1fr 56px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(9, 7, 19, 0.1);
}

.menu-control.is-search-open .site-search-input {
  width: 100%;
  opacity: 1;
  pointer-events: auto;
}

.site-search-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: -1;
  padding: 30px 48px 34px;
  border-radius: 30px;
  background: #f8f8f8;
  color: #2A0BBF;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 240ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.menu-control.is-search-open .site-search-panel.has-results {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-search-results {
  display: grid;
  gap: 26px;
}

.site-search-result {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2A0BBF;
  text-align: left;
  cursor: pointer;
}

.site-search-result span {
  display: block;
  margin-bottom: 6px;
  color: #AE81FF;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.site-search-result strong {
  display: block;
  font-family: "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  color: #2A0BBF;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 240ms ease,
    visibility 240ms ease,
    transform 300ms cubic-bezier(0.2, 0.9, 0.2, 1);
  overscroll-behavior: contain;
}

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

.site-menu-inner {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(env(safe-area-inset-top, 0px) + 144px) 38px 132px 70px;
}

.site-menu-lines {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 126px);
  right: -78px;
  width: 224px;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.site-menu-links {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 42px;
}

.site-menu-links a {
  color: #2A0BBF;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-actions {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  row-gap: 26px;
  place-items: center;
  transform: translateY(-14px);
}

.hero-vestibular,
.hero-slogan,
.hero-slogan-desktop,
.cta-wrap,
.scroll-cue {
  --hero-reveal-x: 0px;
  --hero-reveal-y: 18px;
  --hero-reveal-scale: 0.96;
  opacity: 0;
  transform: translate3d(var(--hero-reveal-x), var(--hero-reveal-y), 0) scale(var(--hero-reveal-scale));
  animation: none;
  will-change: opacity, transform;
}

.hero-vestibular {
  width: min(52vw, 160px);
}

.hero-slogan {
  width: min(92.3vw, 312px);
  margin-bottom: 0;
}

.hero-slogan-desktop {
  display: none;
}

.cta-wrap {
  position: relative;
  margin-top: 32px;
}

.cta-seal {
  position: absolute;
  top: -17px;
  right: -26px;
  width: 52px;
  z-index: 2;
  transform: rotate(8deg);
}

.outline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 50px;
  padding: 0 22px;
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
  transform: rotate(-2deg);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2em;
  box-sizing: border-box;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.outline-cta:hover,
.outline-cta:focus,
.outline-cta:focus-visible,
.outline-cta:visited {
  text-decoration: none;
}

.cta-wrap:hover .outline-cta,
.outline-cta:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #2A0BBF;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transform: rotate(-2deg) translateY(-2px);
}

.scroll-cue {
  margin-top: -16px;
  width: auto;
  height: 42px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: color 220ms ease;
}

body.is-hero-ready .hero-vestibular {
  animation: hero-reveal 620ms cubic-bezier(0.2, 0.9, 0.2, 1) 1160ms both;
}

body.is-hero-ready .hero-slogan,
body.is-hero-ready .hero-slogan-desktop {
  animation: hero-reveal 620ms cubic-bezier(0.2, 0.9, 0.2, 1) 1400ms both;
}

body.is-hero-ready .cta-wrap {
  animation: hero-reveal 560ms cubic-bezier(0.2, 0.9, 0.2, 1) 1640ms both;
}

body.is-hero-ready .scroll-cue {
  animation: hero-reveal 520ms cubic-bezier(0.2, 0.9, 0.2, 1) 1820ms both;
}

.scroll-cue::before {
  content: "VEJA OS CURSOS";
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: var(--lime);
}

.scroll-cue img {
  width: 32px;
  max-width: none;
  animation: scroll-cue-bounce 1.4s ease-in-out 1.56s infinite;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translate3d(var(--hero-reveal-x, 0), var(--hero-reveal-y, 18px), 0) scale(var(--hero-reveal-scale, 0.96));
  }

  to {
    opacity: 1;
    transform: translate3d(var(--hero-reveal-x, 0), 0, 0) scale(1);
  }
}

@keyframes hero-background-settle {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

@keyframes scroll-cue-bounce {
  0%,
  100% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    transform: scale(1);
    animation: none;
  }

  .hero-vestibular,
  .hero-slogan,
  .hero-slogan-desktop,
  .cta-wrap,
  .scroll-cue {
    opacity: 1;
    transform: translate3d(var(--hero-reveal-x, 0), 0, 0) scale(1);
    animation: none;
    transition: none;
  }

  .scroll-cue img {
    animation: none;
  }
}

h1,
h2,
p {
  margin-top: 0;
}

.tape {
  position: absolute;
  display: block;
  width: 48px;
  height: 24px;
  background: #FF3918;
  transform: rotate(-7deg);
  z-index: 7;
}

.tape-one {
  top: 4svh;
  left: 18vw;
}

.tape-two {
  right: 20vw;
  bottom: 11svh;
}

.tape-three {
  right: 12px;
  top: 8px;
}

.modalities {
  position: relative;
  height: 300svh;
  background: var(--page-bg, #2A0BBF);
  color: #fff;
}

.modalities-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 100svh;
  height: 100dvh;
  min-height: 100dvh;
  --section-title-top: 72px;
  --section-lines-top: calc(var(--section-title-top) - 23px);
  --dots-top: calc(var(--section-title-top) + 10px);
  --copy-top: 176px;
  --collage-top: 318px;
  --cta-bottom: 84px;
  padding: 0;
  overflow: hidden;
  background-color: #2A0BBF;
  background-image: url("./assets/bg-presencial-blue.png");
  background-position: center;
  background-size: cover;
  transition:
    background-color 420ms ease,
    background-image 420ms ease;
}

.modalities[data-active="semipresencial"] .modalities-stage {
  background-color: #FF0062;
  background-image: url("./assets/bg-semipresencial-pink.png");
}

.modalities[data-active="ead"] .modalities-stage {
  background-color: #AE81FF;
  background-image: url("./assets/bg-ead-lilas.png");
}

.modalities-lines {
  position: absolute;
  top: var(--section-lines-top);
  left: 0;
  width: 102px;
  opacity: 0.48;
}

.modalities-heading {
  position: absolute;
  top: var(--section-title-top);
  left: 44px;
  z-index: 10;
  width: 240px;
  color: #fff;
  text-transform: uppercase;
}

.modalities-heading p {
  margin: 0;
  color: #fff;
  font-family: "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.modalities-heading strong {
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.modalities-heading-line {
  display: block;
}

.modalities-dots {
  position: absolute;
  top: var(--section-title-top);
  right: 27px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  top:100px;
}

.modalities-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 12, 96, 0.58);
  cursor: pointer;
  transition:
    width 260ms ease,
    height 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
}

.modalities-dots button.is-active {
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  background: transparent;
  transform: scale(1.04);
}

.modalities-scroll-markers {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  pointer-events: none;
}

.modalities-scroll-markers span {
  min-height: 100svh;
}

.modality-scenes,
.modality-scene,
.modality-collage {
  position: absolute;
  inset: 0;
}

.modality-scenes,
.modality-scene,
.modality-collage {
  pointer-events: none;
}

.modality-collage {
  text-decoration: none;
}

.desktop-modality-link {
  display: none;
}

.modality-scene.is-active .modality-collage {
  pointer-events: auto;
  cursor: pointer;
}

.modality-scene {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 240ms ease,
    visibility 0s linear 420ms;
}

.modality-scene.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0ms;
}

.modality-copy p,
.modality-copy h2 {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 460ms ease,
    transform 640ms cubic-bezier(0.18, 0.9, 0.2, 1);
}

.modality-scene.is-active .modality-copy p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 80ms;
}

.modality-scene.is-active .modality-copy h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 150ms;
}

.modality-copy {
  position: absolute;
  top: var(--copy-top);
  left: 44px;
  right: 30px;
  z-index: 6;
  color: #fff;
}

.modality-copy p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.modality-copy h2 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 46px;
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

[data-scene="presencial"] .modality-copy h2 {
  font-size: 32px;
}

[data-scene="semipresencial"] .modality-copy {
  top: calc(var(--copy-top) - 20px);
}

[data-scene="semipresencial"] .modality-copy h2 {
  font-size: 18px;
  line-height: 0.92;
}

[data-scene="ead"] .modality-copy h2 {
  font-size: 92px;
}

.scene-asset {
  position: absolute;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
  transition:
    opacity 520ms ease,
    transform 780ms cubic-bezier(0.18, 0.9, 0.2, 1);
}

.modality-scene:not(.is-active) .scene-asset {
  opacity: 0;
  transform: translate(var(--reveal-x, 0), var(--reveal-y, 22px)) scale(var(--reveal-scale, 0.96));
  transition-delay: 0ms;
}

.modality-scene.is-active .scene-asset {
  transition-delay: var(--reveal-delay, 0ms);
}

.frame-dots {
  --reveal-y: 18px;
  --reveal-scale: 0.98;
  --reveal-delay: 110ms;
  left: 44px;
  top: var(--collage-top);
  width: min(74vw, 332px);
  height: auto;
  aspect-ratio: 332 / 376;
  object-fit: contain;
  opacity: 0.98;
  z-index: 1;
}

.presencial-frame {
  left: 32px;
  top: calc(var(--collage-top) - 2px);
}

.presencial-campus {
  --reveal-x: 24px;
  --reveal-y: 14px;
  --reveal-delay: 310ms;
  right: -12px;
  top: calc(var(--collage-top) + 54px);
  width: min(38vw, 150px);
  z-index: 3;
}

.presencial-theater {
  --reveal-x: -24px;
  --reveal-y: 10px;
  --reveal-delay: 230ms;
  left: 10px;
  top: calc(var(--collage-top) + 10px);
  width: min(40vw, 156px);
  z-index: 3;
}

.presencial-person {
  --reveal-y: 34px;
  --reveal-scale: 0.97;
  --reveal-delay: 390ms;
  left: auto;
  right: 33%;
  top: 27%;
  width: clamp(290px, 82%, 600px);
  z-index: 8;
}

.presencial-pin {
  --reveal-y: 18px;
  --reveal-scale: 0.9;
  --reveal-delay: 500ms;
  left: 24px;
  top: calc(var(--collage-top) + 258px);
  width: min(23vw, 88px);
  z-index: 6;
}

.semi-frame {
  top: calc(var(--collage-top) - 2px);
}

.semi-building {
  --reveal-x: -22px;
  --reveal-y: 10px;
  --reveal-delay: 230ms;
  left: 24px;
  top: calc(var(--collage-top) - 32px);
  width: 120px;
  z-index: 4;
}

.semi-stadium {
  --reveal-x: 24px;
  --reveal-y: 12px;
  --reveal-delay: 320ms;
  right: 0;
  top: calc(var(--collage-top) + 178px);
  width: 178px;
  z-index: 4;
}

.semi-person {
  --reveal-y: 34px;
  --reveal-scale: 0.97;
  --reveal-delay: 390ms;
  left: auto;
  right: 30%;
  top: 24%;
  width: clamp(290px, 82%, 600px);
  z-index: 6;
}

.semi-diploma {
  --reveal-x: 14px;
  --reveal-y: 24px;
  --reveal-scale: 0.9;
  --reveal-delay: 520ms;
  right: 20px;
  top: calc(var(--collage-top) + 284px);
  width: 78px;
  z-index: 7;
}

.ead-frame {
  top: calc(var(--collage-top) - 38px);
}

.ead-theater {
  --reveal-x: -20px;
  --reveal-y: 12px;
  --reveal-delay: 250ms;
  left: 22px;
  top: calc(var(--collage-top) + 132px);
  width: min(38vw, 148px);
  z-index: 4;
}

.ead-platform {
  --reveal-x: 20px;
  --reveal-y: 10px;
  --reveal-delay: 300ms;
  right: 20px;
  top: calc(var(--copy-top) + 96px);
  width: min(34vw, 128px);
  z-index: 4;
  transform: rotate(5deg);
}

.ead-person {
  --reveal-y: 32px;
  --reveal-scale: 0.97;
  --reveal-delay: 390ms;
  left: auto;
  right: 31%;
  top: 24%;
  width: clamp(290px, 82%, 600px);
  z-index: 6;
}

.ead-vectors {
  --reveal-y: 14px;
  --reveal-scale: 0.9;
  --reveal-delay: 470ms;
  left: 66px;
  top: calc(var(--collage-top) + 34px);
  width: 82px;
  z-index: 5;
}

.ead-headset {
  --reveal-x: 18px;
  --reveal-y: 16px;
  --reveal-scale: 0.92;
  --reveal-delay: 540ms;
  right: 12px;
  top: calc(var(--collage-top) + 204px);
  width: min(32vw, 100px);
  z-index: 6;
}

.ead-white-lines {
  --reveal-x: -14px;
  --reveal-y: 18px;
  --reveal-delay: 590ms;
  left: 2px;
  top: calc(var(--collage-top) + 278px);
  width: min(21vw, 48px);
  z-index: 4;
}

.ead-arrow {
  --reveal-x: -14px;
  --reveal-y: 18px;
  --reveal-scale: 0.9;
  --reveal-delay: 640ms;
  left: 30px;
  top: calc(var(--collage-top) + 288px);
  width: min(23vw, 88px);
  z-index: 7;
}

.modalities-cta {
  position: absolute;
  left: 50%;
  bottom: max(var(--cta-bottom), calc(env(safe-area-inset-bottom) + 86px));
  z-index: 60;
  width: auto;
  height: auto;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translateX(-50%);
}

.modalities-cta img {
  width: 28px;
}

.modalities-cta.is-revealing {
  animation: modalities-cta-reveal 520ms cubic-bezier(0.18, 0.9, 0.2, 1) both;
}

@keyframes modalities-cta-reveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .modality-scene,
  .modality-copy p,
  .modality-copy h2,
  .scene-asset,
  .modalities-dots button {
    transition: none;
    animation: none;
  }

  .modalities-cta.is-revealing {
    animation: none;
  }
}

@media (max-height: 740px) {
  .modalities-stage {
    --section-title-top: 54px;
    --dots-top: calc(var(--section-title-top) + 8px);
    --copy-top: 144px;
    --collage-top: 256px;
    --cta-bottom: 84px;
  }

  .modality-copy h2 {
    font-size: 46px;
  }

  [data-scene="semipresencial"] .modality-copy h2 {
    font-size: 18px;
  }

  [data-scene="ead"] .modality-copy h2 {
    font-size: 78px;
  }

  .frame-dots {
    width: min(82vw, 332px);
    height: min(51svh, 376px);
  }

  .presencial-person {
    left: auto;
    right: 33%;
    top: 27%;
    width: clamp(290px, 82%, 600px);
  }

  .presencial-frame {
    left: 47px;
    top: calc(var(--collage-top) - 38px);
  }

  .presencial-campus {
    right: -12px;
    top: calc(var(--collage-top) + 46px);
    width: min(34vw, 126px);
  }

  .presencial-theater {
    left: 10px;
    top: calc(var(--collage-top) + 8px);
    width: min(36vw, 132px);
  }

  .presencial-pin {
    top: calc(var(--collage-top) + 210px);
    width: min(20vw, 74px);
  }

  .semi-person {
    left: auto;
    right: 30%;
    top: 24%;
    width: clamp(290px, 82%, 600px);
  }

  .semi-frame {
    top: calc(var(--collage-top) - 38px);
  }

  .semi-building {
    left: 24px;
    top: calc(var(--collage-top) - 24px);
    width: 102px;
  }

  .semi-stadium {
    right: 0;
    top: calc(var(--collage-top) + 142px);
    width: 152px;
  }

  .semi-diploma {
    right: 20px;
    top: calc(var(--collage-top) + 220px);
    width: 66px;
  }

  .ead-person {
    left: auto;
    right: 31%;
    top: 24%;
    width: clamp(290px, 82%, 600px);
  }

  .ead-platform {
    top: calc(var(--copy-top) + 82px);
    width: min(30vw, 106px);
  }

  .ead-theater {
    top: calc(var(--collage-top) + 112px);
    width: min(35vw, 126px);
  }

  .ead-headset {
    top: calc(var(--collage-top) + 132px);
    width: min(28vw, 98px);
  }

  .ead-arrow {
    top: calc(var(--collage-top) + 184px);
    width: min(21vw, 74px);
  }

  .ead-white-lines {
    top: calc(var(--collage-top) + 166px);
    width: min(19vw, 68px);
  }

  .modalities-cta {
    font-size: 14px;
  }
}

.asset {
  position: absolute;
  pointer-events: none;
  user-select: none;
  transition:
    transform 260ms ease,
    opacity 260ms ease;
}

.asset-photo {
  left: 0;
  top: 64px;
  width: min(54vw, 218px);
  transform: rotate(var(--photo-rotate, -5deg)) translateY(var(--asset-y, 0));
  z-index: 3;
}

.asset-diploma {
  right: -2px;
  bottom: 20px;
  width: min(24vw, 92px);
  transform: rotate(var(--diploma-rotate, 12deg)) translateY(calc(var(--asset-y, 0) * -0.7));
  z-index: 6;
}

.asset-lettering {
  left: 50%;
  bottom: 26px;
  width: min(46vw, 186px);
  z-index: 5;
  transform: translateX(-50%) rotate(-2deg);
}

.asset-lines {
  right: 8px;
  top: 80px;
  width: min(34vw, 132px);
  z-index: 2;
  opacity: 0.85;
}

.asset-dots {
  right: 0;
  top: 32px;
  width: min(58vw, 230px);
  opacity: 0.52;
  z-index: 0;
}

.art-frame {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(70vw, 282px);
  height: 250px;
  border: 4px dotted #fff;
  border-radius: 14px;
  transform: translateX(-50%);
  z-index: 1;
}

.cta {
  width: min(100%, 226px);
  min-height: 58px;
  margin: 0 auto 42px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.cta img {
  width: 18px;
  filter: invert(1);
}

.courses {
  --courses-bg: #2A0BBF;
  padding: 88px 30px 126px;
  background: var(--courses-bg);
  transition: background-color 360ms ease;
}

.courses[data-active="presencial"] {
  --courses-bg: #2A0BBF;
}

.courses[data-active="semipresencial"] {
  --courses-bg: #FF0062;
}

.courses[data-active="ead"] {
  --courses-bg: #AE81FF;
}

.courses-inner {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.courses-heading {
  position: relative;
  margin-bottom: 28px;
  text-align: left;
}

.courses-heading h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.courses-heading span,
.courses-heading strong {
  display: block;
}

.courses-heading strong {
  color: var(--lime);
  font-size: 32px;
  line-height: 0.9;
}

.courses-heading span:last-child {
  font-size: 24px;
}

.courses-cap {
  position: absolute;
  top: -18px;
  left: 150px;
  z-index: 3;
  width: 56px;
}

.mode-tabs {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.mode-tabs button {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.42;
  cursor: pointer;
  transition:
    color 240ms ease,
    opacity 240ms ease,
    transform 240ms ease;
}

.mode-tabs button span {
  position: relative;
  display: inline-block;
}

.mode-tabs .active {
  color: #fff;
  opacity: 1;
  transform: translateX(0);
}

.mode-tabs .active > span::before,
.mode-tabs .active > span::after {
  position: absolute;
  top: 50%;
  color: var(--lime);
  font-size: 1.12em;
  line-height: 1;
  transform: translateY(-50%);
}

.mode-tabs .active > span::before {
  content: "{";
  left: -11px;
}

.mode-tabs .active > span::after {
  content: "}";
  right: -11px;
}

.course-grid {
  display: grid;
  gap: 0;
}

.course-grid a {
  min-height: 62px;
  padding: 10px 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 500;
}

.course-grid small {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.course-grid small i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
}

.course-grid a::after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-left: 18px;
  background: url("./assets/arrow-right-cursos.svg") center / contain no-repeat;
}

body.course-modal-open {
  overflow: hidden;
}

body.course-modal-open .fixed-actions,
body.course-modal-open .menu-control {
  opacity: 0;
  pointer-events: none;
}

.course-modal {
  --course-modal-bg: url("./assets/bg-semipresencial-pink.png");
  --course-modal-fallback: #FF0062;
  position: fixed;
  inset: 0;
  z-index: 110;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--course-modal-fallback);
  background-image: var(--course-modal-bg);
  background-position: center top;
  background-size: cover;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    transform 280ms ease,
    visibility 0s linear 280ms;
  -webkit-overflow-scrolling: touch;
}

.course-modal[data-mode="presencial"] {
  --course-modal-bg: url("./assets/bg-presencial-blue.png");
  --course-modal-fallback: #2A0BBF;
}

.course-modal[data-mode="semipresencial"] {
  --course-modal-bg: url("./assets/bg-semipresencial-pink.png");
  --course-modal-fallback: #FF0062;
}

.course-modal[data-mode="ead"] {
  --course-modal-bg: url("./assets/bg-ead-lilas.png");
  --course-modal-fallback: #AE81FF;
}

.course-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 280ms ease;
}

.course-modal-close {
  position: fixed;
  top: max(48px, calc(env(safe-area-inset-top) + 22px));
  right: 28px;
  z-index: 112;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 14px 28px rgba(12, 5, 69, 0.14);
  cursor: pointer;
}

.course-modal-close img {
  width: 22px;
  max-width: none;
}

.course-modal-inner {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: max(112px, calc(env(safe-area-inset-top) + 86px)) 48px max(44px, calc(env(safe-area-inset-bottom) + 44px));
}

.course-modal h2 {
  max-width: 330px;
  margin: 0 0 28px;
  color: var(--lime);
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.course-modal p,
.course-modal-description {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.23;
  font-weight: 400;
}

.course-modal-description ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.course-modal-description li {
  margin-bottom: 8px;
}

.course-modal-description li:last-child {
  margin-bottom: 0;
}

.course-modal-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px 22px;
  margin: 30px 0 40px;
}

.course-modal-meta div {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 4px;
  align-items: start;
  align-content: start;
  min-width: 0;
}

.course-modal-meta div:last-child {
  grid-column: 1 / 2;
}

.course-modal-meta img,
.course-modal-icon {
  grid-row: 1 / 3;
  width: 16px;
  height: 16px;
  max-width: none;
  margin-top: 1px;
}

.course-modal-icon-time {
  background: var(--lime);
  -webkit-mask: url("./assets/time.svg") center / contain no-repeat;
  mask: url("./assets/time.svg") center / contain no-repeat;
}

.course-modal-meta dt {
  grid-column: 2;
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.course-modal-meta dd {
  grid-column: 2;
  min-width: 0;
  margin: 0;
  color: var(--lime);
  font-size: 16px;
  line-height: 1.12;
  font-weight: 500;
}

.course-modal-actions {
  display: grid;
  gap: 14px;
}

.course-modal-actions a {
  min-height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.course-modal-primary {
  background: #fff;
  color: #FF0062;
  box-shadow: 0 14px 24px rgba(12, 5, 69, 0.16);
}

.course-modal-primary img {
  width: 16px;
  max-width: none;
  filter: brightness(0) saturate(100%) invert(13%) sepia(98%) saturate(4722%) hue-rotate(250deg) brightness(86%) contrast(113%);
}

.course-modal-whatsapp {
  background: #20d466;
  color: #fff;
  box-shadow: 0 14px 24px rgba(12, 5, 69, 0.18);
}

.course-modal-whatsapp img {
  width: 20px;
  max-width: none;
}

.vocational {
  position: relative;
  z-index: 2;
  padding: 0 18px 128px;
  background:
    url("./assets/pattern-xadrez.png") top center / 100% auto repeat-y,
    #fff;
  color: #090713;
}

.vocational-inner {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding-top: 72px;
}

.vocational-collage {
  position: absolute;
  top: -88px;
  left: 0;
  right: 0;
  z-index: 4;
  height: 280px;
  pointer-events: none;
}

.vocational-lab,
.vocational-stadium {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
}

.vocational-lab {
  top: 6px;
  left: 4px;
  z-index: 3;
  width: min(64.8vw, 233px);
  filter: drop-shadow(0 14px 12px rgba(14, 9, 64, 0.22));
}

.vocational-stadium {
  top: 62px;
  right: 14px;
  z-index: 2;
  width: min(49.5vw, 213px);
  filter: drop-shadow(0 10px 9px rgba(14, 9, 64, 0.2));
}

.vocational-card {
  position: relative;
  padding: 78px 20px 48px;
  border: 1px dashed rgba(174, 129, 255, 0.2);
  border-radius: 26px;
  text-align: center;
  background-color: #F4F3FC;
}

.vocational-copy p {
  margin: 0 0 18px;
  color: #090713;
  font-size: 18px;
  line-height: 0.98;
  font-weight: 400;
}

.vocational-copy strong,
.vocational-copy span {
  
}

.vocational-copy strong {
  font-weight: 700;
}

.vocational-copy h2 {
  margin: 0 0 34px;
  color: #2A0BBF;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vocational-cta {
  position: absolute;
  left: 50%;
  bottom: -36px;
  width: min(100%, 222px);
  min-height: 72px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 3px solid #2A0BBF;
  color: #2A0BBF;
  background: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-1.2deg);
  transition:
    border-color 200ms ease,
    box-shadow 220ms ease,
    filter 200ms ease;
}

.vocational-cta span {
  transform: rotate(1.2deg);
}

.vocational-cta img {
  position: absolute;
  top: -31px;
  right: -30px;
  width: 74px;
  transform: rotate(13deg);
}

.campus-stories {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 102px 18px 66px;
  background:
    linear-gradient(to bottom, #fff 0 68%, #AE81FF 68% 100%),
    #fff;
  color: #2A0BBF;
}

.campus-stories::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 32%;
  left: 0;
  z-index: 0;
  background: url("./assets/pattern-xadrez.png") top center / 100% auto repeat-y;
  pointer-events: none;
}

.campus-stories::after {
  content: "";
  position: absolute;
  top: 208px;
  right: -34px;
  z-index: 1;
  width: 160px;
  height: 92px;
  background: url("./assets/tracos-black.svg") center / contain no-repeat;
  opacity: 0.12;
}

.campus-stories-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.campus-stories-heading {
  margin: 0 0 36px 24px;
  text-transform: uppercase;
}

.campus-stories-heading p,
.campus-stories-heading h2 {
  margin: 0;
}

.campus-stories-heading p {
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
}

.campus-stories-heading h2 {
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
}

.campus-camera {
  position: absolute;
  top: 5px;
  right: 6px;
  z-index: 5;
  width: min(43vw, 196px);
  pointer-events: none;
  user-select: none;
}

.stories-phone {
  position: relative;
  overflow: hidden;
  min-height: 652px;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 18px 32px rgba(42, 11, 191, 0.18);
  isolation: isolate;
}

.story-track,
.story-slide {
  position: absolute;
  inset: 0;
}

.story-slide {
  display: flex;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  filter: saturate(0.94);
  transform: scale(1.025) translateX(10px);
  transition:
    opacity 460ms ease,
    filter 520ms ease,
    transform 780ms cubic-bezier(0.18, 0.9, 0.2, 1),
    visibility 0s linear 460ms;
}

.story-slide.is-active {
  opacity: 1;
  visibility: visible;
  filter: saturate(1);
  transform: scale(1);
  transition-delay: 0ms;
}

.stories-phone.is-dragging .story-slide {
  transition: none;
}

.story-video-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 12, 18, 0.18) 0%, rgba(7, 10, 12, 0.12) 44%, rgba(2, 2, 2, 0.76) 100%),
    radial-gradient(circle at 25% 58%, rgba(255, 248, 223, 0.42), transparent 22%),
    linear-gradient(145deg, #95bfc6 0%, #b7c8bc 42%, #7e7734 63%, #1c2015 100%);
}

.story-slide-two .story-video-placeholder {
  background:
    linear-gradient(to bottom, rgba(8, 12, 18, 0.16) 0%, rgba(7, 10, 12, 0.08) 48%, rgba(2, 2, 2, 0.72) 100%),
    radial-gradient(circle at 70% 30%, rgba(190, 255, 0, 0.2), transparent 26%),
    linear-gradient(150deg, #6ba8c8 0%, #274bc6 50%, #140f4e 100%);
}

.story-slide-three .story-video-placeholder {
  background:
    linear-gradient(to bottom, rgba(8, 12, 18, 0.14) 0%, rgba(7, 10, 12, 0.1) 45%, rgba(2, 2, 2, 0.74) 100%),
    radial-gradient(circle at 28% 38%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(150deg, #FF0062 0%, #AE81FF 52%, #2A0BBF 100%);
}

.story-slide-four .story-video-placeholder {
  background:
    linear-gradient(to bottom, rgba(8, 12, 18, 0.12) 0%, rgba(7, 10, 12, 0.08) 44%, rgba(2, 2, 2, 0.72) 100%),
    radial-gradient(circle at 68% 58%, rgba(255, 255, 255, 0.32), transparent 23%),
    linear-gradient(150deg, #e8e3ff 0%, #AE81FF 42%, #2A0BBF 100%);
}

.story-slide-five .story-video-placeholder {
  background:
    linear-gradient(to bottom, rgba(8, 12, 18, 0.13) 0%, rgba(7, 10, 12, 0.08) 42%, rgba(2, 2, 2, 0.72) 100%),
    radial-gradient(circle at 30% 28%, rgba(190, 255, 0, 0.22), transparent 24%),
    linear-gradient(150deg, #83c3d7 0%, #98a853 50%, #1f1b10 100%);
}

.story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(8, 12, 18, 0.1) 0%, rgba(7, 10, 12, 0.04) 45%, rgba(2, 2, 2, 0.58) 100%);
  pointer-events: none;
}

.story-slide h3 {
  position: relative;
  z-index: 2;
  margin: 62px 28px 0;
  color: #fff;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-slide h3 strong {
  display: block;
  color: var(--lime);
  font: inherit;
}

.story-audio-toggle,
.testimonial-audio-toggle {
  position: absolute;
  right: 26px;
  bottom: 54px;
  z-index: 5;
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #fff;
  border-radius: 40px;
  background: transparent;
  cursor: pointer;
}

.story-audio-toggle img,
.testimonial-audio-toggle img {
  width: 20px;
  height: 20px;
}

.stories-phone[data-muted="false"] .audio-off,
.stories-phone[data-muted="true"] .audio-on,
.testimonial-phone[data-muted="false"] .audio-off,
.testimonial-phone[data-muted="true"] .audio-on {
  display: none;
}

.story-progress {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 32px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 4px;
}

.story-progress span,
.story-progress button {
  appearance: none;
  padding: 0;
  height: 5px;
  overflow: hidden;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  opacity: 0.72;
  transition:
    opacity 180ms ease,
    background-color 180ms ease;
}

.story-progress span:hover,
.story-progress button:hover,
.story-progress span:focus-visible,
.story-progress button:focus-visible,
.story-progress span.is-active,
.story-progress button.is-active,
.story-progress span.is-complete,
.story-progress button.is-complete {
  opacity: 1;
}

.story-progress span::before,
.story-progress button::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.story-progress span.is-complete::before,
.story-progress button.is-complete::before {
  width: 100%;
}

.story-progress span.is-active::before,
.story-progress button.is-active::before {
  animation: story-progress var(--story-duration, 4.8s) linear forwards;
}

.stories-links {
  margin-top: 34px;
  padding: 20px 22px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  color: #090713;
}

.stories-link {
  display: grid;
  align-content: space-between;
  gap: 18px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
}

.stories-link strong {
  font-weight: 700;
}

.stories-link b {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.stories-link img {
  width: 24px;
  height: 24px;
}

.story-peek {
  display: none;
  appearance: none;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.admission {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: -1px;
  padding: 150px 0 160px;
  background: #AE81FF;
  color: #090713;
}

.admission::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 140px;
  z-index: 0;
  width: 98px;
  height: 108px;
  background: url("./assets/tracos-brancos-slide-ingressar.svg") center / contain no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.admission-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.admission-vectors {
  position: absolute;
  top: -34px;
  right: 44px;
  width: 100px;
  pointer-events: none;
  user-select: none;
}

.admission-heading,
.admission-tabs {
  padding: 0 52px;
}

.admission-heading {
  margin-bottom: 36px;
}

.admission-heading h2 {
  margin: 0 0 28px;
  color: #fff;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 0.93;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admission-heading p {
  max-width: 310px;
  margin: 0;
  color: #090713;
  font-size: 20px;
  line-height: 1.06;
  font-weight: 400;
}

.admission-tabs {
  display: none;
}

.admission-tabs button {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  opacity: 0.42;
  cursor: pointer;
}

.admission-tabs button span {
  position: relative;
  display: inline-block;
}

.admission-tabs button.active {
  opacity: 1;
}

.admission-tabs button.active span::before,
.admission-tabs button.active span::after {
  position: absolute;
  top: 50%;
  color: var(--lime);
  font-size: 1.06em;
  line-height: 1;
  transform: translateY(-50%);
}

.admission-tabs button.active span::before {
  content: "{";
  left: -11px;
}

.admission-tabs button.active span::after {
  content: "}";
  right: -11px;
}

.admission-carousel {
  --card-w: 272px;
  --admission-gutter: 52px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-auto-columns: var(--card-w);
  grid-auto-flow: column;
  gap: 34px;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--admission-gutter);
  scroll-padding-inline-start: var(--admission-gutter);
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  padding: 54px calc(100% - var(--admission-gutter) - var(--card-w)) 56px var(--admission-gutter);
  margin-top: 0;
  min-height: 322px;
  cursor: grab;
  scrollbar-width: none;
}

.admission-carousel:active {
  cursor: grabbing;
}

.admission-carousel::before {
  content: "";
  position: absolute;
  top: 54px;
  left: var(--admission-gutter);
  z-index: 1;
  width: var(--card-w);
  min-height: 212px;
  border: 3px dashed rgba(42, 11, 191, 0.42);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.28);
  opacity: 0;
  transform: rotate(-1.5deg) scale(0.96);
  pointer-events: none;
}

.admission-carousel.is-loading {
  overflow-x: hidden;
  cursor: wait;
}

.admission-carousel.is-loading::before {
  opacity: 1;
  animation: admission-loading 620ms ease-in-out infinite alternate;
}

.admission-carousel.is-revealing .admission-card {
  animation: admission-card-reveal 520ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
  animation-delay: calc(var(--card-index, 0) * 64ms);
}

.admission-carousel::-webkit-scrollbar {
  display: none;
}

.admission-card {
  position: relative;
  z-index: 2;
  min-height: 212px;
  padding: 106px 22px 24px;
  border: 3px dashed #2A0BBF;
  border-radius: 17px;
  background: #fff;
  color: #090713;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transform: rotate(var(--card-rotate, -1.5deg));
  box-shadow: 0 12px 10px rgba(9, 7, 19, 0.22);
}

.admission-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.admission-card.is-hot {
  background: #AE81FF;
  color: #fff;
  padding-top: 28px;
}

.admission-card.is-provao {
  border-color: #fff;
  background: #AE81FF;
  color: #fff;
  padding-top: 28px;
}

.admission-card.is-lime {
  background: var(--lime);
  color: #2A0BBF;
  padding-top: 30px;
}

.admission-card.is-blue {
  background: #AE81FF;
  color: #fff;
  padding-top: 30px;
}

.admission-card h3 {
  margin: 0 0 12px;
  color: var(--card-title, #FF0062);
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 0;
}

.admission-card[data-entry="vestibular"]::after {
  top: 28px;
  right: 110px;
  width: 44px;
  height: 40px;
  background: url("./assets/ingressar-tracos-azuis.svg") center / contain no-repeat;
}

.admission-card[data-entry="enem"]::after {
  left: 20px;
  bottom: 30px;
  width: 134px;
  height: 44px;
  background: url("./assets/ingressar-tracos-brancos-horizontal.svg") center / contain no-repeat;
}

.admission-card[data-entry="anterior"]::after {
  top: 0px;
  right: 104px;
  width: 40px;
  height: 48px;
  background: url("./assets/ingressar-nota-anterior-vetores.svg") center / contain no-repeat;
}

.admission-card[data-entry="reingresso"]::after {
  top: 142px;
  left: 22px;
  width: 58px;
  height: 52px;
  background: url("./assets/ingressar-tracos-azuis-reingresso.svg") center / contain no-repeat;
}

.admission-card[data-entry="diploma"]::after {
  top: 28px;
  left: 54px;
  width: 88px;
  height: 42px;
  background: url("./assets/ingressar-tracos-portador-diploma.svg") center / contain no-repeat;
}

.admission-card[data-entry="transferencia"] {
  border-color: #fff;
}

.admission-card[data-entry="diploma"] h3 {
  color: #2A0BBF;
}

.admission-card.is-hot h3,
.admission-card.is-provao h3,
.admission-card.is-lime h3 {
  --card-title: var(--lime);
}

.admission-card.is-blue h3,
.admission-card.is-provao h3,
.admission-card.is-lime h3 {
  color: var(--lime);
}

.admission-card.is-lime h3 {
  color: #2A0BBF;
}

.admission-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
}

.admission-icon {
  position: absolute;
  top: -36px;
  left: 10px;
  width: var(--icon-w, 86px);
  max-width: none;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  filter: drop-shadow(0 10px 10px rgba(42, 11, 191, 0.16));
}

.admission-card[data-entry="vestibular"] .admission-icon {
  top: -36px;
  left: 10px;
  width: 126px;
}

.admission-card[data-entry="provao"] .admission-icon {
  top: 138px;
  left: 18px;
  width: 112px;
}

.admission-card[data-entry="enem"] .admission-icon {
  top: 150px;
  left: 16px;
  width: 106px;
}

.admission-card[data-entry="anterior"] .admission-icon {
  top: -34px;
  left: 16px;
  width: 118px;
}

.admission-card[data-entry="reingresso"] .admission-icon {
  top: 144px;
  left: 14px;
  width: 118px;
}

.admission-card[data-entry="diploma"] .admission-icon {
  top: -40px;
  left: 40px;
  width: 50px;
  transform: rotate(12deg);
}

.admission-card[data-entry="transferencia"] .admission-icon {
  top: 161px;
  left: 18px;
  width: 102px;
}

.scholarships {
  position: relative;
  overflow: visible;
  padding: 118px 0 0;
  background: #20069C;
  color: #fff;
}

.scholarships-inner {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 56px 200px;
}

.scholarships-clips {
  position: absolute;
  top: -110px;
  left: 28px;
  width: 37px;
  margin-top: -28px;
  pointer-events: none;
  user-select: none;
}

.scholarships-lines {
  position: absolute;
  top: 4px;
  left: 0;
  width: 104px;
  pointer-events: none;
  user-select: none;
}

.scholarships-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  color: #fff;
  text-transform: uppercase;
}

.scholarships-kicker p {
  margin: 0;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 0.9;
  font-weight: 900;
}

.scholarships-kicker p span {
  font-family: "RG Standard", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.scholarships-kicker > span {
  display: block;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}

.scholarships-title {
  position: relative;
  z-index: 2;
  margin: 0 0 38px;
  color: #fff;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scholarships-title strong {
  color: var(--lime);
  font: inherit;
}

.scholarship-list {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.scholarship-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  background: transparent;
  color: #fff;
  transition:
    min-height 280ms cubic-bezier(0.2, 0.9, 0.2, 1),
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    filter 200ms ease;
}

.scholarship-card-impulsiona {
  min-height: 92px;
}

.scholarship-card-provao {
  min-height: 92px;
}

.scholarship-card-compact {
  min-height: 92px;
}

.scholarship-card.is-open {
  border-color: var(--lime);
}

.scholarship-trigger {
  position: relative;
  width: 100%;
  min-height: 92px;
  padding: 16px 58px 14px 24px;
  border: 0;
  display: flex;
  align-items: center;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.scholarship-card-compact .scholarship-trigger {
  min-height: 92px;
  padding: 16px 50px 14px 20px;
}

.scholarship-title {
  max-width: 220px;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scholarship-card.is-open .scholarship-title {
  color: var(--lime);
}

.scholarship-toggle {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}

.scholarship-toggle::before,
.scholarship-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/arrow-right-cursos.svg") center / contain no-repeat;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.scholarship-toggle::after {
  filter: brightness(0) invert(1);
  opacity: 0;
}

.scholarship-card.is-open .scholarship-toggle::before,
.scholarship-card.is-open .scholarship-toggle::after {
  transform: rotate(90deg);
}

.scholarship-content {
  max-height: 0;
  opacity: 0;
  padding: 0 24px;
  overflow: hidden;
  transition:
    max-height 300ms cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 220ms ease,
    padding-bottom 280ms ease;
}

.scholarship-card.is-open .scholarship-content {
  max-height: 340px;
  opacity: 1;
  padding-bottom: 28px;
}

.scholarship-card-compact.is-open .scholarship-content {
  max-height: 260px;
  padding-bottom: 24px;
}

.scholarship-content p {
  margin: 0 0 28px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.scholarship-card-provao .scholarship-content p {
  max-width: 235px;
}

.scholarship-card-compact .scholarship-content p {
  max-width: 238px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.2;
}

.scholarship-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.scholarship-link::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background:
    linear-gradient(currentColor, currentColor) center 5px / 6px 1px no-repeat,
    linear-gradient(currentColor, currentColor) center 8px / 6px 1px no-repeat,
    linear-gradient(currentColor, currentColor) center 11px / 6px 1px no-repeat;
}

.scholarship-link-plain::before {
  content: none;
}

.scholarship-link-arrow::after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: url("./assets/arrow-right-cursos.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.scholarship-link-money img {
  width: 16px;
  height: 16px;
  max-width: none;
  flex: 0 0 16px;
}

.life-section {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  margin-top: -1px;
  padding: 138px 0 86px;
  background:
    linear-gradient(90deg, rgba(42, 11, 191, 0.06), rgba(42, 11, 191, 0) 34%, rgba(42, 11, 191, 0.08)),
    url("./assets/bg-semipresencial-pink.png") center / cover no-repeat,
    #FF0062;
  color: #fff;
}

.life-inner,
.testimonials-inner,
.newsletter-inner,
.parents-inner,
.final-info-inner,
.site-footer-inner {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.life-inner {
  padding: 0 24px;
}

.life-overlap-photo {
  position: absolute;
  top: -302px;
  right: -76px;
  z-index: 1;
  width: 300px;
  max-width: none;
  pointer-events: none;
}

.life-lines {
  position: absolute;
  top: -52px;
  left: 0;
  z-index: 1;
  width: 104px;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}

.life-kicker {
  position: relative;
  z-index: 2;
  margin: 0 24px 42px;
  font-size: 14px;
  line-height: 1;
  top:-50px;
  text-transform: uppercase;
}

.life-kicker strong {
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.life-kicker span {
  margin-left: 2px;
  opacity: 0.82;
}

.life-title {
  position: relative;
  z-index: 2;
  margin: 0 0 32px;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 0.94;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.life-title span {
  display: block;
}

.life-title img {
  width: min(100%, 286px);
  margin: 2px auto 0;
}

.life-photo-slider {
  position: relative;
  z-index: 2;
  overflow: visible;
  height: min(664px, calc(100svh - 72px));
  min-height: 560px;
  border-radius: 10px;
  background: #090713;
}

.life-slide-lines {
  position: absolute;
  top: 46px;
  right: -24px;
  z-index: 6;
  width: 124px;
  pointer-events: none;
  user-select: none;
}

.life-photo-track {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: inherit;
}

.life-photo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: saturate(0.96);
  transform: scale(1.025);
  transition:
    opacity 520ms ease,
    filter 560ms ease,
    transform 760ms cubic-bezier(0.18, 0.9, 0.2, 1);
}

.life-photo-slide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  height: 170px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.life-photo-slide.is-active {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1);
}

.life-photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-slide-copy {
  position: absolute;
  top: 42px;
  left: 24px;
  z-index: 4;
  color: #fff;
  text-transform: uppercase;
}

.life-slide-copy span {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}

.life-slide-copy strong {
  display: block;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 0.9;
  font-weight: 900;
}

.life-slide-button {
  position: absolute;
  left: 22px;
  bottom: 62px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: var(--pink);
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(9, 7, 19, 0.24);
}

.life-progress,
.testimonial-progress {
  position: absolute;
  right: 22px;
  bottom: 26px;
  left: 22px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

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

.life-progress span,
.life-progress button,
.testimonial-progress span,
.testimonial-progress button {
  appearance: none;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  opacity: 0.72;
  transition:
    opacity 180ms ease,
    background-color 180ms ease;
}

.life-progress span:hover,
.life-progress button:hover,
.life-progress button:focus-visible,
.testimonial-progress span:hover,
.testimonial-progress button:hover,
.testimonial-progress button:focus-visible,
.life-progress span.is-active,
.life-progress button.is-active,
.testimonial-progress span.is-active,
.testimonial-progress button.is-active,
.life-progress span.is-complete,
.life-progress button.is-complete,
.testimonial-progress span.is-complete,
.testimonial-progress button.is-complete {
  opacity: 1;
}

.life-progress span::before,
.life-progress button::before,
.testimonial-progress span::before,
.testimonial-progress button::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.testimonial-progress span::before,
.testimonial-progress button::before {
  background: var(--lime);
}

.life-progress span.is-complete::before,
.life-progress button.is-complete::before,
.testimonial-progress span.is-complete::before,
.testimonial-progress button.is-complete::before {
  width: 100%;
}

.life-progress span.is-active::before,
.life-progress button.is-active::before {
  animation: story-progress var(--life-duration, 4s) linear forwards;
}

.testimonial-progress span.is-active::before,
.testimonial-progress button.is-active::before {
  animation: story-progress var(--testimonial-duration, 4.8s) linear forwards;
}

.life-highlights {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  margin: -112px -24px -86px;
  padding: 156px 54px 86px;
  background: #fff;
}

.life-highlights article {
  padding-left: 22px;
  border-left: 1px solid #FF0062;
}

.life-highlights article span {
  display: block;
  margin-bottom: 8px;
  color: #FF0062;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}

.life-highlights article p {
  margin: 0;
  color: #2A0BBF;
  font-family: "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 400;
}

.life-highlights article p strong {
  color: #FF0062;
  font: inherit;
  font-weight: 800;
}

.life-highlights article small {
  display: block;
  margin-top: 5px;
  color: rgba(9, 7, 19, 0.74);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.testimonials {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 18px 0 70px;
  background:
    url("./assets/pattern-xadrez.png") top center / 100% auto repeat-y,
    #fff;
  color: #fff;
}

.testimonials-divider-decor {
  position: absolute;
  top: -36px;
  right: 20px;
  z-index: 12;
  width: 108px;
  height: 148px;
  pointer-events: none;
  user-select: none;
}

.testimonials-divider-decor img {
  position: absolute;
  display: block;
  max-width: none;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.testimonials-divider-lines {
  top: 12px;
  left: 0;
  width: 58px;
  opacity: 0.96;
  filter: brightness(0) invert(1);
}

.testimonials-divider-arrow {
  top: 26px;
  right: 0;
  width: 72px;
  filter: drop-shadow(0 12px 16px rgba(9, 7, 19, 0.24));
}

.testimonials-divider-vectors {
  top: 106px;
  right: 0;
  width: 86px;
  opacity: 0.2;
}

.testimonials-inner {
  padding: 0 18px;
}

.testimonials-heading {
  position: relative;
  z-index: 3;
  margin: 0 0 30px 24px;
  color: #2A0BBF;
  text-transform: uppercase;
}

.testimonials-heading img {
  position: absolute;
  top: -8px;
  left: -44px;
  z-index: -1;
  width: 104px;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}

.testimonials-heading h2 {
  margin: 0;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.testimonial-peek {
  display: none;
  appearance: none;
  padding: 0;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.testimonial-phone {
  position: relative;
  overflow: hidden;
  height: min(760px, 90svh);
  min-height: 660px;
  border-radius: 12px;
  background: #111;
}

.testimonial-track {
  position: relative;
  height: 100%;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: saturate(0.96);
  transform: scale(1.02);
  transition:
    opacity 460ms ease,
    filter 520ms ease,
    transform 760ms cubic-bezier(0.18, 0.9, 0.2, 1);
}

.testimonial-slide.is-active {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1);
}

.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.05) 44%, rgba(0, 0, 0, 0.52));
}

.testimonial-slide h2 {
  position: absolute;
  top: 38px;
  left: 24px;
  z-index: 2;
  margin: 0;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 0.94;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-lines {
  position: absolute;
  top: 84px;
  right: -12px;
  z-index: 3;
  width: 104px;
}

.testimonials-pin {
  position: relative;
  z-index: 4;
  width: 88px;
  margin: -28px 4px 0 auto;
  display:none;
}

.newsletter {
  padding: 72px 0 58px;
  background: #082BCD;
  color: #fff;
}

.newsletter-inner {
  padding: 0 44px;
}

.newsletter-pin {
  position: absolute;
  top: -128px;
  right: 4px;
  width: 138px;
  z-index: 5;
}

.newsletter-lines {
  position: absolute;
  top: -4px;
  left: 0;
  z-index: 1;
  width: 104px;
  pointer-events: none;
  user-select: none;
}

.newsletter p {
  position: relative;
  z-index: 2;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  text-transform: uppercase;
}

.newsletter h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  padding: 0 25px;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 0.93em;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.newsletter-iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 400px;
  height: 400px;
  border: 0;
  overflow: hidden;
  background: transparent;
  color-scheme: normal;
}

.newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0 6px 0 18px;
}

.newsletter-form label {
  flex: 1;
}

.newsletter-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-form input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  outline: 0;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.newsletter-step {
  margin: 0 14px 0 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.newsletter-form button {
  width: 40px;
  height: 25px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #FF0062;
}

.newsletter-form button img {
  width: 10px;
}

.parents {
  overflow-x: clip;
  overflow-y: visible;
  padding: 112px 0 0;
  background: #20069C;
  color: #fff;
}

.parents-inner {
  min-height: 560px;
  padding: 0 54px 118px;
}

.parents-clips {
  position: absolute;
  top: -128px;
  left: 36px;
  width: 38px;
}

.parents-lines {
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 1;
  width: 104px;
  pointer-events: none;
  user-select: none;
}

.parents-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.parents-kicker strong {
  display: block;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.parents-kicker span {
  color: rgba(255, 255, 255, 0.62);
}

.parents h2 {
  margin: 0 0 32px;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 0.93;
  font-weight: 900;
  text-transform: uppercase;
}

.parents h2::first-line {
  color: #fff;
}

.parents h2 strong {
  color: var(--lime);
  font: inherit;
}

.parents-list {
  display: grid;
  gap: 0;
}

.parents-list button,
.faq-list button {
  width: 100%;
  min-height: 30px;
  padding: 6px 22px 6px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: 16px;
  line-height: 1.1;
  position: relative;
}

.parents-list button::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: url("./assets/arrow-right-cursos.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.faq-list button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--lime);
  transform: translateY(-50%);
}

.parents-vectors {
  position: absolute;
  left: 58px;
  bottom: 46px;
  width: 78px;
}

.parents-photo {
  position: absolute;
  right: -58px;
  bottom: -84px;
  width: 270px;
  max-width: none;
}

.final-info {
  padding: 84px 0 94px;
  background: #fff;
  color: #2A0BBF;
}

.final-info-inner {
  padding: 0 50px;
}

.final-lines {
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 1;
  width: 104px;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}

.final-lines.scroll-reveal.is-revealed {
  opacity: 0.2;
}

.final-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: #2A0BBF;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.final-kicker strong {
  display: block;
  color: #2A0BBF;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.final-kicker span {
  color: #2A0BBF;
  font-weight: 400;
}

.final-modalities {
  display: grid;
  gap: 12px;
  margin-bottom: 44px;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.final-modalities button {
  position: relative;
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(42, 11, 191, 0.28);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.final-modalities button.active {
  color: #2A0BBF;
}

.final-modalities button.active::before,
.final-modalities button.active::after {
  position: absolute;
  top: 50%;
  color: var(--lime);
  line-height: 1;
  transform: translateY(-50%);
}

.final-modalities button.active::before {
  content: "{";
  left: -12px;
}

.final-modalities button.active::after {
  content: "}";
  right: -12px;
}

.faq-list {
  display: grid;
}

.faq-item {
  border-bottom: 1px solid rgba(42, 11, 191, 0.18);
}

.final-info .faq-question {
  width: 100%;
  min-height: 38px;
  padding: 9px 26px 9px 0;
  border: 0;
  background: transparent;
  color: #2A0BBF;
  text-align: left;
  font-size: 16px;
  line-height: 1.05;
  position: relative;
  cursor: pointer;
}

.faq-item.is-open .faq-question {
  color: #FF0062;
}

.final-info .faq-question::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  background: url("./assets/add.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.faq-item.is-open .faq-question::after {
  filter: brightness(0) saturate(100%) invert(17%) sepia(99%) saturate(7435%) hue-rotate(328deg) brightness(101%) contrast(109%);
}

.faq-item.is-open .faq-question::after {
  height: 1px;
  background-image: url("./assets/reduce.svg");
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  padding-bottom: 0;
  color: rgba(42, 11, 191, 0.72);
  font-size: 14px;
  line-height: 1.18;
  transition:
    grid-template-rows 260ms ease,
    opacity 200ms ease,
    padding-bottom 240ms ease,
    visibility 0s linear 260ms;
}

.faq-answer p {
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.final-info .faq-answer p {
  white-space: pre-line;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  padding-bottom: 14px;
  transition:
    grid-template-rows 260ms ease,
    opacity 200ms ease,
    padding-bottom 240ms ease,
    visibility 0s;
}

.site-footer {
  padding: 84px 0 100px;
  background: #2A0BBF;
  color: #fff;
}

.site-footer-inner {
  padding: 0 44px;
  text-align: center;
}

.footer-slogan {
  width: 142px;
  margin: 0 auto 46px;
}

.footer-logo {
  width: 86px;
  margin: 0 auto 34px;
}

.site-footer address {
  display: grid;
  gap: 5px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.2;
  font-style: normal;
}

.site-footer address .footer-contact-line {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.site-footer address img {
  width: 8px;
  flex: 0 0 auto;
}

.footer-mec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 260px;
  margin: 0 auto 34px;
  text-align: left;
}

.footer-mec img {
  width: 82px;
  flex: 0 0 auto;
}

.footer-mec p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
}

.footer-socials img {
  max-width: 14px;
  max-height: 14px;
}

.fixed-actions {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 10px;
  padding: 8px 18px calc(8px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  box-shadow: 0 -5px 14px rgba(9, 7, 19, 0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.fixed-actions.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fixed-actions a {
  min-height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fixed-signup {
  gap: 10px;
  background: #FF0062;
  color: var(--lime);
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.fixed-signup img {
  width: 14px;
}

.fixed-whatsapp {
  background: #20d466;
}

.fixed-whatsapp img {
  width: 22px;
}

.course-grid a::after,
.fixed-signup img,
.course-modal-primary img {
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

/* Subtle CTA feedback for pointer devices. */
.site-search-toggle,
.menu-button,
.site-menu-links a,
.outline-cta,
.scroll-cue,
.modalities-cta,
.desktop-modality-link,
.mode-tabs button,
.course-grid a,
.scholarship-trigger,
.scholarship-link,
.story-peek,
.story-audio-toggle,
.testimonial-peek,
.testimonial-audio-toggle,
.stories-link,
.admission-card,
.life-slide-button,
.newsletter-form button,
.parents-list button,
.final-modalities button,
.faq-question,
.footer-socials a,
.fixed-actions a,
.course-modal-close,
.course-modal-actions a {
  transition:
    transform 200ms ease,
    opacity 200ms ease,
    filter 200ms ease,
    color 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .site-search-toggle:hover,
  .menu-button:hover,
  .course-modal-close:hover,
  .story-audio-toggle:hover,
  .testimonial-audio-toggle:hover,
  .newsletter-form button:hover,
  .footer-socials a:hover,
  .fixed-actions a:hover,
  .course-modal-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(9, 7, 19, 0.16);
  }

  .site-search-toggle:hover,
  .menu-button:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.72;
  }

  .site-menu-links a:hover,
  .mode-tabs button:hover,
  .final-modalities button:hover,
  .parents-list button:hover,
  .scholarship-link:hover,
  .stories-link:hover {
    opacity: 1;
    color: var(--lime);
    transform: translateX(3px);
  }

  .life-slide-button:hover {
    opacity: 1;
    background: #fff;
    color: var(--pink);
    box-shadow: 0 16px 32px rgba(9, 7, 19, 0.3);
    transform: translateX(3px) scale(1.02);
  }

  .faq-question:hover {
    opacity: 1;
    color: #FF0062;
    background: transparent;
    transform: translateX(3px);
  }

  .faq-question:hover::after {
    filter: brightness(0) saturate(100%) invert(17%) sepia(99%) saturate(7435%) hue-rotate(328deg) brightness(101%) contrast(109%);
  }

  .modalities-cta:hover,
  .desktop-modality-link:hover,
  .scroll-cue:hover {
    color: var(--lime);
    filter: brightness(1.06);
  }

  .vocational-cta:hover,
  .scholarship-card:hover {
    border-color: var(--lime);
    filter: brightness(1.03);
    box-shadow: 0 16px 30px rgba(9, 7, 19, 0.14);
  }

  .admission-card:hover {
    transform: rotate(var(--card-rotate, -1.5deg)) translateY(-3px);
    border-color: var(--lime);
    box-shadow: 0 16px 30px rgba(9, 7, 19, 0.16);
  }

  .course-grid a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .course-grid a:hover::after,
  .fixed-signup:hover img,
  .course-modal-primary:hover img {
    transform: translateX(3px);
  }

  .fixed-signup:hover,
  .course-modal-primary:hover {
    filter: saturate(1.04) brightness(1.02);
  }

  .fixed-whatsapp:hover,
  .course-modal-whatsapp:hover {
    filter: saturate(1.08) brightness(1.03);
  }

  .story-peek:hover,
  .testimonial-peek:hover {
    opacity: 0.86;
  }
}

@keyframes story-progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes admission-loading {
  from {
    opacity: 0.28;
    transform: rotate(-1.5deg) scale(0.96);
  }

  to {
    opacity: 0.62;
    transform: rotate(-1.5deg) scale(1);
  }
}

@keyframes admission-card-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(var(--card-rotate, -1.5deg)) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--card-rotate, -1.5deg)) scale(1);
  }
}

@media (max-width: 374px) {
  .menu-control {
    right: 10px;
  }

  .menu-control.is-search-open {
    left: 22px;
    right: 22px;
  }

  .site-search-input {
    font-size: 22px;
  }

  .site-search-panel {
    padding-right: 30px;
    padding-left: 30px;
  }

  .site-search-result strong {
    font-size: 16px;
  }

  .courses {
    padding-right: 24px;
    padding-left: 24px;
  }

  .courses-heading h2 {
    font-size: 24px;
  }

  .courses-heading strong {
    font-size: 32px;
  }

  .courses-heading span:last-child {
    font-size: 24px;
  }

  .mode-tabs button {
    font-size: 16px;
  }

  .course-grid a {
    font-size: 18px;
  }

  .course-modal-inner {
    padding-right: 34px;
    padding-left: 34px;
  }

  .course-modal h2 {
    font-size: 20px;
  }

  .course-modal p {
    font-size: 17px;
  }

  .vocational {
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 116px;
  }

  .vocational-inner {
    padding-top: 72px;
  }

  .vocational-lab {
    left: 30px;
    width: min(64.8vw, 257px);
  }

  .vocational-stadium {
    right: 8px;
    width: min(49.5vw, 191px);
  }

  .vocational-card {
    padding: 108px 16px 48px;
    background-color: #F4F3FC;
  }

  .vocational-copy p {
    font-size: 18px;
  }

  .vocational-copy h2 {
    font-size: 32px;
  }

  .vocational-cta {
    bottom: -33px;
    min-height: 66px;
    font-size: 18px;
  }

  .campus-stories {
    padding-right: 14px;
    padding-left: 14px;
  }

  .campus-stories-heading {
    margin-left: 20px;
  }

  .campus-camera {
    right: -4px;
    width: min(42vw, 158px);
  }

  .stories-phone {
    min-height: 590px;
    border-radius: 22px;
  }

  .story-slide h3 {
    margin: 58px 24px 0;
    font-size: 28px;
  }

  .stories-links {
    padding: 18px 18px 20px;
    gap: 14px;
  }

  .stories-link {
    font-size: 15px;
  }

  .stories-link b {
    font-size: 15px;
  }

  .admission {
    padding-top: 124px;
    padding-bottom: 128px;
  }

  .admission-heading,
  .admission-tabs {
    padding-right: 44px;
    padding-left: 44px;
  }

  .admission-heading h2 {
    font-size: 28px;
  }

  .admission-heading p {
    font-size: 18px;
  }

  .admission-tabs button {
    font-size: 16px;
  }

  .admission-carousel {
    --card-w: 258px;
    --admission-gutter: 44px;
    gap: 30px;
  }
}

@media (max-height: 740px) {
  .courses {
    padding-top: 76px;
    padding-bottom: 136px;
  }

  .courses-heading {
    margin-bottom: 40px;
  }

  .mode-tabs {
    margin-bottom: 38px;
  }

  .course-grid a {
    min-height: 55px;
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .vocational {
    padding-bottom: 110px;
  }

  .vocational-inner {
    padding-top: 72px;
  }

  .vocational-collage {
    top: -88px;
    height: 246px;
  }

  .vocational-lab {
    width: min(67vw, 282px);
  }

  .vocational-stadium {
    top: 58px;
    width: min(42vw, 176px);
  }

  .vocational-card {
    padding-top: 78px;
    padding-bottom: 48px;
  }

  .campus-stories {
    padding-top: 82px;
  }

  .campus-stories-heading {
    margin-bottom: 30px;
  }

  .stories-phone {
    min-height: 584px;
  }

  .story-slide h3 {
    margin-top: 52px;
    font-size: 28px;
  }

  .stories-links {
    margin-top: 28px;
  }

  .admission {
    padding-top: 116px;
    padding-bottom: 120px;
  }

  .admission-heading {
    margin-bottom: 46px;
  }

  .admission-tabs {
    margin-bottom: 70px;
  }
}

@media (min-width: 900px) {
  :root {
    --ticker-height: 24px;
  }

  html {
    scroll-padding-top: 0;
  }

  .hero {
    min-height: calc(100svh - var(--ticker-height));
    margin-top: var(--ticker-height);
    padding: 0;
    display: block;
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.68) 100%),
      url("./assets/hero-track.jpg") center top / cover no-repeat,
      #2A0BBF;
  }

  .top-marquee {
    height: var(--ticker-height);
    font-size: 16px;
  }

  .top-marquee-track {
    animation-duration: 34s;
  }

  .top-marquee-group {
    gap: 18px;
    padding-right: 18px;
  }

  .menu-control {
    top: calc(env(safe-area-inset-top, 0px) + var(--ticker-height) + 16px);
    right: 22px;
    width: 104px;
    min-height: 52px;
    grid-template-columns: 50px 50px;
  }

  body.is-past-ticker .menu-control {
    top: calc(env(safe-area-inset-top, 0px) + 16px);
  }

  .site-search-toggle,
  .menu-button {
    width: 50px;
    height: 52px;
  }

  .site-search-toggle img {
    width: 18px;
  }

  .menu-button span {
    width: 22px;
  }

  .hero .topbar {
    display: none;
  }

  .hero-actions {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    transform: none;
    pointer-events: none;
  }

  .hero-vestibular {
    position: absolute;
    left: clamp(74px, 9vw, 178px);
    top: clamp(140px, 22vh, 230px);
    width: clamp(250px, 24vw, 420px);
    pointer-events: none;
  }

  .hero-slogan {
    display: none;
  }

  .hero-slogan-desktop {
    position: absolute;
    display: block;
    right: clamp(116px, 12.6vw, 260px);
    top: clamp(250px, 42vh, 410px);
    width: clamp(104px, 9.2vw, 164px);
    pointer-events: none;
  }

  .cta-wrap {
    position: absolute;
    right: clamp(80px, 12.6vw, 226px);
    top: clamp(368px, 63vh, 560px);
    pointer-events: auto;
  }

  .cta-seal {
    top: -14px;
    right: -28px;
    width: 56px;
  }

  .outline-cta {
    min-width: 186px;
    min-height: 52px;
    padding: 0 28px;
    font-size: 16px;
  }

  .scroll-cue {
    position: absolute;
    left: 50%;
    bottom: clamp(42px, 9vh, 92px);
    width: auto;
    height: 34px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    --hero-reveal-x: -50%;
    transform: translate3d(var(--hero-reveal-x), var(--hero-reveal-y, 0), 0) scale(var(--hero-reveal-scale, 1));
    animation: none;
    pointer-events: auto;
  }

  .scroll-cue img {
    width: 22px;
    animation: scroll-cue-bounce 1.4s ease-in-out 300ms infinite;
  }

  .modalities {
    height: auto;
    background: #2A0BBF;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .modalities-stage {
    --modalities-desktop-offset: 0px;
    position: relative;
    top: auto;
    height: calc(100svh + var(--modalities-desktop-offset));
    min-height: calc(100svh + var(--modalities-desktop-offset));
    height: calc(100dvh + var(--modalities-desktop-offset));
    min-height: calc(100dvh + var(--modalities-desktop-offset));
    overflow: hidden;
    background: #2A0BBF;
  }

  .modalities-lines {
    display: none;
  }

  .modalities-heading {
    display: none;
  }

  .modalities-heading p {
    color: #fff;
    font-size: 14px;
    line-height: 1.08;
  }

  .modalities-heading strong {
    color: #fff;
    font-size: 14px;
  }

  .modalities-heading-line {
    display: block;
  }

  .modalities-dots,
  .modalities-cta,
  .modalities-scroll-markers {
    display: none;
  }

  .modality-scenes {
    position: absolute;
    inset: var(--modalities-desktop-offset) 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: 100svh;
    min-height: 100svh;
    height: 100dvh;
    min-height: 100dvh;
    pointer-events: auto;
  }

  .modality-scene {
    position: relative;
    inset: auto;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    isolation: isolate;
    background-position: center;
    background-size: cover;
    transition: filter 360ms ease;
  }

  .modality-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(9, 7, 19, 0.12), rgba(9, 7, 19, 0) 34%, rgba(9, 7, 19, 0.22));
    pointer-events: none;
    transition: background 360ms ease;
  }

  .modality-scene:hover::after {
    background: linear-gradient(to bottom, rgba(9, 7, 19, 0.12), rgba(9, 7, 19, 0) 34%, rgba(9, 7, 19, 0.22));
  }

  .modality-scene[data-scene="presencial"] {
    background-color: #2A0BBF;
    background-image: url("./assets/bg-presencial-blue.png");
  }

  .modality-scene[data-scene="semipresencial"] {
    background-color: #FF0062;
    background-image: url("./assets/bg-semipresencial-pink.png");
  }

  .modality-scene[data-scene="ead"] {
    background-color: #AE81FF;
    background-image: url("./assets/bg-ead-lilas.png");
  }

  .modality-collage,
  .modality-scene.is-active .modality-collage {
    pointer-events: auto;
    cursor: pointer;
  }

  .modality-copy {
    top: clamp(58px, 8vh, 48px);
    left: clamp(28px, 4vw, 70px);
    right: clamp(22px, 2.8vw, 46px);
    z-index: 10;
    pointer-events: none;
    transition: transform 360ms ease;
  }

  .modality-copy::before {
    content: "GRADUAÇÃO";
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-family: "RG Standard", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
  }

  .modality-scene:hover .modality-copy {
    transform: none;
  }

  .modality-copy p,
  .modality-copy h2,
  .modality-scene:not(.is-active) .modality-copy p,
  .modality-scene:not(.is-active) .modality-copy h2 {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .modality-copy h2,
  [data-scene="presencial"] .modality-copy h2 {
    font-size: clamp(16px, 1.9vw, 26px);
    line-height: 0.86;
  }

  [data-scene="semipresencial"] .modality-copy {
    top: clamp(66px, 10vh, 90px);
  }

  [data-scene="semipresencial"] .modality-copy h2 {
    font-size: clamp(16px, 1.9vw, 26px);
    line-height: 0.86;
  }

  [data-scene="ead"] .modality-copy {
    top: clamp(66px, 10vh, 90px);
  }

  [data-scene="ead"] .modality-copy h2 {
    font-size: clamp(16px, 1.9vw, 26px);
    line-height: 0.8;
  }

  .scene-asset,
  .modality-scene:not(.is-active) .scene-asset {
    opacity: 1;
    transform: none;
    transition:
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 320ms ease;
  }

  .modality-scene:hover .presencial-person,
  .modality-scene:hover .semi-person,
  .modality-scene:hover .ead-person {
    transform: translateY(-10px);
  }

  .frame-dots {
    left: 12%;
    top: 34%;
    width: 53%;
    height: auto;
    aspect-ratio: 332 / 376;
    object-fit: contain;
    z-index: 1;
  }

  .presencial-frame {
    left: 19%;
    top: 34%;
  }

  .presencial-theater {
    left: 11%;
    top: 39%;
    width: min(10vw, 118px);
  }

  .presencial-campus {
    right: 18%;
    top: 43%;
    width: min(10vw, 114px);
  }

  .presencial-pin {
    left: 12%;
    top: 70%;
    width: min(6vw, 70px);
  }

  .semi-frame {
    left: 22%;
    top: 34%;
  }

  .semi-building {
    left: 12%;
    top: 31%;
    width: min(10vw, 112px);
  }

  .semi-stadium {
    right: 15%;
    top: 53%;
    width: min(12vw, 154px);
  }

  .semi-diploma {
    right: 20%;
    top: 64%;
    width: min(5vw, 58px);
  }

  .ead-frame {
    left: 25%;
    top: 35%;
  }

  .ead-theater {
    left: 19%;
    top: 52%;
    width: min(10vw, 118px);
  }

  .ead-platform {
    right: 12%;
    top: 26%;
    width: min(9vw, 114px);
    transform: rotate(5deg);
  }

  .ead-vectors {
    left: 28%;
    top: 39%;
    width: min(7vw, 53px);
  }

  .ead-headset {
    right: 15%;
    top: 59%;
    width: min(9vw, 88px);
  }

  .ead-white-lines {
    left: 17%;
    top: 70%;
    width: min(6vw, 46px);
  }

  .ead-arrow {
    left: 20%;
    top: 72%;
    width: min(6vw, 76px);
  }

  .desktop-modality-link {
    position: absolute;
    left: 50%;
    bottom: clamp(102px, 13vh, 132px);
    z-index: 18;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transform: translateX(-50%);
    box-shadow: none;
    transition:
      color 260ms ease,
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .desktop-modality-link img {
    width: 24px;
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .modality-scene:hover .desktop-modality-link {
    color: var(--lime);
    transform: translateX(-50%);
  }

  .fixed-actions {
    display: none;
  }
}

.modalities-lines,
.modalities-heading,
.modalities-dots,
.modality-copy,
.modalities-cta,
.desktop-modality-link {
  will-change: opacity, transform;
}

.modalities-lines,
.modalities-heading,
.modalities-dots,
.modality-copy {
  transition:
    opacity 560ms ease,
    transform 760ms cubic-bezier(0.18, 0.9, 0.2, 1);
}

.modalities-cta,
.desktop-modality-link {
  transition:
    opacity 520ms ease,
    color 260ms ease,
    transform 720ms cubic-bezier(0.18, 0.9, 0.2, 1);
}

.modalities:not(.is-in-view) .modalities-lines,
.modalities:not(.is-in-view) .modalities-heading,
.modalities:not(.is-in-view) .modalities-dots,
.modalities:not(.is-in-view) .modality-copy,
.modalities:not(.is-in-view) .modalities-cta,
.modalities:not(.is-in-view) .desktop-modality-link {
  opacity: 0;
  transform: translateY(16px);
}

.modalities:not(.is-in-view) .modalities-cta,
.modalities:not(.is-in-view) .desktop-modality-link {
  transform: translateX(-50%) translateY(16px);
}

.modalities:not(.is-in-view) .scene-asset {
  opacity: 0;
  transform: translate(var(--reveal-x, 0), calc(var(--reveal-y, 18px) + 12px)) scale(var(--reveal-scale, 0.96));
  transition-delay: 0ms;
}

.modalities.is-in-view .modalities-lines {
  transition-delay: 80ms;
}

.modalities.is-in-view .modalities-heading {
  transition-delay: 130ms;
}

.modalities.is-in-view .modalities-dots {
  transition-delay: 190ms;
}

.modalities.is-in-view .modality-copy {
  transition-delay: 230ms;
}

.modalities.is-in-view .scene-asset {
  transition-delay: calc(var(--reveal-delay, 0ms) + 210ms);
}

.modalities.is-in-view .modalities-cta,
.modalities.is-in-view .desktop-modality-link {
  transition-delay: 620ms;
}

.modalities.is-reveal-complete .modalities-lines,
.modalities.is-reveal-complete .modalities-heading,
.modalities.is-reveal-complete .modalities-dots,
.modalities.is-reveal-complete .modality-copy,
.modalities.is-reveal-complete .scene-asset,
.modalities.is-reveal-complete .modalities-cta,
.modalities.is-reveal-complete .desktop-modality-link {
  transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce) {
  .modalities-lines,
  .modalities-heading,
  .modalities-dots,
  .modality-copy,
  .scene-asset,
  .modalities-cta,
  .desktop-modality-link {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .modalities-cta,
  .desktop-modality-link {
    transform: translateX(-50%);
  }
}

@media (min-width: 900px) and (max-width: 1180px) {
  .modalities-stage {
    min-height: calc(100dvh + var(--modalities-desktop-offset, 136px));
  }

  .modalities-heading {
    left: clamp(132px, 14vw, 190px);
  }

  .modality-copy {
    left: clamp(28px, 4vw, 70px);
    right: clamp(22px, 2.8vw, 46px);
  }

  .modality-copy h2,
  [data-scene="presencial"] .modality-copy h2 {
    font-size: clamp(16px, 1.9vw, 26px);
  }

  [data-scene="semipresencial"] .modality-copy h2 {
    font-size: clamp(16px, 1.9vw, 26px);
  }
}

@media (min-width: 900px) {
  html {
    scroll-snap-type: y proximity;
  }

  .menu-control.is-search-open {
    left: auto;
    right: 28px;
    width: min(34vw, 520px);
    grid-template-columns: 1fr 56px;
  }

  .site-search-input {
    font-size: 14px;
  }

  .menu-control.is-search-open .site-search-panel {
    left: 0;
    right: 0;
  }

  .courses {
    padding: clamp(96px, 8vw, 132px) clamp(96px, 10vw, 140px) clamp(104px, 8vw, 136px);
    display: grid;
    align-items: start;
  }

  .courses-inner {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    column-gap: clamp(34px, 4.5vw, 72px);
    row-gap: clamp(44px, 4.2vw, 64px);
    max-width: 1120px;
  }

  .courses-heading {
    margin: 0;
  }

  .courses-heading h2 {
    font-size: 24px;
    line-height: 0.9;
    text-align: left;
  }

  .courses-heading strong {
    font-size: 32px;
    line-height: 0.88;
  }

  .courses-heading span:last-child {
    font-size: 24px;
  }

  .courses-cap {
    top: -18px;
    left: 146px;
    width: 52px;
  }

  .mode-tabs {
    align-self: start;
    gap: 7px;
    margin: 0;
    padding-top: 8px;
  }

  .mode-tabs button {
    font-size: 16px;
    opacity: 0.34;
  }

  .mode-tabs .active {
    opacity: 1;
  }

  .course-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(18px, 2.2vw, 26px);
    row-gap: 0;
  }

  .course-grid a {
    position: relative;
    min-height: 54px;
    padding: 12px 34px 12px 0;
    align-items: flex-start;
    font-size: 20px;
    line-height: 1.05;
    transition:
      color 220ms ease,
      border-color 220ms ease,
      background-color 220ms ease,
      box-shadow 220ms ease,
      transform 220ms ease;
  }

  .course-grid a > span {
    display: block;
    min-width: 0;
    transition: color 220ms ease;
  }

  .course-grid small {
    gap: 10px;
    margin-top: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.48);
  }

  .course-grid a::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 13px;
    height: 13px;
    margin-left: 0;
    transform: translateY(-50%);
    transition:
      filter 220ms ease,
      transform 220ms ease;
  }

  .course-grid a:hover,
  .course-grid a:focus-visible {
    border-bottom-color: rgba(190, 255, 0, 0.62);
    background: linear-gradient(90deg, rgba(190, 255, 0, 0.08), rgba(190, 255, 0, 0));
    box-shadow: inset 0 -1px 0 rgba(190, 255, 0, 0.22);
    transform: translateX(4px);
  }

  .course-grid a:hover > span,
  .course-grid a:focus-visible > span {
    color: var(--lime);
  }

  .course-grid a:hover small,
  .course-grid a:focus-visible small {
    color: rgba(255, 255, 255, 0.74);
  }

  .course-grid a:hover::after,
  .course-grid a:focus-visible::after {
    filter: drop-shadow(0 0 6px rgba(190, 255, 0, 0.5));
    transform: translate(5px, -50%);
  }
}

@media (min-width: 900px) {
  .scholarships {
    padding: clamp(108px, 9vw, 142px) clamp(88px, 10vw, 140px) clamp(104px, 8vw, 132px);
  }

  .scholarships-inner {
    max-width: 1120px;
    padding: 0;
  }

  .scholarships-clips {
    top: -118px;
    left: -76px;
    width: 32px;
    margin-top: -44px;
  }

  .scholarships-lines {
    top: 0;
    left: -40px;
    width: 116px;
  }

  .scholarships-kicker {
    margin-bottom: 32px;
  }

  .scholarships-title {
    max-width: 480px;
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 0.92;
  }

  .scholarship-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(16px, 1.8vw, 22px);
    align-items: start;
  }

  .scholarship-card,
  .scholarship-card-impulsiona,
  .scholarship-card-provao,
  .scholarship-card-compact {
    min-height: 74px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
  }

  .scholarship-card-impulsiona,
  .scholarship-card-impulsiona.is-open {
    border: 1px solid rgba(255, 255, 255, 0.92);
  }

  .scholarship-card.is-open {
    border-color: var(--lime);
  }

  .scholarship-trigger,
  .scholarship-card-compact .scholarship-trigger {
    min-height: 74px;
    padding: 14px 48px 12px 18px;
    align-items: center;
    cursor: pointer;
  }

  .scholarship-toggle {
    right: 16px;
    display: block;
  }

  .scholarship-title {
    max-width: 220px;
    font-size: 12px;
    line-height: 0.92;
  }

  .scholarship-card-compact .scholarship-trigger {
    min-height: 74px;
  }

  .scholarship-card-compact .scholarship-title {
    color: inherit;
  }

  .scholarship-card.is-open .scholarship-title,
  .scholarship-card-compact.is-open .scholarship-title {
    color: var(--lime);
  }

  .scholarship-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: block;
    padding: 0 18px;
  }

  .scholarship-card.is-open .scholarship-content,
  .scholarship-card-compact.is-open .scholarship-content {
    max-height: 460px;
    opacity: 1;
    overflow: hidden;
    padding: 0 18px 20px;
  }

  .scholarship-content p,
  .scholarship-card-provao .scholarship-content p,
  .scholarship-card-compact .scholarship-content p {
    max-width: none;
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.2;
  }

  .scholarship-card-impulsiona .scholarship-content p {
    font-size: 14px;
    line-height: 1.2;
  }

  .scholarship-link {
    gap: 8px;
    margin-top: auto;
    font-size: 14px;
    line-height: 1.2;
  }

  .scholarship-link::before {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background:
      linear-gradient(currentColor, currentColor) center 3px / 5px 1px no-repeat,
      linear-gradient(currentColor, currentColor) center 6px / 5px 1px no-repeat,
      linear-gradient(currentColor, currentColor) center 9px / 5px 1px no-repeat;
  }
}

@media (min-width: 900px) {
  .vocational {
    padding: clamp(82px, 7vw, 104px) 0 clamp(76px, 7vw, 98px);
  }

  .vocational-inner {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    max-width: 1120px;
    padding-top: 0;
  }

  .vocational-collage {
    top: -34px;
    left: calc(8.333% - 84px);
    right: auto;
    width: 342px;
    height: 216px;
    z-index: 6;
  }

  .vocational-lab {
    top: 0;
    left: 0;
    width: 263px;
  }

  .vocational-stadium {
    top: 48px;
    right: auto;
    left: 188px;
    width: 165px;
  }

  .vocational-card {
    grid-column: 2 / 12;
    min-height: 178px;
    padding: 42px 54px 40px 318px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    column-gap: 40px;
    align-items: center;
    text-align: left;
  }

  .vocational-copy p {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 0.98;
  }

  .vocational-copy h2 {
    margin-bottom: 0;
    font-size: 28px;
    line-height: 0.86;
  }

  .vocational-cta {
    position: relative;
    left: auto;
    bottom: auto;
    justify-self: end;
    width: 182px;
    min-height: 56px;
    border-width: 2px;
    font-size: 14px;
    line-height: 1.2;
    transform: rotate(-1.2deg);
  }

  .vocational-cta img {
    top: -24px;
    right: -20px;
    width: 58px;
  }
}

@media (min-width: 900px) {
  .campus-stories {
    overflow-x: clip;
    overflow-y: visible;
    padding: clamp(38px, 4vw, 54px) 0 clamp(58px, 5vw, 76px);
    background:
      url("./assets/pattern-xadrez.png") top center / 100% auto repeat-y,
      #fff;
  }

  .campus-stories::before {
    display: none;
  }

  .campus-stories-inner {
    max-width: 1120px;
    display: grid;
    justify-items: center;
  }

  .campus-stories-heading {
    width: 344px;
    margin: 0 auto 18px;
  }

  .campus-stories-heading p {
    font-size: 14px;
  }

  .campus-stories-heading h2 {
    font-size: 18px;
  }

  .campus-camera {
    top: -10px;
    right: auto;
    left: calc(50% + 64px);
    width: 138px;
  }

  .story-peek {
    position: absolute;
    top: 108px;
    z-index: 1;
    display: block;
    width: 276px;
    height: 474px;
    overflow: hidden;
    border-radius: 18px;
    background: #e8f1f3;
    pointer-events: auto;
    user-select: none;
  }

  .story-peek-prev {
    left: calc(50% - 474px);
  }

  .story-peek-next {
    right: calc(50% - 474px);
  }

  .story-peek-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.5;
    filter: saturate(0.6) contrast(0.92);
    transform: scale(1);
    transition:
      opacity 340ms ease,
      filter 340ms ease,
      transform 460ms cubic-bezier(0.18, 0.9, 0.2, 1);
  }

  .story-peek-video.is-swapping {
    opacity: 0.18;
    filter: saturate(0.44) contrast(0.88);
    transform: scale(1.025);
  }

  .story-peek:hover .story-peek-video,
  .story-peek:focus-visible .story-peek-video {
    opacity: 0.36;
    filter: saturate(0.52) contrast(0.9);
  }

  .story-peek::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .story-peek-prev::after {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.18) 100%);
  }

  .story-peek-next::after {
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.18) 100%);
  }

  .stories-phone {
    z-index: 4;
    width: 344px;
    min-height: 584px;
    border-radius: 22px;
    box-shadow: 0 22px 34px rgba(9, 7, 19, 0.18);
  }

  .story-slide h3 {
    margin: 38px 24px 0;
    font-size: 28px;
  }

  .stories-links {
    z-index: 4;
    width: 344px;
    margin-top: 38px;
    padding: 16px 20px 18px;
    border-width: 1px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
  }

  .stories-link {
    font-size: 14px;
    line-height: 1.2;
  }

  .stories-link b {
    font-size: 14px;
    line-height: 1.2;
  }
}

@media (min-width: 900px) {
  .admission {
    overflow: hidden;
    padding: clamp(86px, 8vw, 112px) 0 clamp(92px, 8vw, 118px);
  }

  .admission::after {
    top: 358px;
    left: calc(50% - 470px);
    bottom: auto;
    width: 92px;
    height: 102px;
    opacity: 0.2;
  }

  .admission-inner {
    max-width: 1120px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 0;
  }

  .admission-heading {
    grid-column: 1 / 5;
    margin: 0;
    padding: 0 0 0 24px;
  }

  .admission-heading h2 {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 0.9;
  }

  .admission-heading p {
    max-width: 280px;
    font-size: 14px;
    line-height: 1.2;
  }

  .admission-tabs {
    grid-column: 6 / 9;
    gap: 14px;
    margin: 12px 0 0;
    padding: 0;
  }

  .admission-tabs button {
    font-size: 16px;
  }

  .admission-vectors {
    top: 52px;
    right: 84px;
    width: 112px;
  }

  .admission-carousel {
    grid-column: 1 / -1;
    --card-w: calc((100% - 120px) / 4);
    --admission-gutter: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 85px 40px;
    min-height: 0;
    margin: 54px 0 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
    scroll-padding: 0;
    overscroll-behavior: auto;
    touch-action: auto;
    cursor: default;
  }

  .admission-carousel:active {
    cursor: default;
  }

  .admission-carousel::before,
  .admission-carousel.is-loading::before {
    content: none;
  }

  .admission-card {
    width: var(--card-w);
    min-height: 204px;
    padding: 86px 18px 18px;
    border-width: 2px;
    border-radius: 12px;
    box-shadow: none;
    scroll-snap-align: none;
  }

  .admission-card.is-hot,
  .admission-card.is-provao,
  .admission-card.is-lime,
  .admission-card.is-blue {
    padding-top: 34px;
  }

  .admission-card.is-hot,
  .admission-card.is-provao,
  .admission-card.is-blue {
    border-color: #fff;
  }

  .admission-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 0.9;
  }

  .admission-card p {
    font-size: 14px;
    line-height: 1.2;
  }

  .admission-card[data-entry="vestibular"] .admission-icon {
    top: -32px;
    left: 10px;
    width: 112px;
  }

  .admission-card[data-entry="provao"] .admission-icon {
    top: 154px;
    left: 18px;
    width: 92px;
  }

  .admission-card[data-entry="enem"] .admission-icon {
    top: 154px;
    left: 18px;
    width: 92px;
  }

  .admission-card[data-entry="anterior"] .admission-icon {
    top: -34px;
    left: 16px;
    width: 100px;
  }

  .admission-card[data-entry="reingresso"] .admission-icon {
    top: 134px;
    left: 32px;
    width: 98px;
  }

  .admission-card[data-entry="diploma"] .admission-icon {
    top: -48px;
    left: 46px;
    width: 50px;
    transform: rotate(11deg);
  }

  .admission-card[data-entry="transferencia"] .admission-icon {
    top: 154px;
    left: 24px;
    width: 90px;
  }

  .admission-card[data-entry="vestibular"]::after {
    top: 38px;
    right: 72px;
    width: 42px;
    height: 38px;
  }

  .admission-card[data-entry="enem"]::after {
    left: 68px;
    bottom: 42px;
    width: 116px;
    height: 38px;
  }

  .admission-card[data-entry="anterior"]::after {
    top: -2px;
    right: 70px;
    width: 36px;
    height: 44px;
  }

  .admission-card[data-entry="reingresso"]::after {
    top: 150px;
    left: 18px;
    width: 50px;
    height: 46px;
  }

  .admission-card[data-entry="diploma"]::after {
    top: 30px;
    left: 58px;
    width: 82px;
    height: 38px;
  }
}

@media (min-width: 900px) {
  .life-section {
    overflow: hidden;
    min-height: 100vh;
    padding: 0;
    background:
      linear-gradient(90deg, rgba(42, 11, 191, 0.08), rgba(42, 11, 191, 0) 34%, rgba(42, 11, 191, 0.08)),
      url("./assets/bg-semipresencial-pink.png") center / cover no-repeat,
      #FF0062;
  }

  .life-inner {
    max-width: 1120px;
    min-height: 100vh;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 0;
    align-items: center;
  }

  .life-lines {
    top: 112px;
    left: 0;
    width: 112px;
  }

  .life-kicker {
    position: absolute;
    left: 48px;
    top: 118px;
    z-index: 4;
    margin: 0;
  }

  .life-title {
    position: absolute;
    left: 48px;
    top: 176px;
    z-index: 4;
    width: 310px;
    margin: 0;
    text-align: left;
    font-size: 24px;
  }

  .life-title img {
    width: 242px;
    margin: 2px 0 0;
  }

  .life-photo-slider {
    grid-column: 5 / 9;
    grid-row: 1 / 4;
    align-self: center;
    justify-self: center;
    width: clamp(300px, 42vh, 344px);
    height: auto;
    aspect-ratio: 344 / 584;
    min-height: 0;
    border-radius: 14px;
  }

  .life-slide-lines {
    top: 46px;
    right: -36px;
    width: 118px;
  }

  .life-slide-copy {
    top: 38px;
    left: 22px;
  }

  .life-slide-copy strong {
    font-size: 28px;
  }

  .life-highlights {
    display: contents;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  .life-highlights article {
    position: absolute;
    width: min(100%, 255px);
    padding-left: 20px;
    border-left-color: var(--lime);
    background: transparent;
  }

  .life-highlights article:nth-child(1) {
    left: 64px;
    top: 50%;
    margin: 0;
    transform: translateY(-6px);
  }

  .life-highlights article:nth-child(2) {
    left: 64px;
    top: 50%;
    margin: 0;
    transform: translateY(124px);
  }

  .life-highlights article:nth-child(3) {
    right: 64px;
    top: 50%;
    margin: 0;
    transform: translateY(-16px);
  }

  .life-highlights article:nth-child(4) {
    right: 64px;
    top: 50%;
    margin: 0;
    transform: translateY(114px);
  }

  .life-highlights article span {
    color: var(--lime);
    font-size: 14px;
    line-height: 1.2;
  }

  .life-highlights article p {
    color: #fff;
    font-size: 18px;
    line-height: 1.12;
  }

  .life-highlights article p strong {
    color: var(--lime);
    font-weight: 900;
  }

  .life-highlights article small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.2;
  }
}

@media (min-width: 900px) {
  .testimonials {
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    padding: 76px 0 104px;
    background:
      url("./assets/pattern-xadrez.png") top center / 100% auto repeat-y,
      #fff;
  }

  .testimonials-divider-decor {
    top: -56px;
    right: auto;
    left: calc(50% + 236px);
    width: 166px;
    height: 210px;
  }

  .testimonials-divider-lines {
    top: 24px;
    left: 0;
    width: 72px;
  }

  .testimonials-divider-arrow {
    top: 38px;
    right: auto;
    left: 48px;
    width: 86px;
  }

  .testimonials-divider-vectors {
    top: 158px;
    right: auto;
    left: 76px;
    width: 114px;
  }

  .testimonials::before,
  .testimonials::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 4;
    width: min(20vw, 260px);
    height: 100%;
    pointer-events: none;
  }

  .testimonials::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }

  .testimonials::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }

  .testimonials-inner {
    --testimonial-phone-height: clamp(560px, 74vh, 664px);
    --testimonial-peek-height: clamp(430px, 60vh, 540px);
    max-width: 1120px;
    min-height: 650px;
    padding: 0;
  }

  .testimonials-heading {
    position: absolute;
    top: 0;
    left: 48px;
    z-index: 6;
    margin: 0;
  }

  .testimonials-heading::before {
    content: "";
    position: absolute;
    left: -50px;
    top: -16px;
    z-index: 0;
    width: 132px;
    height: 52px;
    background: #2A0BBF;
    -webkit-mask: url("./assets/bolsas-tracinhos.svg") center / contain no-repeat;
    mask: url("./assets/bolsas-tracinhos.svg") center / contain no-repeat;
    opacity: 1;
    pointer-events: none;
    user-select: none;
  }

  .testimonials-heading img {
    display: none;
  }

  .testimonials-heading h2 {
    position: relative;
    z-index: 1;
    font-size: 14px;
  }

  .testimonial-phone {
    width: clamp(330px, 29vw, 390px);
    height: var(--testimonial-phone-height);
    min-height: 0;
    margin: 78px auto 0;
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(9, 7, 19, 0.22);
  }

  .testimonial-slide h2 {
    top: 44px;
    left: 26px;
    font-size: 28px;
  }

  .testimonial-lines {
    top: 48px;
    right: -42px;
    width: 118px;
  }

  .testimonial-peek {
    position: absolute;
    top: calc(18px + (var(--testimonial-phone-height) - var(--testimonial-peek-height)) / 2);
    z-index: 1;
    display: block;
    overflow: hidden;
    width: clamp(280px, 25vw, 314px);
    height: var(--testimonial-peek-height);
    min-height: 0;
    border: 0;
    border-radius: 16px;
    background: #eef6f6;
    box-shadow: none;
    outline: 0;
    pointer-events: auto;
    cursor: pointer;
  }

  .testimonial-peek:focus,
  .testimonial-peek:focus-visible {
    border: 0;
    outline: 0;
    box-shadow: none;
  }

  .testimonial-peek::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .testimonial-peek-prev {
    left: calc(50% - 540px);
  }

  .testimonial-peek-prev::after {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.18) 100%);
  }

  .testimonial-peek-next {
    right: calc(50% - 540px);
  }

  .testimonial-peek-next::after {
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.42) 72%, rgba(255, 255, 255, 0.18) 100%);
  }

  .testimonial-peek-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.5;
    filter: saturate(0.6) contrast(0.92);
    transform: scale(1);
    transition:
      opacity 340ms ease,
      filter 340ms ease,
      transform 460ms cubic-bezier(0.18, 0.9, 0.2, 1);
  }

  .testimonial-peek-video.is-swapping {
    opacity: 0.18;
    filter: saturate(0.44) contrast(0.88);
    transform: scale(1.025);
  }

  .testimonial-peek:hover .testimonial-peek-video,
  .testimonial-peek:focus-visible .testimonial-peek-video {
    opacity: 0.36;
    filter: saturate(0.52) contrast(0.9);
  }
}

@media (min-width: 900px) {
  .newsletter {
    overflow: visible;
    padding: 48px 0 64px;
    background: #082BCD;
  }

  .newsletter-inner {
    position: relative;
    max-width: 1120px;
    min-height: 0;
    margin: 0 auto;
    padding: 0 24px;
  }

  .newsletter-pin {
    top: -36px;
    right: 88px;
    z-index: 4;
    width: 116px;
  }

  .newsletter-lines {
    top: 24px;
    left: 42px;
    width: 112px;
    opacity: 0.2;
  }

  .newsletter p {
    position: absolute;
    top: 40px;
    left: 92px;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-size: 14px;
  }

  .newsletter-content {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 24px;
  }

  .newsletter h2 {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 0 0 10px;
    padding: 0 25px;
    font-size: 28px;
    line-height: 0.92em;
  }

  .newsletter-form {
    display: none;
  }

  .newsletter-iframe {
    height: 328px;
    min-height: 328px;
  }

  .parents {
    overflow-x: clip;
    overflow-y: visible;
    padding: 0;
    background: #20069C;
  }

  .parents-inner {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    max-width: 1120px;
    min-height: 640px;
    margin: 0 auto;
    padding: 0 0 120px;
  }

  .parents-clips {
    top: -24px;
    left: -118px;
    width: 38px;
  }

  .parents-lines {
    top: 110px;
    left: 42px;
    width: 112px;
    opacity: 0.2;
  }

  .parents-copy {
    position: absolute;
    top: 124px;
    left: 92px;
    z-index: 3;
    width: 340px;
  }

  .parents-kicker {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    margin: 0 0 24px;
    font-size: 14px;
  }

  .parents-kicker strong {
    display: inline;
  }

  .parents-kicker span {
    display: block;
    color: #fff;
  }

  .parents-copy h2,
  .parents h2 {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    width: auto;
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 0.94em;
  }

  .parents-intro {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    width: auto;
    max-width: none;
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.4em;
  }

  .parents-whatsapp {
    position: relative;
    top: auto;
    left: auto;
    z-index: 3;
    display: inline-flex;
    margin: 0;
  }

  .parents-list {
    position: relative;
    grid-column: 1 / -1;
    justify-self: end;
    align-self: start;
    z-index: 2;
    width: 462px;
    margin: 136px 86px 0 0;
  }

  .parents-list .faq-question,
  .parents-list button {
    min-height: 40px;
    padding: 8px 28px 8px 0;
    border-bottom-color: rgba(255, 255, 255, 0.16);
    font-size: 16px;
  }

  .parents-list .faq-question::after,
  .parents-list button::after {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    color: transparent;
    background: url("./assets/arrow-right-cursos.svg") center / contain no-repeat;
    transform: translateY(-50%);
  }

  .parents-list .faq-item.is-open .faq-question::after {
    content: "";
    background: url("./assets/arrow-right-cursos.svg") center / contain no-repeat;
    transform: translateY(-50%) rotate(90deg);
  }

  .parents-vectors {
    display: block;
    left: 172px;
    bottom: -64px;
    z-index: 4;
    width: 78px;
  }

  .parents-photo {
    right: -22px;
    bottom: -108px;
    width: 272px;
  }
}

@media (min-width: 900px) {
  .final-info {
    overflow: hidden;
    padding: 156px 0 96px;
    background: #fff;
  }

  .final-info-inner {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    max-width: 1120px;
    padding: 0;
  }

  .final-lines {
    top: -18px;
    left: 42px;
    width: 112px;
    opacity: 0.2;
  }

  .final-lines.scroll-reveal.is-revealed {
    opacity: 0.2;
  }

  .final-kicker {
    grid-column: 2 / 5;
    grid-row: 1;
    align-self: start;
    margin: 0;
    font-size: 14px;
  }

  .final-kicker strong,
  .final-kicker span {
    color: #2A0BBF;
  }

  .final-modalities {
    grid-column: 2 / 5;
    grid-row: 1;
    align-self: start;
    gap: 12px;
    margin: 76px 0 0;
    font-size: 16px;
  }

  .final-modalities button {
    color: rgba(42, 11, 191, 0.26);
  }

  .final-modalities button.active {
    color: #2A0BBF;
  }

  .faq-list {
    grid-column: 6 / 12;
    grid-row: 1 / 3;
    display: block;
    align-self: start;
  }

  .faq-item {
    min-height: 0;
    border-bottom-color: rgba(42, 11, 191, 0.18);
  }

  .final-info .faq-question {
    min-height: 0;
    padding: 12px 30px 12px 0;
    font-size: 18px;
    line-height: 1.1;
  }

  .final-info .faq-question::after {
    width: 13px;
    height: 13px;
  }

  .faq-answer {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.22;
  }
}

@media (min-width: 900px) {
  .site-footer {
    min-height: 386px;
    padding: 102px 0 130px;
  }

  .site-footer-inner {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    max-width: 1120px;
    padding: 0;
    text-align: left;
  }

  .footer-slogan {
    grid-column: 2 / 4;
    grid-row: 1;
    justify-self: start;
    width: 118px;
    margin: 0;
  }

  .footer-logo {
    grid-column: 4 / 7;
    grid-row: 1;
    justify-self: start;
    width: 112px;
    margin: 6px 0 0;
  }

  .site-footer address {
    grid-column: 4 / 8;
    grid-row: 1;
    gap: 7px;
    margin: 54px 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    line-height: 1.2;
  }

  .site-footer address .footer-contact-line {
    justify-content: flex-start;
  }

  .site-footer address .footer-address-extra {
    padding-left: 15px;
  }

  .site-footer address img {
    width: 10px;
    margin-right: 0;
  }

  .footer-socials {
    grid-column: 4 / 8;
    grid-row: 1;
    justify-content: flex-start;
    gap: 13px;
    margin-top: 160px;
  }

  .footer-socials a {
    width: 40px;
    height: 40px;
  }

  .footer-socials img {
    max-width: 16px;
    max-height: 16px;
  }

  .footer-mec {
    grid-column: 9 / 13;
    grid-row: 1;
    justify-content: flex-start;
    gap: 26px;
    max-width: none;
    margin: 34px 0 0;
  }

  .footer-mec img {
    width: 98px;
  }

  .footer-mec p {
    max-width: 224px;
    font-size: 20px;
    line-height: 1.06;
  }

  .fixed-actions {
    display: flex;
    grid-template-columns: none;
    justify-content: center;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 8px 0;
  }

  .fixed-actions a {
    min-height: 46px;
  }

  .fixed-signup {
    width: 305px;
    padding: 0 28px;
    justify-content: space-between;
  }

  .fixed-whatsapp {
    width: 88px;
  }
}


.parents-intro {
  position: relative;
  z-index: 2;
  max-width: 34em;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.4em;
  color: rgba(255, 255, 255, 0.88);
}

.parents-list .faq-item {
  border-bottom: 0;
}

.parents-list .faq-question {
  width: 100%;
  min-height: 30px;
  padding: 6px 22px 6px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: 16px;
  line-height: 1.1;
  position: relative;
}

.parents-list .faq-question::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: url("./assets/arrow-right-cursos.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.parents-list .faq-item.is-open .faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-answer-body {
  min-height: 0;
  overflow: hidden;
}

.parents-list .faq-answer {
  color: rgba(255, 255, 255, 0.82);
}

.parents-list .faq-answer-body {
  padding-top: 8px;
}

.parents-list .faq-answer p {
  margin: 0;
  padding: 0 22px 12px 0;
  font-size: 14px;
  line-height: 1.4em;
}

.parents-whatsapp {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 32px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--lime);
  color: #20069C;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.parents-whatsapp img {
  width: 20px;
  height: 20px;
}



.course-modal[data-variant="text-only"] .course-modal-meta,
.course-modal[data-variant="text-only"] .course-modal-actions {
  display: none;
}

.course-modal[data-variant="text-only"] .course-modal-inner > p {
  max-width: 36em;
}

@media (max-width: 899px) {
  .presencial-person {
    left: auto;
    right: 33%;
    top: 27%;
    width: clamp(290px, 82%, 600px);
  }

  .semi-person {
    left: auto;
    right: 30%;
    top: 24%;
    width: clamp(290px, 82%, 600px);
  }

  .ead-person {
    left: auto;
    right: 31%;
    top: 24%;
    width: clamp(290px, 82%, 600px);
  }

  .modality-collage {
    overflow: hidden;
  }
}

@media (min-width: 900px) {
  .presencial-person {
    right: 35%;
    top: 21%;
    width: clamp(291px, 74%, 530px);
  }

  .semi-person {
    right: 30%;
    top: 20%;
    width: clamp(305px, 83%, 582px);
  }

  .ead-person {
    right: 26%;
    top: 20%;
    width: clamp(299px, 78%, 611px);
  }

  .hero-slogan-desktop {
    width: clamp(135px, 16vw, 220px);
  }
}

body.signup-modal-open {
  overflow: hidden;
}

body.signup-modal-open .fixed-actions,
body.signup-modal-open .menu-control {
  opacity: 0;
  pointer-events: none;
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 7, 19, 0.72);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    visibility 0s linear 220ms;
}

.signup-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 220ms ease;
}

.signup-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  cursor: pointer;
}

.signup-modal-close img {
  width: 18px;
}

.signup-modal-inner {
  position: relative;
  width: min(100%, 420px);
  padding: 40px 32px;
  border-radius: 24px;
  background: #2A0BBF;
  color: #fff;
  text-align: center;
}

.signup-modal-inner h2 {
  margin: 0 0 32px;
  font-family: "Antique Olive Std", "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1em;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-modal-actions {
  display: grid;
  gap: 16px;
}

.signup-modal-link {
  min-height: 56px;
  padding: 16px 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-family: "RG Standard", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1em;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.signup-modal-link:hover,
.signup-modal-link:focus-visible {
  border-color: var(--lime);
  background: rgba(190, 255, 0, 0.12);
  transform: translateY(-2px);
}

.minusculo {
  text-transform: lowercase;
}
