:root {
  --ink: #071b3a;
  --text: #1e2a3a;
  --muted: #617086;
  --faint: #edf3f8;
  --soft: #f5f8fb;
  --paper: #ffffff;
  --line: #dce7f0;
  --blue: #0a45c2;
  --blue-soft: #eaf2ff;
  --teal: #0e8b9a;
  --teal-soft: #e7f7f8;
  --sand: #f8f4ea;
  --green: #25795a;
  --red: #c95d4d;
  --shadow: 0 18px 44px rgba(7, 27, 58, 0.08);
  --radius: 8px;
  --max: 1120px;
  --header: 88px;
}

@font-face {
  font-family: "Boxicons";
  src: url("../assets/fonts/boxicons.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.bx {
  font-family: "Boxicons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-rendering: auto;
}

.bx-message-rounded-dots::before {
  content: "\eada";
}

.bx-rocket::before {
  content: "\eb48";
}

.bx-user::before {
  content: "\ebbf";
}

.bx-search::before {
  content: "\eb54";
}

.bx-star::before {
  content: "\eb83";
}

.bx-compass::before {
  content: "\e9e1";
}

.bx-target-lock::before {
  content: "\eb99";
}

.bx-walk::before {
  content: "\ebd3";
}

.bx-refresh::before {
  content: "\eb37";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

button,
textarea,
input {
  font: inherit;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.75rem, 5.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  margin-bottom: 18px;
}

ul,
ol {
  margin-top: 0;
}

li + li {
  margin-top: 8px;
}

:focus-visible {
  outline: 3px solid rgba(10, 69, 194, 0.22);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.course-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto auto auto minmax(220px, 1fr) auto;
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
  height: var(--header);
  width: 100%;
  margin: 0;
  padding: 0 clamp(36px, 5.2vw, 72px);
  border-bottom: 1px solid rgba(220, 231, 240, 0.92);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.course-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.08;
}

.course-brand span:last-child,
.course-unit {
  display: grid;
  gap: 4px;
}

.course-brand strong,
.course-unit strong {
  font-weight: 820;
}

.course-brand small,
.course-unit small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 620;
  text-transform: none;
}

.brand-symbol {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 7px;
  background:
    linear-gradient(135deg, transparent 47%, #ffffff 48% 55%, transparent 56%),
    linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: inset 0 0 0 1px rgba(7, 27, 58, 0.12);
}

.header-separator {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.course-unit {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.08;
}

.course-progress {
  justify-self: start;
  display: grid;
  grid-template-columns: 1fr;
  width: min(260px, 28vw);
  min-width: 190px;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.course-progress span strong {
  color: var(--ink);
  font-weight: 800;
}

.course-progress div {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6edf5;
}

.course-progress div span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.menu-button {
  justify-self: end;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  border-radius: 99px;
  background: var(--ink);
}

.section-menu {
  position: fixed;
  z-index: 120;
  top: calc(var(--header) + 12px);
  right: clamp(36px, 5.2vw, 72px);
  display: grid;
  width: min(330px, calc(100vw - 48px));
  max-height: calc(100vh - var(--header) - 24px);
  padding: 16px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.section-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.section-menu a:hover,
.section-menu a.active {
  color: var(--ink);
  background: var(--blue-soft);
}

.lesson-section {
  position: relative;
  min-height: calc(100vh - var(--header));
  scroll-margin-top: var(--header);
  padding: 104px max(32px, calc((100vw - var(--max)) / 2));
}

.lesson-section + .lesson-section {
  border-top: 1px solid rgba(220, 231, 240, 0.75);
}

.lesson-section.snap-entering .reveal.is-visible {
  animation: sectionEnter 560ms cubic-bezier(0.2, 0.7, 0.22, 1) both;
}

.lesson-section.snap-leaving .reveal.is-visible {
  animation: sectionExit 360ms ease both;
}

.soft-band {
  background: var(--soft);
}

.short-section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.lesson-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 72px;
  align-items: center;
}

.narrow {
  max-width: 820px;
}

.section-title {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-title p:last-child,
.narrow > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-subtitle {
  max-width: 520px;
  margin-bottom: 16px;
  color: #2d5f78;
  font-size: 0.98rem;
  font-weight: 760;
}

.lead {
  max-width: 620px;
  color: #253b57;
  font-size: 1.15rem;
}

.hero-section {
  min-height: calc(100vh - var(--header));
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 9vh, 112px) clamp(42px, 6.8vw, 128px) clamp(42px, 6vh, 76px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0 31%, rgba(255, 255, 255, 0.84) 46%, rgba(255, 255, 255, 0.18) 72%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(7, 27, 58, 0.04)),
    url("../assets/images/hero2.png") center top / cover no-repeat;
  background-attachment: fixed;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26vh;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.82));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(360px, 0.38fr) minmax(0, 0.62fr);
  align-items: center;
  gap: clamp(34px, 5vw, 88px);
}

.section-next {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(18px, 3vh, 30px);
  display: grid;
  width: 58px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: rgba(7, 27, 58, 0.44);
  background: transparent;
  box-shadow: none;
  opacity: 0.74;
  transform: translateX(-50%);
  animation: nextPulse 2.4s ease-in-out infinite;
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

.section-next svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-next:hover {
  color: rgba(7, 27, 58, 0.74);
  opacity: 1;
  transform: translateX(-50%) translateY(-3px);
}

@keyframes nextPulse {
  0%,
  100% {
    opacity: 0.52;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.86;
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes sectionEnter {
  from {
    opacity: 0.86;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sectionExit {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0.78;
    transform: translateY(-10px);
  }
}

.hero-copy {
  position: relative;
  top: calc(-1 * clamp(42px, 6vh, 64px));
  max-width: 560px;
}

.hero-kicker {
  position: relative;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
}

.hero-copy .button {
  margin-top: 30px;
}

.hero-animation {
  position: relative;
  display: grid;
  min-height: clamp(430px, 66vh, 680px);
  place-items: end center;
  pointer-events: none;
}

.lottie-stage {
  position: relative;
  z-index: 1;
  width: min(820px, 58vw);
  max-width: 100%;
  aspect-ratio: 4 / 3;
  transform: translateX(-24px);
}

.lottie-stage svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.lottie-fallback {
  position: absolute;
  right: 7%;
  bottom: 5%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(18px, 2vw, 32px);
  width: min(680px, 54vw);
  min-height: 300px;
  opacity: 0.32;
}

.lottie-fallback span {
  position: relative;
  width: clamp(42px, 5vw, 70px);
  height: clamp(210px, 28vw, 350px);
  border: 4px solid #071b3a;
  border-top: 0;
  border-radius: 18px 18px 10px 10px;
}

.lottie-fallback span::before {
  content: "";
  position: absolute;
  top: -52px;
  left: 50%;
  width: 44px;
  height: 44px;
  border: 4px solid #071b3a;
  border-radius: 50%;
  transform: translateX(-50%);
}

.lottie-fallback span:nth-child(2),
.lottie-fallback span:nth-child(4) {
  height: clamp(190px, 25vw, 320px);
}

.lottie-stage.is-ready + .lottie-fallback {
  display: none;
}

.button-icon {
  width: 18px;
  height: 18px;
  margin-left: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-facts {
  display: none;
  grid-template-columns: minmax(108px, 0.62fr) minmax(188px, 1fr) minmax(178px, 0.9fr);
  gap: 18px;
  max-width: 590px;
  margin-top: 28px;
}

.hero-fact {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
}

.hero-fact + .hero-fact {
  padding-left: 18px;
  border-left: 1px solid rgba(97, 112, 134, 0.2);
}

.hero-fact-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--teal);
}

.hero-fact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-fact small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-fact strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.3;
}

.lesson-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.lesson-meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(10, 69, 194, 0.2);
}

.button.hero-start-button {
  position: relative;
  isolation: isolate;
  min-height: 42px;
  padding: 12px 24px 12px 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, #35485e 0%, #22344a 58%, #17263a 100%);
  box-shadow: 0 14px 24px rgba(23, 38, 58, 0.24), 0 4px 9px rgba(23, 38, 58, 0.18);
  font-size: 0.86rem;
  font-weight: 820;
}

.button.hero-start-button::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: radial-gradient(circle at 28% 0%, rgba(255, 255, 255, 0.24), transparent 38%);
  opacity: 0.72;
  transition: opacity 160ms ease, transform 160ms ease;
}

.button.hero-start-button > * {
  position: relative;
  z-index: 1;
}

.button.hero-start-button .button-icon {
  width: 16px;
  height: 16px;
  margin-left: 14px;
  transition: transform 160ms ease;
}

.button.hero-start-button:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 48%),
    linear-gradient(135deg, #40566f 0%, #2a3f58 58%, #1c2d43 100%);
  box-shadow: 0 18px 30px rgba(23, 38, 58, 0.3), 0 8px 14px rgba(23, 38, 58, 0.2);
}

.button.hero-start-button:hover::after {
  opacity: 1;
  transform: translateX(6px);
}

.button.hero-start-button:hover .button-icon {
  transform: translateX(4px);
}

.button.hero-start-button:active {
  transform: translateY(0);
  box-shadow: 0 10px 18px rgba(23, 38, 58, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button.ghost {
  color: var(--red);
  background: transparent;
  border-color: rgba(201, 93, 77, 0.38);
}

.hero-figure,
.photo-frame {
  margin: 0;
}

.hero-photo-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--faint);
  box-shadow: var(--shadow);
}

.hero-photo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 38%),
    linear-gradient(180deg, transparent 54%, rgba(7, 27, 58, 0.36));
  pointer-events: none;
}

