/* =========================================================
   MISSÃO SIMULADO — LANDING PAGE
   Estilos globais, componentes e seções
   ========================================================= */

:root {
  --navy: #0b214a;
  --navy-dark: #07152f;
  --navy-soft: #123666;
  --blue: #0878d1;
  --blue-dark: #075ca0;
  --blue-light: #53b8f4;
  --green: #09b95a;
  --green-dark: #078b45;
  --green-soft: #e9fbf1;
  --orange: #ff8a00;
  --yellow: #ffc533;
  --light-blue: #eef8fd;
  --off-white: #f8fbfd;
  --white: #ffffff;
  --text: #10213d;
  --text-light: #52627a;
  --border: #d9e5ee;
  --shadow-sm: 0 10px 30px rgba(15, 40, 75, 0.08);
  --shadow-md: 0 20px 55px rgba(15, 40, 75, 0.13);
  --shadow-lg: 0 28px 75px rgba(5, 28, 58, 0.2);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 76px;
  --font-heading: "Nunito", "Trebuchet MS", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 11px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
}

p {
  color: var(--text-light);
}

strong {
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  color: var(--navy-dark);
  background: var(--yellow);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(76px, 9vw, 128px);
}

.section--soft {
  background:
    radial-gradient(circle at 9% 10%, rgba(83, 184, 244, 0.12), transparent 22%),
    linear-gradient(180deg, var(--off-white), var(--light-blue));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
}

.section-heading--on-dark h2,
.section-heading--on-dark p {
  color: var(--white);
}

.section-heading--on-dark p {
  color: #bdd3e8;
}

.section-copy h2 {
  max-width: 670px;
}

.section-copy > p {
  max-width: 640px;
}

.section-copy .lead {
  color: #334967;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.65;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.84fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.card {
  border: 1px solid rgba(185, 208, 224, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(8, 120, 209, 0.13);
  border-radius: 999px;
  color: var(--blue-dark);
  background: #eaf7ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.badge--dark {
  border-color: rgba(255, 255, 255, 0.13);
  color: #bce6ff;
  background: rgba(255, 255, 255, 0.08);
}

.badge--light {
  border-color: rgba(255, 255, 255, 0.18);
  color: #d9f3ff;
  background: rgba(255, 255, 255, 0.1);
}

.badge--bonus {
  color: #73530a;
  background: #fff5c8;
  border-color: #ffe36e;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 13px 30px rgba(9, 185, 90, 0.28);
}

.button--primary:hover {
  box-shadow: 0 17px 38px rgba(9, 185, 90, 0.38);
}

.button--outline {
  color: var(--blue-dark);
  border-color: #b6d9ef;
  background: var(--white);
}

.button--outline:hover {
  border-color: var(--blue);
  background: #f4fbff;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 0.78rem;
}

.button--large {
  min-height: 58px;
  padding-inline: 28px;
}

.button--block {
  width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy);
  border-radius: 8px;
  background: var(--yellow);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

/* Topbar e cabeçalho */
.topbar {
  position: relative;
  z-index: 100;
  color: var(--white);
  background: var(--navy-dark);
  font-size: 0.79rem;
  font-weight: 700;
}

.topbar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.topbar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(12, 41, 80, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(10, 38, 72, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #d6ebf8;
  border-radius: 15px;
  background: linear-gradient(145deg, #f7fcff, #e8f7ff);
  box-shadow: 0 7px 18px rgba(8, 120, 209, 0.12);
  font-size: 1.65rem;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand__copy strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.14rem;
  font-weight: 900;
}

.brand__copy small {
  margin-top: 5px;
  color: var(--blue);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: #334963;
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -7px;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  content: "";
  transition: right var(--transition), left var(--transition);
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 715px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 33, 74, 0.98), rgba(7, 21, 47, 0.99)),
    radial-gradient(circle at 78% 30%, rgba(8, 120, 209, 0.7), transparent 36%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 24px 24px, rgba(255, 255, 255, 0.18) 1px, transparent 1.5px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero__glow--one {
  top: -220px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(83, 184, 244, 0.31), transparent 68%);
}

.hero__glow--two {
  bottom: -300px;
  left: 22%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(9, 185, 90, 0.13), transparent 70%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 715px;
  padding-block: clamp(60px, 8vw, 95px);
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
  gap: clamp(40px, 6vw, 78px);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
}

.text-highlight {
  position: relative;
  display: inline;
  color: #72d1ff;
}

.text-highlight::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 197, 51, 0.18);
  content: "";
  transform: rotate(-1deg);
}

.hero__lead {
  max-width: 670px;
  margin-bottom: 26px;
  color: #c8d8e9;
  font-size: clamp(1.05rem, 1.7vw, 1.21rem);
}

.hero__checks {
  display: grid;
  margin: 0 0 32px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.hero__checks li {
  display: flex;
  color: #edf8ff;
  align-items: center;
  gap: 11px;
  font-size: 0.96rem;
  font-weight: 600;
}

.hero__checks span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-dark);
  background: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.microcopy {
  margin: 17px 0 0;
  color: #a8bfd7;
  font-size: 0.76rem;
  font-weight: 600;
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero__image-wrap {
  position: relative;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 85px rgba(0, 9, 28, 0.45);
  transform: rotate(1.25deg);
}

.hero__image-wrap::after {
  position: absolute;
  z-index: -1;
  inset: 10% 6% -7%;
  border-radius: 40%;
  background: rgba(0, 0, 0, 0.35);
  filter: blur(35px);
  content: "";
}

.hero__image-wrap img {
  width: 100%;
  border-radius: 22px;
}

.floating-chip {
  position: absolute;
  display: flex;
  padding: 11px 15px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px rgba(0, 11, 31, 0.22);
  line-height: 1.1;
}

.floating-chip--year {
  top: 7%;
  left: -30px;
  flex-direction: column;
  align-items: flex-start;
}

.floating-chip--year strong {
  color: var(--blue-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.floating-chip--year span {
  color: var(--text-light);
  font-size: 0.68rem;
}

.floating-chip--pdf {
  right: -18px;
  bottom: 10%;
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-chip__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
}

/* Indicadores */
.stats {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 -15px 40px rgba(5, 27, 58, 0.05);
}

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

.stat {
  display: flex;
  min-height: 112px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: 0;
}

.stat__icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border-radius: 14px;
  background: var(--light-blue);
  font-size: 1.25rem;
}

.stat div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.stat strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.17rem;
}

.stat span:last-child {
  margin-top: 5px;
  color: var(--text-light);
  font-size: 0.72rem;
}

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

.pain-card {
  position: relative;
  min-height: 260px;
  padding: 28px 24px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pain-card::after {
  position: absolute;
  right: -35px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--light-blue);
  content: "";
  opacity: 0.75;
}

.pain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.pain-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 15px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
}