.hero-photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.hero-photo-panel figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 3px;
  max-width: 340px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(7, 27, 58, 0.58);
  backdrop-filter: blur(10px);
}

.hero-photo-panel figcaption strong {
  font-size: 0.95rem;
}

.hero-photo-panel figcaption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.image-placeholder {
  min-height: 430px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(7, 27, 58, 0.18)),
    linear-gradient(135deg, #dbe8f1, #edf5fa 38%, #94aebd);
  box-shadow: var(--shadow);
}

.image-placeholder span {
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(7, 27, 58, 0.72);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.calm-landscape {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(7, 27, 58, 0.2)),
    radial-gradient(ellipse at 72% 28%, rgba(255, 255, 255, 0.9) 0 6%, transparent 7%),
    linear-gradient(145deg, #e7f0f7 0 24%, #b7cbd9 25% 45%, #7c98a8 46% 64%, #38576a 65% 100%);
}

.compass-image {
  background:
    radial-gradient(circle at 52% 46%, rgba(255, 255, 255, 0.8) 0 8%, transparent 9%),
    linear-gradient(135deg, #f4efe2, #d3c3a7 42%, #6c7f82);
}

.reading-block {
  max-width: 720px;
}

.reading-block p {
  color: #34445d;
  font-size: 1.04rem;
}

#carreira {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: center;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: clamp(42px, 5vw, 96px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 252, 0.92)),
    var(--soft);
}

#carreira .lesson-grid {
  width: 100%;
  min-height: calc(100vh - var(--header));
  grid-template-columns: minmax(430px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: stretch;
}

#carreira .section-next {
  top: calc(100vh - var(--header) - 62px);
  bottom: auto;
  left: 74%;
  color: rgba(7, 27, 58, 0.62);
  filter: drop-shadow(0 5px 14px rgba(255, 255, 255, 0.76));
}

#carreira .reading-block {
  max-width: 720px;
  align-self: center;
  display: grid;
  padding-top: clamp(30px, 4.8vh, 58px);
  padding-bottom: clamp(30px, 4.8vh, 58px);
}

#carreira .reading-block h2 {
  max-width: none;
  margin-top: 0;
  margin-bottom: clamp(38px, 6.6vh, 68px);
  font-size: clamp(2.55rem, 3vw, 3.6rem);
  white-space: normal;
}

#carreira .reading-block p {
  max-width: 640px;
  color: #273b59;
  font-size: clamp(0.98rem, 0.95vw, 1.04rem);
  line-height: 1.66;
}

#carreira .think-box {
  display: grid;
  grid-template-columns: 62px 1px 1fr;
  column-gap: 20px;
  row-gap: 6px;
  align-items: center;
  max-width: 620px;
  margin-top: clamp(44px, 7.6vh, 82px);
  padding: 18px 26px;
  border-color: rgba(14, 139, 154, 0.2);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(7, 27, 58, 0.06);
  backdrop-filter: blur(10px);
}

#carreira .think-box::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e8b9a' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M12 2a7 7 0 0 0-4 12.7V17h8v-2.3A7 7 0 0 0 12 2Z'/%3E%3Cpath d='M9.5 10.5h5'/%3E%3Cpath d='M12 8v5'/%3E%3C/svg%3E") center / 30px 30px no-repeat,
    rgba(14, 139, 154, 0.12);
  grid-row: 1 / span 2;
}

#carreira .think-box::after {
  content: "";
  width: 1px;
  height: 58px;
  background: rgba(14, 139, 154, 0.28);
  grid-column: 2;
  grid-row: 1 / span 2;
}

#carreira .think-box strong {
  grid-column: 3;
  color: var(--teal);
  margin-bottom: 0;
  font-size: 0.9rem;
}

#carreira .think-box p {
  grid-column: 3;
  font-size: 0.82rem;
  line-height: 1.55;
}

.concept-note {
  position: relative;
  min-height: 100%;
  height: 100%;
  align-self: center;
  display: grid;
  align-content: stretch;
  overflow: hidden;
  padding: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  border-color: rgba(14, 139, 154, 0.22);
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 27, 58, 0.11);
}

.concept-note > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.concept-note::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 34%, rgba(255, 255, 255, 0.72) 57%, rgba(255, 255, 255, 0.96) 100%),
    linear-gradient(180deg, rgba(234, 246, 249, 0.56), rgba(255, 255, 255, 0.08));
}

.concept-note-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(66%, 590px);
  margin-left: auto;
  padding: clamp(34px, 5vh, 64px) 38px clamp(34px, 5vh, 64px) 70px;
}

.concept-note h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
}

.concept-note .visual-note-lead {
  max-width: 430px;
  margin-bottom: 20px;
  color: #314767;
  font-size: 0.92rem;
}

.concept-interactive {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  min-height: min(330px, 45vh);
}

.concept-radio {
  display: none;
}

.concept-steps {
  position: relative;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  justify-items: center;
}

.concept-steps::before {
  content: "";
  position: absolute;
  top: 29px;
  bottom: 29px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--teal) 12% 88%, transparent);
  transform: translateX(-50%);
}

.concept-icon {
  position: relative;
  z-index: 1;
  align-self: center;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(7, 27, 58, 0.13);
  cursor: pointer;
  grid-row: auto;
  transition: color 160ms ease, transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.concept-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(14, 139, 154, 0.14);
  opacity: 0;
  transform: scale(0.72);
  animation: iconPrompt 2.4s ease-in-out infinite;
}

#concept-input-objetiva:checked ~ .concept-steps [for="concept-input-objetiva"],
#concept-input-subjetiva:checked ~ .concept-steps [for="concept-input-subjetiva"],
#concept-input-contextual:checked ~ .concept-steps [for="concept-input-contextual"] {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 16px 32px rgba(14, 139, 154, 0.28);
}

#concept-input-objetiva:checked ~ .concept-steps [for="concept-input-objetiva"]::before,
#concept-input-subjetiva:checked ~ .concept-steps [for="concept-input-subjetiva"]::before,
#concept-input-contextual:checked ~ .concept-steps [for="concept-input-contextual"]::before,
.concept-icon:hover::before {
  opacity: 1;
}

.concept-icon:hover {
  transform: scale(1.05);
}

.concept-icon::after {
  content: "clique";
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  padding-left: 34px;
  color: rgba(7, 27, 58, 0.46);
  background:
    linear-gradient(90deg, transparent 0, rgba(7, 27, 58, 0.42) 0 18px, transparent 18px) left center / 25px 1px no-repeat;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.38;
  transform: translateY(-50%);
  animation: clickHint 3.4s ease-in-out infinite;
}

#concept-input-objetiva:checked ~ .concept-steps [for="concept-input-objetiva"]::after,
#concept-input-subjetiva:checked ~ .concept-steps [for="concept-input-subjetiva"]::after,
#concept-input-contextual:checked ~ .concept-steps [for="concept-input-contextual"]::after {
  content: none;
}

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

.concept-cards {
  position: relative;
  min-height: min(330px, 45vh);
}

.concept-card {
  position: absolute;
  right: 0;
  left: 0;
  display: grid;
  gap: 10px;
  min-height: 104px;
  padding: 22px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(7, 27, 58, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.concept-card[data-concept-card="objetiva"] {
  top: 0;
}

.concept-card[data-concept-card="subjetiva"] {
  top: 50%;
  transform: translateY(calc(-50% + 8px)) scale(0.98);
}

.concept-card[data-concept-card="contextual"] {
  bottom: 0;
}

#concept-input-objetiva:checked ~ .concept-cards [data-concept-card="objetiva"],
#concept-input-subjetiva:checked ~ .concept-cards [data-concept-card="subjetiva"],
#concept-input-contextual:checked ~ .concept-cards [data-concept-card="contextual"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

#concept-input-subjetiva:checked ~ .concept-cards [data-concept-card="subjetiva"] {
  transform: translateY(-50%) scale(1);
}

.concept-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 840;
}