.card-icon--orange { color: #a65200; background: #fff0dd; }
.card-icon--blue { color: var(--blue-dark); background: #e6f5fe; }
.card-icon--yellow { color: #725000; background: #fff6cb; }
.card-icon--green { color: var(--green-dark); background: #e7fbef; }

.insight-banner {
  display: flex;
  max-width: 910px;
  margin: 38px auto 0;
  padding: 22px 26px;
  align-items: center;
  gap: 18px;
  border: 1px solid #cfe7f6;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.insight-banner__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 14px;
  background: #fff4bd;
  font-size: 1.45rem;
}

.insight-banner p {
  margin: 0;
}

.insight-banner strong {
  color: var(--navy);
}

/* Apresentação */
.split-grid--product {
  grid-template-columns: minmax(420px, 0.98fr) minmax(0, 1.02fr);
}

.product-display {
  position: relative;
}

.product-display::before {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: 3%;
  bottom: 2%;
  left: 3%;
  border-radius: 40% 60% 52% 48%;
  background: linear-gradient(145deg, #e3f6ff, #eafcf1);
  content: "";
  transform: rotate(-4deg);
}

.product-display__frame {
  padding: 10px;
  border: 1px solid #d4e8f5;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}

.product-display__frame img {
  border-radius: 20px;
}

.product-display__note {
  position: absolute;
  right: -6px;
  bottom: -20px;
  display: inline-flex;
  padding: 13px 17px;
  align-items: center;
  gap: 8px;
  border-radius: 13px;
  color: #705000;
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(134, 89, 0, 0.18);
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-list {
  display: grid;
  margin: 28px 0 32px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #30445e;
  font-weight: 600;
}

.feature-list span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 900;
}

/* Método */
.method {
  color: var(--white);
  background:
    radial-gradient(circle at 50% -20%, rgba(83, 184, 244, 0.22), transparent 43%),
    var(--navy);
}

.method .section-heading h2,
.method .section-heading p {
  color: var(--white);
}

.method .section-heading p {
  color: #bad0e5;
}

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

.method__track::before {
  position: absolute;
  z-index: 0;
  top: 49px;
  right: 11%;
  left: 11%;
  height: 2px;
  background: linear-gradient(to right, var(--blue-light), var(--green), var(--yellow));
  content: "";
  opacity: 0.4;
}

.method-step {
  position: relative;
  z-index: 1;
  min-height: 270px;
  padding: 30px 24px 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(10px);
}

.method-step__letter {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.18);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
}

.method-step:nth-child(2) .method-step__letter,
.method-step:nth-child(3) .method-step__letter {
  color: var(--white);
  background: var(--green);
}

.method-step:nth-child(4) .method-step__letter {
  color: var(--white);
  background: var(--blue);
}

.method-step__number {
  position: absolute;
  top: 26px;
  right: 24px;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
}

.method-step h3 {
  color: var(--white);
  font-size: 1.35rem;
}

.method-step p {
  margin-bottom: 0;
  color: #b9cce0;
  font-size: 0.88rem;
}

.method__conclusion {
  max-width: 760px;
  margin: 38px auto 0;
  color: #c9dbee;
  text-align: center;
}

.method__conclusion strong {
  color: var(--white);
}

/* Conteúdos */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.content-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.content-card--featured {
  color: var(--white);
  border-color: var(--blue);
  background: linear-gradient(145deg, var(--blue), #085caa);
  transform: translateY(-10px);
}

.content-card--featured h3,
.content-card--featured p {
  color: var(--white);
}

.content-card--featured p {
  color: #d9efff;
}

.content-card--featured:hover {
  transform: translateY(-15px);
}

.content-card__label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--light-blue);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.content-card--featured .content-card__label {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.content-card__icon {
  display: block;
  margin: 38px 0 22px;
  font-size: 3rem;
}

.content-card h3 {
  font-size: 1.45rem;
}

.content-card p {
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.content-card__foot {
  position: absolute;
  bottom: 26px;
  left: 30px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.content-card--featured .content-card__foot {
  color: var(--yellow);
}

.included-strip {
  display: flex;
  margin-top: 38px;
  padding: 18px 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  border: 1px solid #d1e9f6;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.included-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #38516d;
  font-size: 0.82rem;
  font-weight: 700;
}

.included-strip i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.67rem;
  font-style: normal;
}

/* Anos */
.years {
  overflow: hidden;
}

.years .section-heading {
  margin-bottom: 38px;
}

.years__scroll {
  display: grid;
  grid-template-columns: repeat(9, minmax(98px, 1fr));
  gap: 10px;
}

.year-card {
  display: flex;
  min-height: 190px;
  padding: 22px 12px;
  align-items: center;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 23px rgba(22, 59, 93, 0.06);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.year-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.year-card strong {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 9px;
  place-items: center;
  border-radius: 19px;
  color: var(--white);
  background: var(--blue);
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
}

.year-card:nth-child(3n + 2) strong { background: var(--green); }
.year-card:nth-child(3n) strong { color: var(--navy); background: var(--yellow); }

.year-card span {
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 900;
}

.year-card small {
  margin-top: 10px;
  color: var(--text-light);
  font-size: 0.65rem;
  line-height: 1.35;
}

.fine-print {
  max-width: 850px;
  margin: 22px 0 0;
  color: #718096;
  font-size: 0.74rem;
}

/* Prévias */
.previews {
  background:
    radial-gradient(circle at 15% 25%, rgba(8, 120, 209, 0.35), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(9, 185, 90, 0.16), transparent 25%),
    var(--navy-dark);
  overflow: hidden;
}

.preview-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.78fr 0.92fr;
  gap: 20px;
  align-items: stretch;
}

.preview-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 8px 8px 54px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 55px rgba(0, 8, 25, 0.35);
  cursor: zoom-in;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.preview-card:hover {
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-6px);
}

.preview-card > img,
.preview-card__crop {
  display: block;
  width: 100%;
  height: 340px;
  border-radius: 17px;
  object-fit: cover;
  overflow: hidden;
}

.preview-card > img {
  object-position: center;
}

.preview-card__crop {
  position: relative;
  background: var(--white);
}

.preview-card__crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.preview-card--essential .preview-card__crop img {
  width: 195%;
  max-width: none;
  object-position: left center;
}

.preview-card--premium .preview-card__crop img {
  width: 175%;
  max-width: none;
  transform: translateX(-42%);
}

.preview-card:hover img {
  transform: scale(1.025);
}

.preview-card--premium:hover .preview-card__crop img {
  transform: translateX(-42%) scale(1.025);
}

.preview-card > span:last-child {
  position: absolute;
  right: 20px;
  bottom: 15px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: left;
}

/* Rotina */
.routine {
  background:
    linear-gradient(90deg, rgba(238, 248, 253, 0.66) 1px, transparent 1px),
    linear-gradient(rgba(238, 248, 253, 0.66) 1px, transparent 1px),
    var(--white);
  background-size: 34px 34px;
}

.routine__note {
  display: flex;
  max-width: 560px;
  margin-top: 28px;
  padding: 18px 20px;
  align-items: flex-start;
  gap: 13px;
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
  background: rgba(238, 248, 253, 0.9);
}

.routine__note p {
  margin: 0;
  font-size: 0.82rem;
}

.week-card {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 620px;
  margin-inline: auto;
  padding: 28px;
  border: 1px solid #d7e8f2;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.week-card::before {
  position: absolute;
  z-index: -1;
  top: 20px;
  right: -16px;
  bottom: -16px;
  left: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-light), var(--green));
  content: "";
}

.week-card__top {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.week-card__top div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.week-card__top small {
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.week-card__top strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.week-card__top > span {
  flex: 0 0 auto;
  font-size: 2rem;
}

.week-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.week-list li {
  display: grid;
  min-width: 0;
  min-height: 56px;
  padding: 10px 12px;
  align-items: center;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  gap: 12px;
  border-radius: 13px;
  background: var(--off-white);
}

.week-list li > span {
  display: grid;
  width: 42px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-dark);
  background: #e8f6fe;
  font-size: 0.68rem;
  font-weight: 900;
}

.week-list strong {
  min-width: 0;
  color: #304660;
  font-size: 0.82rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.week-list i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 900;
}

/* Acesso */
.access {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 120, 209, 0.24), transparent 40%),
    var(--navy);
}

.access__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.access-step {
  position: relative;
  min-height: 260px;
  padding: 32px 27px 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.access-step__num {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 255, 255, 0.16);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
}

.access-step__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid #d8e8f2;
  border-radius: 17px;
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(3, 20, 46, 0.12);
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.access-step h3 {
  color: var(--white);
}

.access-step p {
  margin-bottom: 0;
  color: #bdd0e3;
  font-size: 0.88rem;
}

.access__arrow {
  color: var(--yellow);
  font-size: 1.6rem;
}

.access__micro {
  margin: 30px 0 0;
  color: #a9c1d8;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

/* Benefícios */
.parent-benefits {
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  position: relative;
  min-height: 185px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.benefit-card::after {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--light-blue);
  content: "";
  opacity: 0.7;
}

.benefit-card:hover {
  border-color: #b2d9ef;
  transform: translateY(-4px);
}

.benefit-card > span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 18px;
  font-size: 1.55rem;
}

.benefit-card h3 {
  font-size: 1.12rem;
}

.benefit-card p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.student-benefits {
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 197, 51, 0.22), transparent 22%),
    linear-gradient(135deg, #eef9ff, #f2fff7);
}

.split-grid--benefits {
  grid-template-columns: minmax(350px, 0.75fr) minmax(0, 1.25fr);
}

.student-benefits__visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.student-benefits__visual::before,
.student-benefits__visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.student-benefits__visual::before {
  width: 390px;
  height: 390px;
  border: 1px dashed rgba(8, 120, 209, 0.25);
}

.student-benefits__visual::after {
  width: 300px;
  height: 300px;
  background: linear-gradient(145deg, rgba(83, 184, 244, 0.2), rgba(9, 185, 90, 0.16));
}

.owl-card {
  position: relative;
  z-index: 2;
  display: flex;
  width: 265px;
  min-height: 300px;
  padding: 34px 25px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: rotate(-2deg);
}

.owl-card__emoji {
  margin-bottom: 20px;
  font-size: 6.5rem;
  line-height: 1;
}

.owl-card strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.owl-card small {
  margin-top: 8px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
}

.orbit {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  font-size: 1.25rem;
  font-weight: 900;
}

.orbit--one {
  top: 18%;
  right: 12%;
  color: #795900;
  background: var(--yellow);
  transform: rotate(9deg);
}

.orbit--two {
  bottom: 16%;
  left: 10%;
  color: var(--white);
  background: var(--green);
  transform: rotate(-8deg);
}

.student-list {
  display: grid;
  margin-top: 28px;
  gap: 10px;
}

.student-list article {
  display: flex;
  padding: 14px 16px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(202, 226, 240, 0.75);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.68);
}

.student-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--blue-dark);
  background: #e4f5fe;
  font-size: 0.72rem;
  font-weight: 900;
}