.concept-card p {
  margin: 0;
  color: #4b5c75;
  font-size: 0.86rem;
  line-height: 1.55;
}

@keyframes iconPrompt {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.72);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.12);
  }
}

@keyframes clickHint {
  0%,
  100% {
    opacity: 0.28;
    transform: translateY(-50%) translateX(0);
  }

  50% {
    opacity: 0.64;
    transform: translateY(-50%) translateX(4px);
  }
}

#objetivos {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(44px, 7vh, 96px);
  padding-right: clamp(72px, 8vw, 160px);
  padding-bottom: clamp(44px, 7vh, 96px);
  padding-left: clamp(72px, 8vw, 160px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.84) 0 40%, rgba(255, 255, 255, 0.68) 100%);
}

#objetivos::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    url("../assets/images/bgs-padrao/5.jpg") center / cover no-repeat;
  transform: scaleX(-1);
}

#objetivos::after {
  content: none;
}

.objective-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(42px, 5vw, 80px);
  align-items: start;
}

.objective-intro {
  max-width: 540px;
  padding-top: 18px;
}

.objective-intro .section-kicker {
  margin-bottom: 40px;
}

.objective-intro .section-kicker::after,
.objective-intro h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin-top: 26px;
  background: rgba(14, 139, 154, 0.72);
}

.objective-intro h2 {
  max-width: none;
  margin-bottom: 34px;
  font-size: clamp(3rem, 3.8vw, 4.15rem);
  line-height: 1.16;
  white-space: nowrap;
}

.objective-intro p:last-child {
  max-width: 500px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.45rem);
  line-height: 1.6;
}

.objective-layout .learning-list {
  counter-reset: objective;
  display: grid;
  gap: clamp(10px, 1.6vh, 16px);
  padding: 0;
  border-top: 0;
}

.objective-layout .learning-list li {
  counter-increment: objective;
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 28px;
  align-items: center;
  min-height: clamp(74px, 11vh, 92px);
  padding: clamp(15px, 2vh, 22px) 32px;
  border: 1px solid rgba(220, 231, 240, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(7, 27, 58, 0.06);
  color: #2e4567;
  font-size: clamp(1.02rem, 1.25vw, 1.28rem);
  line-height: 1.32;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.objective-layout .learning-list li::before {
  content: counter(objective);
  position: static;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(14, 139, 154, 0.76);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal);
  box-shadow: none;
  font-size: 1.05rem;
  font-weight: 830;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.objective-layout .learning-list li::after {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 108px;
  width: 1px;
  background: rgba(14, 139, 154, 0.18);
}

.objective-layout .learning-list li:hover {
  transform: translateX(8px) translateY(-3px);
  border-color: rgba(14, 139, 154, 0.3);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 46px rgba(7, 27, 58, 0.11);
}

.objective-layout .learning-list li:hover::before {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
  transform: scale(1.06);
}

.think-box,
.practice-box,
.inline-feedback,
.explanation-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 26px rgba(7, 27, 58, 0.05);
}

.think-box,
.practice-box {
  margin-top: 28px;
  padding: 20px;
}

.think-box {
  background: var(--blue-soft);
}

.practice-box {
  background: var(--teal-soft);
}

.think-box strong,
.practice-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.think-box p,
.practice-box p,
.inline-feedback p {
  margin-bottom: 0;
}

.visual-note {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.concept-note {
  align-self: stretch;
  display: grid;
  align-content: center;
}

.visual-note-lead {
  margin-bottom: 28px;
  color: var(--muted);
}

.visual-note dl {
  display: grid;
  gap: 22px;
  margin: 0;
}

.visual-note dt {
  color: var(--ink);
  font-weight: 800;
}

.visual-note dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.concept-note dl div {
  padding-left: 18px;
  border-left: 3px solid var(--teal);
}

#carreira .concept-note {
  align-self: start;
  align-content: stretch;
  padding: 0;
  border-radius: 0;
}

#carreira .concept-note > img {
  border-radius: 0;
}

#carreira .concept-note .visual-note-lead {
  margin-bottom: 28px;
  color: #314767;
}

#carreira .concept-note dl {
  gap: 12px;
}

#carreira .concept-note dl div {
  padding: 10px 18px 10px 0;
  border-left: 0;
}

#carreira .concept-note dt {
  grid-column: 2;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 840;
}

#carreira .concept-note dd {
  grid-column: 2;
  margin: 0;
  color: #4b5c75;
}

.learning-list {
  display: grid;
  gap: 14px;
  padding-left: 0;
  list-style: none;
}

.learning-list li {
  position: relative;
  padding-left: 34px;
  color: #34445d;
  font-size: 1.04rem;
}

.learning-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.asset-hint {
  display: none;
}

#iceberg {
  --iceberg-ratio: 1.7779;
  display: block;
  height: calc(100vh - var(--header));
  min-height: calc(100vh - var(--header));
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  background: #eaf7fb;
}

.iceberg-header {
  position: absolute;
  top: clamp(300px, 43vh, 390px);
  right: auto;
  left: clamp(82px, 7.35vw, 108px);
  z-index: 5;
  display: block;
  width: min(560px, 43vw);
  pointer-events: none;
}

.iceberg-header .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.iceberg-header .section-kicker::before {
  content: "";
  width: 16px;
  height: 16px;
  background:
    radial-gradient(circle, var(--teal) 0 2px, transparent 2.5px) 0 0 / 8px 8px;
}

.iceberg-header h2 {
  margin-bottom: 34px;
  max-width: 560px;
  color: #fff;
  font-size: clamp(4.15rem, 6.45vw, 6.25rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-shadow: 0 2px 12px rgba(0, 35, 68, 0.24);
}

.iceberg-header h2 span {
  display: block;
}

.iceberg-header p:not(.section-kicker, .iceberg-cue) {
  position: static;
  max-width: 520px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.18rem, 1.7vw, 1.36rem);
  font-weight: 400;
  line-height: 1.24;
  text-shadow: 0 2px 10px rgba(0, 35, 68, 0.3);
}

.iceberg-cue {
  display: none;
  justify-self: start;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  color: rgba(35, 56, 83, 0.5);
  font-size: 0.86rem;
  font-weight: 650;
}

.iceberg-cue span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(14, 139, 154, 0.12);
  animation: iconPrompt 2.8s ease-in-out infinite;
}

.iceberg-cue svg,
.iceberg-layer-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.iceberg-scene {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #0d7098;
  box-shadow: none;
}

.iceberg-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0 22%, transparent 48%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(180deg, transparent 0 62%, rgba(0, 37, 72, 0.1) 100%);
  pointer-events: none;
}

.iceberg-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: max(100%, calc((100vh - var(--header)) * var(--iceberg-ratio)));
  aspect-ratio: 1672 / 941;
  transform: translate(-50%, -50%);
}

.iceberg-object {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.iceberg-layer-point {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-10px, -50%);
}

.iceberg-layer-point:focus-visible {
  outline: none;
}

.iceberg-layer-point:focus-visible .iceberg-layer-card {
  box-shadow:
    0 0 0 4px rgba(14, 139, 154, 0.18),
    0 28px 54px rgba(7, 27, 58, 0.2);
}

.iceberg-layer-visible {
  left: 51.4%;
  top: 34.8%;
}

.iceberg-layer-invisible {
  left: 58.2%;
  top: 63.8%;
}

.iceberg-layer-point::before {
  content: "";
  width: clamp(58px, 5.2vw, 86px);
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 1px rgba(14, 139, 154, 0.14);
}

.iceberg-dot {
  position: relative;
  order: -1;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 9px rgba(14, 139, 154, 0.22);
}

.iceberg-dot::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: rgba(14, 139, 154, 0.16);
  animation: icebergPulse 2.7s ease-in-out infinite;
}