.student-list h3 {
  margin-bottom: 3px;
  font-size: 1rem;
}

.student-list p {
  margin: 0;
  font-size: 0.78rem;
}

/* Bônus */
.bonuses {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 197, 51, 0.12), transparent 25%),
    var(--off-white);
}

.bonus-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: stretch;
}

.bonus-visual {
  display: flex;
  min-height: 100%;
  padding: 14px;
  align-items: center;
  border: 1px solid #d7e8f1;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.bonus-visual img {
  width: 100%;
  border-radius: 21px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.bonus-card {
  position: relative;
  min-height: 230px;
  padding: 27px 23px 22px;
  border: 1px solid #e1dfcc;
  border-radius: 19px;
  background: var(--white);
  overflow: hidden;
}

.bonus-card::after {
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff4c2;
  content: "";
}

.bonus-card--wide {
  min-height: 190px;
  grid-column: span 2;
}

.bonus-card__number {
  color: #9d7500;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-card__icon {
  display: block;
  margin: 20px 0 15px;
  font-size: 2rem;
}

.bonus-card h3 {
  max-width: 290px;
  font-size: 1.07rem;
}

.bonus-card p {
  margin-bottom: 0;
  font-size: 0.78rem;
}

/* Ofertas */
.offers {
  background:
    linear-gradient(180deg, #eaf8ff 0, var(--white) 27%, var(--white) 100%);
  overflow: hidden;
}

.offers__shape {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 900px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 184, 244, 0.16), transparent 68%);
  transform: translateX(-50%);
}