.iceberg-layer-card {
  display: inline-flex;
  align-items: center;
  min-width: clamp(190px, 18vw, 250px);
  gap: 14px;
  padding: 16px 22px 16px 18px;
  border: 1px solid rgba(220, 238, 246, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 44px rgba(7, 27, 58, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.iceberg-layer-point:hover .iceberg-layer-card,
.iceberg-layer-point.active .iceberg-layer-card {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 54px rgba(7, 27, 58, 0.2);
}

.iceberg-layer-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(14, 139, 154, 0.12);
}

.iceberg-layer-card strong,
.iceberg-layer-card small {
  display: block;
  text-align: left;
}

.iceberg-layer-card strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.15;
}

.iceberg-layer-card small {
  margin-top: 4px;
  color: #5b6b82;
  font-size: 0.82rem;
  font-weight: 650;
}

.iceberg-options {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-wrap: nowrap;
  gap: 9px;
  width: max-content;
  max-width: calc(100% - 48px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.iceberg-options-visible {
  left: 57.8%;
  top: 42.4%;
}

.iceberg-options-invisible {
  left: 64.6%;
  top: 70.6%;
}

.iceberg-scene.layer-visivel-open .iceberg-options-visible,
.iceberg-scene.layer-invisivel-open .iceberg-options-invisible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.iceberg-options button {
  white-space: nowrap;
  padding: 9px 13px;
  border: 1px solid rgba(202, 226, 237, 0.92);
  border-radius: 999px;
  color: #12345b;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(7, 27, 58, 0.11);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 780;
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.iceberg-options button:hover,
.iceberg-options button.active {
  transform: translateY(-2px);
  border-color: rgba(14, 139, 154, 0.56);
  color: #fff;
  background: var(--teal);
}

.iceberg-output {
  position: absolute;
  z-index: 6;
  top: clamp(150px, 21vh, 188px);
  right: auto;
  left: clamp(32px, 4.6vw, 72px);
  width: min(430px, 32vw);
  padding: 22px 24px;
  border: 1px solid rgba(220, 238, 246, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 60px rgba(7, 27, 58, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  backdrop-filter: blur(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.iceberg-scene.has-selection .iceberg-output {
  opacity: 1;
  transform: translateY(0);
}

#iceberg .section-next {
  z-index: 5;
  top: calc(100vh - var(--header) - 62px);
  bottom: auto;
  color: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 6px 14px rgba(0, 24, 48, 0.42));
}

.iceberg-output strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.15;
}

.iceberg-output p {
  margin-bottom: 0;
  color: #415673;
  font-size: 0.9rem;
  line-height: 1.58;
}

@keyframes icebergPulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.82);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.18);
  }
}

.answer-list button,
.quiz-option {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.layer-list button {
  margin: 0 8px 8px 0;
  padding: 9px 11px;
}

.layer-list button:hover,
.layer-list button.active,
.answer-list button:hover,
.answer-list button.active,
.quiz-option:hover,
.quiz-option.selected {
  border-color: rgba(14, 139, 154, 0.42);
  background: var(--teal-soft);
  transform: translateY(-1px);
}

.inline-feedback {
  margin-top: 20px;
  padding: 18px 20px;
}

.inline-feedback:empty {
  display: none;
}

.reflection-section {
  display: grid;
  align-items: center;
  min-height: calc(100vh - var(--header));
  padding: clamp(26px, 4.2vh, 38px) clamp(34px, 4.6vw, 64px);
  background:
    radial-gradient(circle at 87% 12%, rgba(14, 139, 154, 0.09), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}

.reflection-layout {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(500px, 0.9fr);
  gap: clamp(46px, 5.8vw, 86px);
  align-items: stretch;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.reflection-content {
  max-width: none;
}

.reflection-content h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(2.95rem, 4.1vw, 4.25rem);
  line-height: 1.02;
}

.reflection-content > p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.reflection-options-title {
  display: block;
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.reflection-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 0;
}

.reflection-option {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 48px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.06);
  cursor: pointer;
  text-align: left;
  font-weight: 780;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.reflection-option-learning {
  grid-column: 1 / -1;
}

.reflection-option-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
}

.reflection-option-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reflection-option-stability .reflection-option-icon {
  color: #08a9ae;
}

.reflection-option-growth .reflection-option-icon {
  color: #0bb1b0;
}

.reflection-option-purpose .reflection-option-icon {
  color: #b531ff;
}

.reflection-option-money .reflection-option-icon {
  color: #26ad70;
}

.reflection-option-learning .reflection-option-icon {
  color: #1678ff;
}

.reflection-option::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(14, 139, 154, 0.36);
  border-radius: 50%;
  transform: translateY(-50%);
}

.reflection-option.is-selected,
.reflection-option:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 139, 154, 0.48);
  background: #f4fbfc;
  box-shadow: 0 18px 36px rgba(7, 27, 58, 0.09);
}

.reflection-option.is-selected::after {
  content: "✓";
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
}

.priority-list {
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(7, 27, 58, 0.05);
}

.priority-list-header h3,
.result-card h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.priority-list-header {
  display: flex;
  gap: 10px;
  align-items: center;
}

.priority-list-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #0f99d6;
}

.priority-list-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.priority-list-header h3 {
  margin: 0;
}

.priority-items {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 139, 154, 0.34) transparent;
}

.priority-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 0;
  padding: 10px 14px;
  border: 1px solid rgba(220, 231, 240, 0.92);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 760;
}

.priority-item span {
  display: grid;
  width: 38px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.priority-items::-webkit-scrollbar,
.result-card-scroll::-webkit-scrollbar {
  height: 5px;
  width: 6px;
}

.priority-items::-webkit-scrollbar-track,
.result-card-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.priority-items::-webkit-scrollbar-thumb,
.result-card-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(14, 139, 154, 0.28);
}

.result-card {
  height: 100%;
  min-height: 0;
  max-height: calc(100vh - var(--header) - clamp(52px, 8.4vh, 76px));
  padding: clamp(26px, 3.4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.result-card.is-empty {
  display: grid;
  text-align: center;
}

.result-card-scroll {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 139, 154, 0.34) transparent;
}

.result-card.is-empty .result-card-scroll {
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  padding-right: 0;
}

.result-card.is-empty h3 {
  position: relative;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
}

.result-card.is-empty h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--teal);
}

.result-card.is-empty p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
}

.reflection-empty-lottie {
  width: min(250px, 48%);
  max-width: 280px;
  min-height: 190px;
  margin-bottom: 26px;
  color: var(--blue);
}

.reflection-empty-lottie svg {
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
}

.result-card > h3 {
  font-size: 1.42rem;
}

.result-profile {
  margin: 0 0 20px;
  color: var(--teal);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.result-summary {
  margin-bottom: 22px;
  color: #33445c;
  font-size: 1.02rem;
}

.result-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}

.result-meta p,
.result-block p,
.result-note p {
  margin-bottom: 0;
}

.result-meta strong,
.result-block strong,
.result-note strong {
  color: var(--ink);
}

.result-block {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.result-block p {
  color: #43536a;
}

.result-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 8px;
  color: #34445d;
  background: var(--blue-soft);
}

.cycle-section {
  display: grid;
  min-height: calc(100vh - var(--header));
  padding: clamp(34px, 4.8vh, 56px) clamp(58px, 6.6vw, 96px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.93), rgba(245, 251, 253, 0.76)),
    url("../assets/images/bgs-padrao/5.jpg") center / cover no-repeat;
}

.cycle-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(500px, 1.28fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 3.1vw, 46px);
  align-items: center;
  width: 100%;
}

.cycle-intro {
  min-width: 0;
}

.cycle-intro h2 {
  max-width: 360px;
  font-size: clamp(2.7rem, 4.2vw, 4.2rem);
}

.cycle-intro > p:not(.section-kicker) {
  max-width: 340px;
  color: #65738a;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
}

.cycle-illustration {
  position: relative;
  width: min(100%, 250px);
  aspect-ratio: 1122 / 1402;
  margin-top: clamp(26px, 4vh, 48px);
  overflow: hidden;
  border: 1px solid rgba(220, 231, 240, 0.7);
  border-radius: 12px;
  background: #f8fcfe;
  box-shadow: 0 24px 54px rgba(7, 27, 58, 0.08);
}

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

.cycle-orbit {
  --orbit-size: min(40vw, 530px);
  position: relative;
  width: var(--orbit-size);
  height: var(--orbit-size);
  justify-self: center;
}

.cycle-ring {
  position: absolute;
  inset: 52px;
  border: 2px solid rgba(20, 184, 198, 0.62);
  border-radius: 50%;
}

.cycle-ring::before {
  content: "";
  position: absolute;
  inset: 27%;
  border: 1px dashed rgba(10, 69, 194, 0.24);
  border-radius: 50%;
}

.cycle-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid rgba(20, 184, 198, 0.82);
  filter: drop-shadow(0 4px 8px rgba(14, 139, 154, 0.12));
}

.cycle-arrow-1 {
  top: 58px;
  right: 98px;
  transform: rotate(31deg);
}

.cycle-arrow-2 {
  top: 47%;
  right: -7px;
  transform: rotate(91deg);
}

.cycle-arrow-3 {
  right: 112px;
  bottom: 40px;
  transform: rotate(151deg);
}

.cycle-arrow-4 {
  bottom: 42px;
  left: 112px;
  transform: rotate(214deg);
}

.cycle-arrow-5 {
  top: 72px;
  left: 86px;
  transform: rotate(318deg);
}

.cycle-spokes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cycle-spokes span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--orbit-size) * 0.31);
  border-top: 1px dashed rgba(10, 69, 194, 0.24);
  transform-origin: left center;
}

.cycle-spoke-1 {
  transform: rotate(-90deg);
}

.cycle-spoke-2 {
  transform: rotate(-29deg);
}

.cycle-spoke-3 {
  transform: rotate(54deg);
}

.cycle-spoke-4 {
  transform: rotate(126deg);
}

.cycle-spoke-5 {
  transform: rotate(209deg);
}

.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 14px;
  justify-items: center;
  transform: translate(-50%, -50%);
  text-align: center;
}

.cycle-center span {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 6px solid #fff;
  border-radius: 50%;
  background: rgba(232, 248, 250, 0.94);
  box-shadow: 0 16px 38px rgba(7, 27, 58, 0.1);
}

.cycle-center svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cycle-center strong {
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 860;
  line-height: 1.16;
}

.cycle-card {
  position: absolute;
  width: 146px;
  min-height: 130px;
  display: grid;
  justify-items: center;
  align-items: start;
  align-content: start;
  gap: 8px;
  padding: 24px 16px 16px;
  border: 1px solid rgba(220, 231, 240, 0.92);
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 27, 58, 0.09);
  cursor: pointer;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cycle-card:hover,
.cycle-card:focus-visible {
  z-index: 3;
  transform: translate(var(--x), var(--y)) scale(1.06);
  border-color: rgba(14, 139, 154, 0.36);
  box-shadow: 0 28px 58px rgba(7, 27, 58, 0.14);
}

.cycle-card[aria-expanded="true"] {
  z-index: 4;
  border-color: rgba(14, 139, 154, 0.34);
}

.cycle-number {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #08b8bf);
  color: #fff;
  font-weight: 860;
  transform: translateX(-50%);
  box-shadow: 0 8px 20px rgba(14, 139, 154, 0.24);
}

.cycle-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 2px solid #d8eef5;
  border-radius: 50%;
  background: #f7fbfd;
}

.cycle-icon .bx {
  font-family: "Boxicons";
  color: var(--ink);
  font-size: 1.68rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-rendering: auto;
}

.cycle-icon .bx-user::before {
  content: "\ebbf";
}

.cycle-icon .bx-compass::before {
  content: "\e9e1";
}

.cycle-icon .bx-target-lock::before {
  content: "\eb99";
}

.cycle-icon .bx-walk::before {
  content: "\ebd3";
}

.cycle-icon .bx-refresh::before {
  content: "\eb37";
}

.cycle-card strong {
  width: 100%;
  display: block;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.16;
  text-align: center;
  overflow-wrap: normal;
  word-break: normal;
}

.cycle-card small {
  max-height: 0;
  overflow: hidden;
  color: #66758c;
  font-size: 0.8rem;
  line-height: 1.35;
  opacity: 0;
  transition: max-height 180ms ease, opacity 160ms ease, margin-top 180ms ease;
}

.cycle-card[aria-expanded="true"] small {
  max-height: 70px;
  margin-top: -1px;
  opacity: 1;
}

.cycle-card-1 {
  --x: -50%;
  --y: 0;
  top: 0;
  left: 50%;
  width: 154px;
  transform: translate(var(--x), var(--y));
}

.cycle-card-2 {
  --x: 0;
  --y: -50%;
  top: 39%;
  right: 0;
  transform: translate(var(--x), var(--y));
}

.cycle-card-3 {
  --x: 0;
  --y: 0;
  right: 11%;
  bottom: 0;
  transform: translate(var(--x), var(--y));
}

.cycle-card-4 {
  --x: 0;
  --y: 0;
  left: 11%;
  bottom: 0;
  transform: translate(var(--x), var(--y));
}

.cycle-card-5 {
  --x: 0;
  --y: -50%;
  top: 39%;
  left: 0;
  transform: translate(var(--x), var(--y));
}

.cycle-read-card {
  align-self: center;
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(160deg, #fff 0 70%, rgba(224, 246, 249, 0.84) 70%),
    #fff;
  box-shadow: 0 22px 54px rgba(7, 27, 58, 0.08);
}

.cycle-read-card h3 {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(14, 139, 154, 0.22);
  font-size: 1.35rem;
}

.cycle-read-card h3 span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal);
}

.cycle-read-card svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cycle-read-card p {
  margin-bottom: 0;
  color: #43536a;
}

.cs-content-section,
.cs-visual-section {
  display: grid;
  min-height: calc(100vh - var(--header));
  align-items: center;
  padding: clamp(30px, 4.1vh, 48px) clamp(28px, 6vw, 88px);
  overflow: hidden;
}

.cs-content-section {
  background: url("../assets/images/bgs-padrao/3.jpg") center / cover no-repeat;
}

.cs-visual-section {
  background: url("../assets/images/bgs-padrao/5.jpg") center / cover no-repeat;
  padding-inline: clamp(24px, 3vw, 44px);
}

.cs-content {
  width: min(100%, 840px);
  margin: 0 auto;
}

.cs-content h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 3.55vw, 3.45rem);
  line-height: 1.05;
}

.cs-content p {
  max-width: 820px;
  color: #43536a;
  font-size: clamp(0.9rem, 0.92vw, 0.98rem);
  line-height: 1.5;
}

.cs-content > p {
  margin-bottom: 14px;
}

.cs-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin: 18px 0;
  padding: 18px 22px;
  border: 1px solid rgba(205, 226, 239, 0.95);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(230, 249, 252, 0.94), rgba(247, 252, 255, 0.95));
  box-shadow: 0 16px 40px rgba(7, 27, 58, 0.06);
}

.cs-callout-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: #dff7fb;
  font-size: 1.5rem;
}

.cs-callout h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 1rem;
}

.cs-callout p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.42;
}

.cs-visual-wrap {
  width: min(100%, 1320px);
  display: grid;
  grid-template-columns: minmax(500px, 0.94fr) minmax(610px, 1.06fr);
  gap: clamp(54px, 6vw, 90px);
  align-items: center;
  margin: 0 auto;
}

.cs-wheel {
  position: relative;
  width: min(520px, 40vw);
  aspect-ratio: 1;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(7, 27, 58, 0.12));
  transition: filter 180ms ease;
}

.cs-wheel:focus-within {
  filter: drop-shadow(0 30px 60px rgba(7, 27, 58, 0.16));
}

.cs-wheel-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 7px;
  border: 8px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.cs-wheel-cell {
  position: relative;
  border: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  padding: 40px 22px 72px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: center;
  transform-origin: center;
  z-index: 1;
  transition: filter 160ms ease, transform 160ms ease;
}

.cs-wheel-cell:hover,
.cs-wheel-cell:focus-visible {
  z-index: 2;
  filter: brightness(1.05) saturate(1.04);
}

.cs-wheel-cell.is-active {
  filter: brightness(1.05) saturate(1.04);
}

.cs-wheel-cell.is-active {
  box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.08);
}

.cs-wheel-cell i {
  font-size: 2.8rem;
  color: currentColor;
}

.cs-wheel-cell strong {
  font-size: 1.22rem;
  line-height: 1;
}

.cs-wheel-cell span {
  display: none;
}

.cs-wheel-concern {
  border-radius: 100% 0 0;
  background: #b9d5ff;
}

.cs-wheel-concern:hover,
.cs-wheel-concern:focus-visible {
  transform: translate(-8px, -8px) scale(1.035);
}

.cs-wheel-control {
  border-radius: 0 100% 0 0;
  background: #57d2d4;
}

.cs-wheel-control:hover,
.cs-wheel-control:focus-visible {
  transform: translate(8px, -8px) scale(1.035);
}

.cs-wheel-curiosity {
  border-radius: 0 0 0 100%;
  background: #18bdc2;
  color: #fff;
}

.cs-wheel-curiosity:hover,
.cs-wheel-curiosity:focus-visible {
  transform: translate(-8px, 8px) scale(1.035);
}

.cs-wheel-confidence {
  border-radius: 0 0 100% 0;
  background: var(--blue);
  color: #fff;
}

.cs-wheel-confidence:hover,
.cs-wheel-confidence:focus-visible {
  transform: translate(8px, 8px) scale(1.035);
}

.cs-wheel-center {
  position: absolute;
  inset: 50%;
  z-index: 5;
  width: 174px;
  height: 174px;
  display: grid;
  place-items: center;
  border: 8px solid #fff;
  border-radius: 50%;
  background: #f8fcff;
  box-shadow: 0 12px 30px rgba(7, 27, 58, 0.11);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cs-wheel-center::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(10, 69, 194, 0.22);
  border-radius: 50%;
}

.cs-wheel-center span {
  position: relative;
  width: 0;
  height: 0;
  transform: rotate(38deg);
}