.offer-image {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: -10px auto 70px;
  padding: 9px;
  border: 1px solid #d8e9f3;
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.offer-image img {
  border-radius: 18px;
}

.offer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 990px;
  margin-inline: auto;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 24px;
  align-items: center;
}

.offer-card {
  position: relative;
  padding: 38px 34px 34px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.offer-card--premium {
  padding-top: 52px;
  border: 3px solid var(--green);
  box-shadow: 0 28px 70px rgba(8, 103, 55, 0.2);
  transform: scale(1.025);
}

.offer-card__ribbon {
  position: absolute;
  top: -22px;
  right: 22px;
  left: 22px;
  display: flex;
  min-height: 44px;
  padding: 8px 15px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 11px 24px rgba(9, 185, 90, 0.28);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.offer-card__header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.offer-card__eyebrow {
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-card--premium .offer-card__eyebrow {
  color: var(--green-dark);
}

.offer-card__header h3 {
  margin: 8px 0 9px;
  font-size: 1.68rem;
}

.offer-card__header p {
  margin: 0;
  font-size: 0.84rem;
}

.price {
  display: flex;
  margin: 24px 0 7px;
  align-items: flex-start;
  color: var(--navy);
  line-height: 1;
}

.price > span {
  margin: 9px 5px 0 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.price > strong {
  font-family: var(--font-heading);
  font-size: 4.25rem;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.price > div {
  display: flex;
  margin: 5px 0 0 3px;
  flex-direction: column;
}

.price sup {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
}

.price small {
  margin-top: 4px;
  color: var(--text-light);
  font-size: 0.58rem;
  font-weight: 700;
  white-space: nowrap;
}

.offer-card__difference {
  display: inline-flex;
  margin: 0 0 7px;
  padding: 7px 10px;
  border-radius: 9px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.69rem;
  font-weight: 900;
}

.offer-card__access {
  margin-bottom: 23px;
  color: #718096;
  font-size: 0.68rem;
}

.offer-list {
  display: grid;
  margin: 0 0 24px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #344b66;
  font-size: 0.8rem;
  font-weight: 600;
}

.offer-list span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.65rem;
  font-weight: 900;
}

.offer-card__not-included {
  margin-bottom: 22px;
  padding: 13px 15px;
  border-radius: 12px;
  color: #718096;
  background: #f4f7fa;
  font-size: 0.72rem;
}

.offer-card__bonus-list {
  display: grid;
  margin: 0 0 24px;
  padding: 16px;
  gap: 8px;
  border: 1px solid #cfeeda;
  border-radius: 14px;
  background: #f2fff7;
}

.offer-card__bonus-list strong {
  margin-bottom: 2px;
  color: var(--green-dark);
  font-size: 0.77rem;
}

.offer-card__bonus-list span {
  color: #385348;
  font-size: 0.73rem;
  font-weight: 600;
}

.secure-line {
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #66788d;
  font-size: 0.75rem;
  font-weight: 700;
}

.secure-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #a8b8c7;
}

/* Comparação */
.comparison {
  padding-top: 70px;
  background: var(--off-white);
}

.comparison-table-wrap {
  border: 1px solid var(--border);
  border-radius: 23px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 22px;
  border-bottom: 1px solid #e5edf3;
  font-size: 0.82rem;
}

.comparison-table thead th {
  color: var(--navy);
  background: #f0f9fe;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 900;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead strong {
  display: inline-block;
  margin-top: 5px;
  color: var(--blue);
}

.comparison-table__premium {
  color: var(--white) !important;
  background: var(--green-dark) !important;
}

.comparison-table__premium strong {
  color: var(--yellow) !important;
}

.comparison-table tbody th {
  color: #40546c;
  font-weight: 700;
  text-align: left;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table .yes {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.72rem;
  font-weight: 900;
}

.comparison-table .no {
  color: #a1adba;
}

/* Garantia */
.guarantee {
  padding-block: 65px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 50%, rgba(8, 120, 209, 0.36), transparent 38%),
    var(--navy);
}

.guarantee__inner {
  display: grid;
  max-width: 930px;
  grid-template-columns: 155px 1fr;
  gap: 42px;
  align-items: center;
}

.guarantee__seal {
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 5px solid var(--yellow);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 9px rgba(255, 197, 51, 0.13);
  line-height: 0.85;
}

.guarantee__seal span {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
}

.guarantee__seal small {
  margin-top: 8px;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guarantee h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.guarantee p {
  margin: 0;
  color: #c2d4e6;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  margin-bottom: 0;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion__item {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  overflow: hidden;
}

.accordion__item h3 {
  margin: 0;
}

.accordion__item button {
  display: flex;
  width: 100%;
  min-height: 66px;
  padding: 16px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.99rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion__item button:hover {
  background: var(--off-white);
}

.accordion__item button span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: var(--light-blue);
  font-family: var(--font-body);
  font-size: 1.2rem;
}

.accordion__item button[aria-expanded="true"] {
  color: var(--blue-dark);
  background: #f2faff;
}

.accordion__panel {
  padding: 0 18px 18px;
  background: #f2faff;
}

.accordion__panel p {
  margin: 0;
  font-size: 0.86rem;
}

/* CTA final */
.final-cta {
  position: relative;
  padding-block: clamp(70px, 9vw, 110px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(83, 184, 244, 0.24), transparent 27%),
    radial-gradient(circle at 90% 80%, rgba(9, 185, 90, 0.2), transparent 27%),
    var(--navy-dark);
  overflow: hidden;
}

.final-cta__inner {
  display: grid;
  max-width: 980px;
  grid-template-columns: 155px 1fr;
  gap: 46px;
  align-items: center;
}

.final-cta__owl {
  display: grid;
  width: 155px;
  height: 155px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  font-size: 5.7rem;
  transform: rotate(-4deg);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 690px;
  color: #c3d4e5;
  font-size: 1.05rem;
}

.final-cta small {
  display: block;
  margin-top: 15px;
  color: #9db4ca;
  font-size: 0.72rem;
}

.final-cta__star {
  position: absolute;
  color: var(--yellow);
  font-size: 1.6rem;
  opacity: 0.5;
}

.final-cta__star--one {
  top: 20%;
  left: 7%;
  transform: rotate(16deg);
}

.final-cta__star--two {
  right: 8%;
  bottom: 17%;
  font-size: 2.4rem;
  transform: rotate(-10deg);
}

/* Rodapé */
.site-footer {
  padding: 52px 0 115px;
  color: #b8c9dc;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #061226;
}

.footer__top {
  display: flex;
  padding-bottom: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand--footer .brand__icon {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.brand--footer .brand__copy strong {
  color: var(--white);
}

.brand--footer .brand__copy small {
  color: #7ecdf7;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__links a {
  color: #bfd0e1;
  font-size: 0.78rem;
  font-weight: 600;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__disclaimer {
  max-width: 950px;
  margin: 28px 0;
  color: #8298af;
  font-size: 0.72rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #72879d;
  font-size: 0.7rem;
}

/* Elementos fixos */
.mobile-cta {
  position: fixed;
  z-index: 1200;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  min-height: 66px;
  padding: 9px 10px 9px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #d8e7f0;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(4, 23, 49, 0.23);
  backdrop-filter: blur(14px);
}

.mobile-cta div {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.mobile-cta small {
  color: var(--text-light);
  font-size: 0.62rem;
}

.mobile-cta strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.back-to-top {
  position: fixed;
  z-index: 1100;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #d9e6ee;
  border-radius: 14px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}

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

/* Modal */
.modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  padding: 28px;
  place-items: center;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 13, 29, 0.84);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 96vw);
  max-height: 92vh;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
  overflow: auto;
}

.modal__top {
  display: flex;
  min-height: 54px;
  padding: 4px 4px 12px 10px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.modal__top h2 {
  margin: 0;
  font-size: 1.25rem;
}

.modal__close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: var(--navy);
  background: var(--light-blue);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.modal__image {
  width: 100%;
  border-radius: 15px;
}

.noscript {
  position: fixed;
  z-index: 3000;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 14px;
  border-radius: 12px;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 800;
  text-align: center;
}

/* Animações */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms cubic-bezier(0.2, 0.65, 0.3, 1),
    transform 600ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal--delay {
  transition-delay: 130ms;
}

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

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

@media (max-width: 1100px) {
  :root {
    --container: 960px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1.04fr);
    gap: 36px;
  }

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

  .pain-card {
    min-height: 220px;
  }

  .years__scroll {
    grid-template-columns: repeat(5, 1fr);
  }

  .year-card:nth-child(n + 6) {
    min-height: 175px;
  }

  .bonus-layout {
    grid-template-columns: 0.78fr 1.22fr;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 68px;
  }

  .main-nav {
    display: none;
  }

  .hero__grid {
    padding-block: 70px 85px;
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
    text-align: center;
    justify-self: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__checks {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    width: min(720px, 92%);
    margin-inline: auto;
  }

  .floating-chip--year {
    left: -15px;
  }

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

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

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .split-grid,
  .split-grid--product,
  .split-grid--benefits {
    grid-template-columns: 1fr;
  }

  .product-display {
    width: min(700px, 94%);
    margin-inline: auto;
  }

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

  .method__track::before {
    display: none;
  }

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

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

  .content-card--featured {
    transform: none;
  }

  .content-card--featured:hover {
    transform: translateY(-5px);
  }

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

  .preview-card--full {
    grid-column: span 2;
  }

  .week-card {
    width: min(620px, calc(100% - 20px));
    margin-inline: auto;
  }

  .week-card::before {
    top: 12px;
    right: -10px;
    bottom: -10px;
    left: 10px;
  }

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

  .access__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .access-step {
    min-height: 220px;
  }

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

  .student-benefits__visual {
    min-height: 430px;
    order: 2;
  }

  .bonus-layout {
    grid-template-columns: 1fr;
  }

  .bonus-visual {
    max-width: 720px;
    margin-inline: auto;
  }

  .offer-grid {
    max-width: 700px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .offer-card--premium {
    transform: none;
  }

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

  .faq .section-heading {
    position: static;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 88px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding-block: 72px;
  }

  .topbar__inner {
    gap: 7px;
    font-size: 0.68rem;
  }

  .topbar__inner span:nth-of-type(4),
  .topbar__inner span:nth-of-type(5) {
    display: none;
  }

  .brand__copy strong {
    font-size: 1rem;
  }

  .brand__copy small {
    font-size: 0.54rem;
  }

  .brand__icon {
    width: 40px;
    height: 40px;
  }

  .header__cta {
    padding-inline: 13px;
    font-size: 0.67rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    min-height: auto;
    padding-block: 60px 76px;
  }

  .hero__content {
    text-align: left;
  }

  .hero__lead {
    margin-inline: 0;
  }

  .hero__checks {
    width: auto;
    margin-inline: 0;
  }

  .hero__actions {
    justify-content: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .microcopy {
    text-align: center;
  }

  .hero__visual {
    width: 100%;
  }

  .floating-chip--year {
    top: -18px;
    left: -4px;
  }

  .floating-chip--pdf {
    right: -3px;
    bottom: -25px;
  }

  .floating-chip--year strong {
    font-size: 0.82rem;
  }

  .floating-chip--year span,
  .floating-chip--pdf {
    font-size: 0.59rem;
  }

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

  .stat {
    min-height: 84px;
    padding: 16px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: 0;
  }

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

  .pain-card {
    min-height: auto;
  }

  .insight-banner {
    align-items: flex-start;
  }

  .product-display__note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
  }

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

  .method-step {
    min-height: 220px;
  }

  .years__scroll {
    display: flex;
    margin-right: -15px;
    padding: 5px 15px 18px 0;
    gap: 12px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .year-card {
    min-width: 132px;
    min-height: 175px;
    scroll-snap-align: start;
  }

  .preview-gallery {
    display: flex;
    margin-right: -15px;
    padding-right: 15px;
    gap: 14px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
  }

  .preview-card {
    min-width: min(84vw, 390px);
    scroll-snap-align: center;
  }

  .preview-card > img,
  .preview-card__crop {
    height: 270px;
  }

  .week-card {
    width: calc(100% - 16px);
    padding: 22px 18px;
    border-radius: 26px;
  }

  .week-card::before {
    top: 9px;
    right: -8px;
    bottom: -8px;
    left: 8px;
    border-radius: 26px;
  }

  .week-card__top {
    margin-bottom: 16px;
    padding-bottom: 15px;
  }

  .week-card__top strong {
    font-size: 1.18rem;
  }

  .week-card__top > span {
    font-size: 1.7rem;
  }

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

  .student-benefits__visual {
    min-height: 380px;
  }

  .student-benefits__visual::before {
    width: 320px;
    height: 320px;
  }

  .student-benefits__visual::after {
    width: 250px;
    height: 250px;
  }

  .owl-card {
    width: 225px;
    min-height: 270px;
  }

  .owl-card__emoji {
    font-size: 5.2rem;
  }

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

  .bonus-card,
  .bonus-card--wide {
    min-height: 205px;
    grid-column: auto;
  }

  .offer-image {
    margin-bottom: 58px;
  }

  .offer-card {
    padding: 34px 22px 26px;
  }

  .offer-card--premium {
    padding-top: 50px;
  }

  .offer-card__ribbon {
    right: 12px;
    left: 12px;
    font-size: 0.7rem;
  }

  .secure-line {
    gap: 7px;
  }

  .guarantee__inner,
  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .guarantee__seal,
  .final-cta__owl {
    margin-inline: auto;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer__top,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__links {
    gap: 12px 18px;
  }

  .mobile-cta {
    display: flex;
  }

  .back-to-top {
    right: 18px;
    bottom: 96px;
  }

  .modal {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.25rem, 11.4vw, 3.05rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .topbar__inner span:nth-of-type(2),
  .topbar__inner span:nth-of-type(3) {
    display: none;
  }

  .header__inner {
    gap: 10px;
  }

  .brand__icon {
    width: 37px;
    height: 37px;
    font-size: 1.35rem;
  }

  .brand__copy small {
    display: none;
  }

  .header__cta {
    min-height: 40px;
    padding: 9px 11px;
    font-size: 0.61rem;
  }

  .hero__grid {
    padding-top: 52px;
  }

  .hero__image-wrap {
    padding: 6px;
    border-radius: 20px;
  }

  .hero__image-wrap img {
    border-radius: 15px;
  }

  .floating-chip {
    padding: 8px 10px;
  }

  .floating-chip--year span {
    display: none;
  }

  .floating-chip--pdf {
    max-width: 135px;
  }

  .floating-chip__icon {
    width: 31px;
    height: 31px;
  }

  .week-card {
    width: calc(100% - 14px);
    padding: 18px 13px;
  }

  .week-card::before {
    right: -7px;
    bottom: -7px;
    left: 7px;
  }

  .week-list li {
    min-height: 52px;
    padding: 8px 9px;
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    gap: 7px;
  }

  .week-list li > span {
    width: 38px;
    height: 34px;
    font-size: 0.62rem;
  }

  .week-list strong {
    font-size: 0.73rem;
  }

  .week-list i {
    width: 23px;
    height: 23px;
  }

  .week-card__top {
    gap: 10px;
  }

  .week-card__top small {
    font-size: 0.6rem;
  }

  .week-card__top strong {
    font-size: 1.08rem;
  }

  .student-benefits__visual {
    min-height: 340px;
  }

  .student-benefits__visual::before {
    width: 275px;
    height: 275px;
  }

  .owl-card {
    width: 200px;
    min-height: 240px;
  }

  .owl-card__emoji {
    font-size: 4.5rem;
  }

  .price > strong {
    font-size: 3.8rem;
  }

  .comparison-table-wrap {
    border-radius: 16px;
  }

  .guarantee__seal {
    width: 130px;
    height: 130px;
  }

  .final-cta__owl {
    width: 130px;
    height: 130px;
    font-size: 4.6rem;
  }

  .mobile-cta {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: 1240px;
  }

  .hero__grid {
    min-height: 760px;
  }
}

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

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

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