.cs-wheel-center span::before,
.cs-wheel-center span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
}

.cs-wheel-center span::before {
  bottom: -4px;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
  border-bottom: 68px solid var(--blue);
}

.cs-wheel-center span::after {
  top: -4px;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 52px solid #91dcdf;
}

.cs-practice {
  width: min(610px, 100%);
  justify-self: center;
  padding: clamp(34px, 3.6vw, 46px);
  border: 1px solid rgba(201, 221, 236, 0.9);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 252, 255, 0.82)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 54px rgba(7, 27, 58, 0.08);
  backdrop-filter: blur(12px);
}

.cs-practice-heading {
  display: block;
  margin-bottom: 26px;
}

.cs-practice-heading > span,
.cs-practice-detail-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #dcecff;
}

.cs-practice-heading > span {
  display: none;
}

.cs-practice-heading .section-kicker {
  margin-bottom: 6px;
}

.cs-practice h3 {
  position: relative;
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  line-height: 1.16;
}

.cs-practice h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
}

.cs-practice-heading p:last-child {
  max-width: 390px;
  margin: 0;
  color: #53647b;
  font-size: 0.82rem;
  line-height: 1.58;
}

.cs-practice-list {
  position: relative;
  display: grid;
  grid-template-columns: 164px minmax(320px, 1fr);
  grid-template-rows: repeat(4, minmax(62px, auto));
  gap: 12px 20px;
  align-items: stretch;
  width: 100%;
}

.cs-practice-list::before {
  content: "";
  position: absolute;
  top: 31px;
  bottom: 31px;
  left: -28px;
  width: 1px;
  background: linear-gradient(180deg, rgba(10, 69, 194, 0.3), rgba(10, 69, 194, 0.1));
}

.cs-practice-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  justify-items: stretch;
  width: 100%;
  min-height: 62px;
  padding: 10px 30px 10px 14px;
  border: 1px solid rgba(216, 231, 240, 0.95);
  border-left: 4px solid transparent;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.06);
  cursor: pointer;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cs-practice-card::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.48;
  transform: translateY(-50%) rotate(45deg);
}

.cs-practice-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -34px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(10, 69, 194, 0.42);
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.cs-practice-card:hover,
.cs-practice-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7, 27, 58, 0.1);
  outline: none;
}

.cs-practice-card[aria-expanded="true"] {
  border-color: rgba(10, 69, 194, 0.32);
  border-left-color: var(--blue);
  background: linear-gradient(135deg, #fff, #edf5ff);
  box-shadow: 0 18px 38px rgba(10, 69, 194, 0.12);
}

.cs-practice-card[aria-expanded="true"]::before {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 69, 194, 0.08);
}

.cs-practice-card > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #dcecff;
  font-size: 1.28rem;
}

.cs-practice-card[data-cs-card="control"] > span,
.cs-practice-card[data-cs-card="curiosity"] > span {
  color: var(--teal);
  background: #dff7fb;
}

.cs-practice-card[data-cs-card="confidence"] > span {
  color: #fff;
  background: var(--blue);
}

.cs-practice-card div {
  min-width: 0;
}

.cs-practice-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 0.74rem;
  line-height: 1.2;
}

.cs-practice-card p,
.cs-practice-detail p {
  margin: 0;
  color: #43536a;
  font-size: 0.82rem;
  line-height: 1.38;
}

.cs-practice-card p {
  display: none;
}

.cs-practice-detail {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 4;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  align-content: start;
  min-height: 100%;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(10, 69, 194, 0.3);
  border-radius: 9px;
  background:
    radial-gradient(circle at 88% 80%, rgba(14, 139, 154, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.92));
  box-shadow: 0 18px 42px rgba(7, 27, 58, 0.12);
  overflow: hidden;
}

.cs-practice-detail::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 47px;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(10, 69, 194, 0.3);
  border-bottom: 1px solid rgba(10, 69, 194, 0.3);
  background: rgba(255, 255, 255, 0.96);
  transform: rotate(45deg);
}

.cs-practice-detail::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 22px;
  width: 96px;
  height: 78px;
  opacity: 0.35;
  background-image: radial-gradient(rgba(10, 69, 194, 0.24) 1.3px, transparent 1.3px);
  background-size: 11px 11px;
  pointer-events: none;
}

.cs-practice-detail-icon {
  width: 58px;
  height: 58px;
  font-size: 1.85rem;
}

.cs-practice-detail h4 {
  position: relative;
  margin: 14px 0 28px;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.1vw, 1.06rem);
  line-height: 1.24;
}

.cs-practice-detail h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.cs-practice-detail p {
  grid-column: 1 / -1;
  max-width: 330px;
  font-size: 0.84rem;
  line-height: 1.72;
}

.explanation-panel {
  padding: 28px;
}

.process-figure {
  align-self: stretch;
}

.process-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(234, 242, 255, 0.58)),
    linear-gradient(180deg, #fff, #f4f8fb);
  box-shadow: var(--shadow);
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(10, 69, 194, 0.08);
  border-radius: var(--radius);
  pointer-events: none;
}

.process-card > div {
  position: relative;
  z-index: 1;
  padding-left: 30px;
}

.process-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.02rem;
}

.process-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

.process-line {
  position: absolute;
  top: 72px;
  bottom: 72px;
  left: 54px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}

.process-card > div::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: -1px;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(10, 69, 194, 0.28);
}

.cs-diagram {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 32%, transparent 33%),
    conic-gradient(from 45deg, #eaf2ff, #e7f7f8, #f8f4ea, #edf7f3, #eaf2ff);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.cs-diagram div {
  display: grid;
  align-content: center;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.cs-diagram strong {
  color: var(--ink);
}

.cs-diagram span {
  color: var(--muted);
  font-size: 0.86rem;
}

.cs-diagram small {
  display: none;
}

.career-map-section {
  position: relative;
  display: grid;
  height: calc(100vh - var(--header));
  min-height: calc(100vh - var(--header));
  padding: clamp(10px, 2vh, 18px) clamp(10px, 1.6vw, 22px);
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background: #f5f9fc;
}

.career-map-frame {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  place-items: center;
}

.career-map-picture {
  display: grid;
  width: min(100%, calc((100vh - var(--header) - clamp(20px, 4vh, 36px)) * 1672 / 941));
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1672 / 941;
  place-items: center;
}

.career-map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid rgba(180, 208, 228, 0.78);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 27, 58, 0.11);
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.career-map-frame:hover .career-map-image {
  border-color: rgba(10, 69, 194, 0.36);
  box-shadow: 0 22px 58px rgba(7, 27, 58, 0.16);
  filter: saturate(1.04) contrast(1.02);
  transform: translateY(-1px);
}

.career-types,
.yw-comparison,
.media-study,
.case-study {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.career-types article,
.yw-comparison article,
.media-panel,
.case-study,
.smart-form,
.wizard,
.plan-result,
.quiz-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(7, 27, 58, 0.06);
}

.career-types article,
.yw-comparison article,
.media-panel,
.case-study,
.smart-form,
.wizard,
.plan-result,
.quiz-card {
  padding: 28px;
}

.career-types p,
.yw-comparison p {
  color: var(--muted);
}

.media-panel span {
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.path-letter {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 3rem;
  font-weight: 850;
}

.yw-comparison article:nth-child(2) .path-letter {
  background: var(--teal);
}

.case-study {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  align-items: start;
}

.answer-list,
.quiz-options {
  display: grid;
  gap: 10px;
}

.answer-list button,
.quiz-option {
  padding: 13px 15px;
  text-align: left;
}

.answer-list button.correct,
.quiz-option.correct {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.answer-list button.incorrect,
.quiz-option.incorrect {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.media-study {
  align-items: center;
}

.podcast-section {
  display: grid;
  min-height: calc(100vh - var(--header));
  padding: clamp(34px, 4.8vh, 54px) clamp(58px, 7.2vw, 112px) clamp(34px, 5vh, 56px);
  align-items: start;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0 30%, rgba(255, 255, 255, 0.2) 48%, rgba(255, 255, 255, 0) 72%),
    url("../assets/images/bgs-padrao/5.jpg") center / cover no-repeat;
}

.podcast-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(610px, 0.9fr) minmax(460px, 1.1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(20px, 2.4vw, 42px) clamp(38px, 4.8vw, 78px);
  align-items: start;
  width: 100%;
  min-height: calc(100vh - var(--header) - clamp(68px, 9.8vh, 110px));
}

.podcast-copy {
  max-width: 700px;
  align-self: center;
  padding-top: 0;
  padding-bottom: clamp(78px, 11vh, 118px);
}

.podcast-kicker {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #0eb5e8;
}

.podcast-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}

.podcast-kicker i {
  display: block;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
}

.podcast-kicker i:nth-child(1),
.podcast-kicker i:nth-child(4) {
  height: 8px;
}

.podcast-kicker i:nth-child(2) {
  height: 14px;
}

.podcast-kicker i:nth-child(3) {
  height: 18px;
}

.podcast-copy h2 {
  max-width: 700px;
  margin-bottom: clamp(20px, 2.7vh, 30px);
  font-size: clamp(2rem, 2.45vw, 2.72rem);
  line-height: 1.08;
}

.podcast-copy p:not(.section-kicker) {
  max-width: 430px;
  color: #40516d;
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.65;
}

.podcast-player {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  justify-self: center;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  width: min(700px, 57vw);
  min-height: 136px;
  margin-top: clamp(-178px, -21vh, -148px);
  padding: 24px 34px 22px 24px;
  border: 1px solid rgba(10, 69, 194, 0.72);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 36px rgba(7, 27, 58, 0.08), 0 9px 0 rgba(10, 69, 194, 0.08);
}

.podcast-player::before {
  content: "";
  position: absolute;
  left: -26px;
  top: -22px;
  width: 42px;
  height: 38px;
  border-top: 2px solid #0a45c2;
  border-left: 2px solid #0a45c2;
  border-radius: 22px 0 0 0;
  opacity: 0.75;
}

.podcast-player::after {
  content: "";
  position: absolute;
  left: -28px;
  right: -80px;
  bottom: -22px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(10, 69, 194, 0.18), rgba(10, 69, 194, 0) 72%);
  z-index: -1;
}

.podcast-play {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 200, 244, 0.62);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #12c8f4, #1789f2);
  box-shadow: 0 0 0 6px #eaf7ff, 0 16px 32px rgba(18, 160, 232, 0.26);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.podcast-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(18, 160, 232, 0.3);
}

.podcast-play svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.podcast-icon-pause,
.podcast-player.is-playing .podcast-icon-play {
  display: none;
}

.podcast-player.is-playing .podcast-icon-pause {
  display: block;
}

.podcast-player-body {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.podcast-player-body strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.25;
}

.podcast-progress-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.podcast-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 100%;
  height: 42px;
  color: #dae5ee;
  overflow: hidden;
}

.podcast-waveform span {
  width: 3px;
  height: calc(var(--bar-height, 12) * 1px);
  flex: 0 0 3px;
  border-radius: 999px;
  background: currentColor;
  transition: background 160ms ease, opacity 160ms ease;
}

.podcast-waveform span.is-active {
  color: #12bdec;
}

.podcast-progress-row input[type="range"] {
  position: absolute;
  inset: 0 54px 0 50px;
  width: auto;
  height: 42px;
  opacity: 0;
  cursor: pointer;
}

.podcast-progress-row [data-podcast-current] {
  color: #0a45c2;
}

.podcast-progress-row time {
  color: #6e7d97;
  font-size: 0.95rem;
  font-weight: 640;
  font-variant-numeric: tabular-nums;
}

.podcast-visual {
  position: relative;
  min-height: clamp(500px, 66vh, 700px);
  margin-top: clamp(24px, 4.6vh, 48px);
}

.podcast-lottie {
  position: absolute;
  inset: 50% auto auto 58%;
  width: min(830px, 59vw);
  min-height: min(650px, 54vw);
  transform: translate(-50%, -50%);
}

.podcast-lottie svg {
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
}

audio,
video {
  width: 100%;
}

video {
  min-height: 340px;
  border-radius: var(--radius);
  background: #0d1d32;
}

details {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 760;
}

.simple-list {
  color: #34445d;
}

.smart-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.smart-form label:first-child {
  grid-column: 1 / -1;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
}

textarea {
  width: 100%;
  min-height: 104px;
  resize: vertical;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: #fff;
}

textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(10, 69, 194, 0.1);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.smart-form .form-actions {
  grid-column: 1 / -1;
}

.result {
  max-width: 900px;
  background: var(--blue-soft);
}

.wizard {
  max-width: 860px;
}

.wizard-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--ink);
  font-weight: 760;
}

.wizard-progress div {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4ebf3;
}

.wizard-progress div span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.wizard-form {
  display: grid;
  gap: 18px;
}

.plan-result {
  margin-top: 24px;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft);
  color: var(--ink);
}

td:first-child {
  width: 240px;
  color: var(--ink);
  font-weight: 760;
}

.quiz {
  display: grid;
  gap: 16px;
}

.quiz-card h3 {
  margin-bottom: 16px;
}

.quiz-feedback {
  min-height: 24px;
  margin-top: 12px;
  color: var(--muted);
}

.final-section {
  color: #fff;
  background: linear-gradient(135deg, #071b3a, #0c4960);
}

.final-section h2,
.final-section .section-kicker {
  color: #fff;
}

.final-section p,
.final-section li {
  color: rgba(255, 255, 255, 0.82);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

@media (max-width: 980px) {
  .course-header {
    grid-template-columns: auto auto auto minmax(160px, 1fr) auto;
    gap: 18px;
    width: 100%;
    padding: 0 28px;
  }

  .course-progress {
    width: min(220px, 26vw);
    min-width: 190px;
  }

  .objective-layout,
  .lesson-grid,
  .hero-grid,
  .iceberg-study,
  .cycle-study,
  .career-types,
  .yw-comparison,
  .media-study,
  .case-study,
  .reflection-layout,
  .cycle-layout {
    grid-template-columns: 1fr;
  }

  .reflection-section {
    padding-inline: clamp(32px, 6vw, 64px);
  }

  .podcast-section {
    align-items: start;
    padding: 54px clamp(32px, 6vw, 64px) 68px;
  }

  .cycle-section {
    padding: 58px clamp(32px, 6vw, 64px);
  }

  .cycle-layout {
    gap: 42px;
  }

  .cycle-intro h2,
  .cycle-intro > p:not(.section-kicker) {
    max-width: 720px;
  }

  .cycle-illustration {
    display: none;
  }

  .cycle-orbit {
    --orbit-size: min(620px, 88vw);
  }

  .cycle-read-card {
    max-width: 640px;
  }

  .cs-visual-wrap {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }

  .cs-wheel {
    width: min(430px, 76vw);
  }

  .cs-practice {
    width: min(100%, 720px);
  }

  .podcast-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 36px;
    min-height: 0;
  }

  .podcast-copy {
    max-width: 720px;
  }

  .podcast-copy h2,
  .podcast-copy p:not(.section-kicker) {
    max-width: 720px;
  }

  .podcast-visual {
    min-height: clamp(360px, 48vh, 520px);
    margin-top: 0;
  }

  .podcast-lottie {
    width: min(720px, 96vw);
    min-height: min(520px, 72vw);
  }

  .podcast-player {
    width: min(720px, 100%);
    margin-top: -38px;
  }

  .result-card {
    height: auto;
    max-height: none;
    min-height: auto;
  }

  .hero-section {
    padding-inline: clamp(32px, 6vw, 64px);
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 50%, rgba(255, 255, 255, 0.76) 74%, rgba(255, 255, 255, 0.2) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(7, 27, 58, 0.04)),
      url("../assets/images/hero2.png") center top / cover no-repeat;
    background-attachment: fixed;
  }

  .hero-animation {
    min-height: 460px;
  }

  .hero-copy {
    top: 0;
  }

  .lottie-stage {
    width: min(760px, 88vw);
    transform: none;
  }

  .lottie-fallback {
    right: 50%;
    width: min(620px, 82vw);
    transform: translateX(50%);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-fact + .hero-fact {
    padding-left: 0;
    border-left: 0;
  }

  #objetivos {
    overflow: visible;
  }

  #carreira .lesson-grid {
    grid-template-columns: 1fr;
  }

  #carreira .reading-block h2 {
    white-space: normal;
  }

  #carreira .concept-note {
    min-height: 560px;
  }

  #carreira .concept-note > img {
    width: 100%;
  }

  #carreira .concept-note-copy {
    width: min(620px, 92%);
  }

  .objective-layout {
    gap: 42px;
  }

  .objective-intro {
    max-width: 720px;
  }

  .objective-intro h2 {
    max-width: 720px;
  }

  #iceberg {
    min-height: auto;
  }

  .iceberg-header {
    right: 32px;
    left: 32px;
    width: min(560px, 48vw);
  }

  .iceberg-cue {
    justify-self: start;
  }

  .iceberg-scene {
    min-height: 100%;
  }

  .iceberg-layer-visible {
    left: 50.6%;
    top: 34.8%;
  }

  .iceberg-layer-invisible {
    left: 58.2%;
    top: 63.8%;
  }

  .iceberg-options-visible,
  .iceberg-options-invisible {
    max-width: calc(100% - 48px);
  }

  .iceberg-options-visible {
    left: 57.8%;
    top: 42.4%;
  }

  .iceberg-options-invisible {
    left: 64.6%;
    top: 70.6%;
  }

  .iceberg-output {
    width: min(430px, 36vw);
  }

  .cs-diagram {
    max-width: 560px;
    border-radius: var(--radius);
    aspect-ratio: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --header: 66px;
  }

  body {
    font-size: 15px;
  }

  .course-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 0 14px;
  }

  .course-brand span:last-child,
  .header-separator,
  .course-unit,
  .course-progress {
    display: none;
  }

  .section-menu {
    right: 14px;
  }

  .lesson-section {
    padding: 74px 24px;
  }

  .career-map-section {
    height: calc(100vh - var(--header));
    min-height: calc(100vh - var(--header));
    padding: 8px;
  }

  .career-map-frame {
    height: 100%;
    min-height: 0;
  }

  .career-map-picture {
    width: min(100%, 56.3vh);
    height: auto;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 941 / 1672;
  }

  .career-map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    border-radius: 10px;
  }

  .short-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .lesson-grid {
    gap: 36px;
  }

  .hero-grid,
  .hero-copy,
  .hero-copy .lead,
  .hero-facts {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-section {
    min-height: calc(100vh - var(--header));
    display: block;
    padding: 58px 24px 38px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 46%, rgba(255, 255, 255, 0.84) 68%, rgba(255, 255, 255, 0.34) 100%),
      url("../assets/images/hero2.png") 57% top / cover no-repeat;
    background-attachment: fixed;
  }

  .hero-animation {
    display: grid;
    min-height: clamp(230px, 48vh, 340px);
    margin: 6px -18px 0;
    place-items: center;
  }

  .lottie-stage {
    width: min(520px, 118vw);
    transform: translate(8px, -36px);
  }

  .lottie-fallback {
    right: auto;
    bottom: 0;
    width: min(430px, 108vw);
    min-height: 190px;
    transform: none;
  }

  .lottie-fallback span {
    width: 34px;
    height: 170px;
  }

  .lottie-fallback span::before {
    top: -40px;
    width: 34px;
    height: 34px;
  }

  .hero-facts {
    margin-top: 28px;
  }

  .hero-photo-panel,
  .hero-photo-panel img {
    min-height: 380px;
  }

  .hero-photo-panel figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .calm-landscape,
  .image-placeholder {
    min-height: 300px;
  }

  .iceberg-visual {
    min-height: 400px;
  }

  .iceberg-drawing {
    inset: 74px 8% 30px;
  }

  .iceberg-tip {
    height: 130px;
  }

  .water-line {
    top: 130px;
  }

  .iceberg-base {
    top: 132px;
    height: 210px;
  }

  .reflection-options {
    display: grid;
    grid-template-columns: 1fr;
  }

  .reflection-options button,
  .button {
    width: 100%;
  }

  .reflection-section {
    padding: 58px 24px;
  }

  .cycle-section {
    padding: 48px 24px 58px;
  }

  .cycle-intro h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .cycle-orbit {
    --orbit-size: auto;
    display: grid;
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .cycle-ring,
  .cycle-spokes,
  .cycle-center {
    display: none;
  }

  .cycle-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: auto;
    justify-items: start;
    grid-template-columns: 44px 1fr;
    padding: 18px 18px 18px 58px;
    text-align: left;
    transform: none;
  }

  .cycle-card:hover,
  .cycle-card:focus-visible {
    transform: scale(1.02);
  }

  .cycle-number {
    top: 18px;
    left: 18px;
    width: 30px;
    height: 30px;
    transform: none;
  }

  .cycle-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
  }

  .cycle-card small {
    grid-column: 2;
  }

  .cycle-read-card {
    padding: 24px;
  }

  .cs-content-section,
  .cs-visual-section {
    min-height: auto;
    padding: 52px 24px 58px;
    overflow: visible;
  }

  .cs-content h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.25rem);
  }

  .cs-callout {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .cs-wheel {
    width: min(330px, 84vw);
  }

  .cs-wheel-cell {
    padding: 22px 10px 48px;
  }

  .cs-wheel-cell i {
    font-size: 2.35rem;
  }

  .cs-wheel-cell strong {
    font-size: 1rem;
  }

  .cs-wheel-cell span {
    font-size: 0.68rem;
  }

  .cs-wheel-center {
    width: 122px;
    height: 122px;
  }

  .cs-practice {
    padding: 20px;
    border-radius: 14px;
  }

  .cs-practice-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cs-practice-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .cs-practice-list::before,
  .cs-practice-card::before,
  .cs-practice-detail::before {
    display: none;
  }

  .cs-practice-card {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 12px 36px 12px 12px;
  }

  .cs-practice-card > span {
    width: 44px;
    height: 44px;
    font-size: 1.45rem;
  }

  .cs-practice-detail {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .cs-practice-detail-icon {
    width: 48px;
    height: 48px;
    font-size: 1.55rem;
  }

  .cs-practice-detail p {
    max-width: none;
  }

  .reflection-content h2 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .priority-list,
  .result-card {
    padding: 20px;
  }

  .priority-items {
    flex-wrap: wrap;
  }

  .priority-item {
    flex-basis: 100%;
  }

  .result-card-scroll {
    height: auto;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .podcast-section {
    padding: 48px 24px 58px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0 44%, rgba(255, 255, 255, 0.18) 100%),
      url("../assets/images/bgs-padrao/5.jpg") center / cover no-repeat;
  }

  .podcast-copy h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.25rem);
  }

  .podcast-player {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    width: 100%;
    min-height: 104px;
    margin-top: -20px;
    padding: 18px;
    border-radius: 18px;
  }

  .podcast-play {
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 4px #eaf7ff, 0 12px 24px rgba(18, 160, 232, 0.22);
  }

  .podcast-progress-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    width: 100%;
  }

  .podcast-progress-row [data-podcast-current] {
    display: none;
  }

  .podcast-progress-row input[type="range"] {
    inset: 0 48px 0 0;
    width: auto;
  }

  .podcast-waveform {
    width: auto;
  }

  .podcast-waveform span {
    width: 2px;
    flex-basis: 2px;
  }

  .podcast-visual {
    min-height: 280px;
  }

  .podcast-lottie {
    width: min(520px, 116vw);
    min-height: 320px;
  }

  .smart-form {
    grid-template-columns: 1fr;
  }

  .smart-form label:first-child,
  .smart-form .form-actions {
    grid-column: auto;
  }

  .objective-layout {
    gap: 34px;
  }

  .objective-intro .section-kicker {
    margin-bottom: 28px;
  }

  .objective-intro h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    white-space: normal;
  }

  .objective-layout .learning-list li {
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 16px 18px;
  }

  .objective-layout .learning-list li::before {
    width: 42px;
    height: 42px;
  }

  .objective-layout .learning-list li::after {
    left: 74px;
  }

  #iceberg {
    padding: 0;
  }

  .iceberg-header {
    top: clamp(300px, 42vh, 360px);
    right: 24px;
    left: 32px;
    width: min(340px, 82vw);
  }

  .iceberg-header h2 {
    margin-bottom: 18px;
    font-size: clamp(3.35rem, 15vw, 4.6rem);
  }

  .iceberg-header p:not(.section-kicker, .iceberg-cue) {
    max-width: min(330px, 82vw);
    font-size: clamp(0.95rem, 4vw, 1.12rem);
    line-height: 1.28;
  }

  .iceberg-scene {
    min-height: 100%;
    border-radius: 0;
  }

  .iceberg-layer-point {
    transform: translate(-8px, -50%) scale(0.78);
    transform-origin: left center;
  }

  .iceberg-layer-visible {
    left: 46.5%;
    top: 34%;
  }

  .iceberg-layer-invisible {
    left: 50%;
    top: 58%;
  }

  .iceberg-options-visible,
  .iceberg-options-invisible {
    max-width: calc(100% - 24px);
  }

  .iceberg-options-visible {
    left: 46.5%;
    top: 42%;
  }

  .iceberg-options-invisible {
    left: 50%;
    top: 64%;
  }

  .iceberg-options {
    gap: 6px;
  }

  .iceberg-options button {
    padding: 8px 10px;
    font-size: 0.76rem;
  }

  .iceberg-output {
    top: 86px;
    right: 16px;
    left: auto;
    bottom: auto;
    width: min(310px, calc(100vw - 32px));
  }

  .process-card {
    min-height: auto;
    padding: 32px 26px;
  }

  .process-line {
    left: 38px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  video {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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

@media print {
  .course-header,
  .section-menu,
  .back-to-top {
    display: none !important;
  }

  .lesson-section {
    padding: 28px 0;
  }
}
