:root {
  --font-title: "Classical Garamond BT", "Classical Garamond", Garamond, "Times New Roman", serif;
  --font-body: "Montserrat", Arial, Helvetica, sans-serif;
  --bg: #0a3f63;
  --bg-deep: #052b46;
  --bg-soft: #f6f5f2;
  --text: #0d2740;
  --text-soft: #5b6775;
  --gold: #cda55e;
  --gold-soft: #e8d2a6;
  --white: #ffffff;
  --line: rgba(10, 63, 99, 0.12);
  --shadow: 0 20px 60px rgba(2, 18, 31, 0.12);
  --radius: 20px;
  --container: min(1180px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button { font: inherit; }
.container {
  width: var(--container);
  margin: 0 auto;
}
.section {
  padding: 84px 0;
}
.center { text-align: center; }
.section-kicker {
  margin: 0 0 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: .95rem;
  font-weight: 700;
}
.section-title {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: #083a5d;
  box-shadow: 0 16px 28px rgba(209, 162, 69, .22);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: none;
}
.btn-secondary {
  background: #fff;
  color: var(--bg);
  border-color: rgba(10, 63, 99, 0.18);
}
.btn-secondary:hover {
  background: #f8fafb;
}
.btn-dark {
  background: #232323;
  color: #fff;
}
.btn-dark:hover {
  background: #111;
}

/* HEADER */
.site-header {
  --header-height: 82px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  background: #0a3f63;
  backdrop-filter: blur(10px);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #cda55e;
}
.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  position: relative;
  z-index: 82;
  flex: 0 0 auto;
}
.brand img {
  width: 152px;
  height: auto;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: #fff;
  position: relative;
  z-index: 82;
}
.site-nav {
  margin-left: auto;
  position: relative;
  z-index: 81;
}
.site-nav__list,
.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
}
.site-nav__item { position: relative; }
.site-nav__link,
.site-nav__button {
  color: rgba(255,255,255,.92);
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-nav__button {
  border: 0 !important;
  background: transparent !important;
  cursor: pointer;
  padding: 0 !important;
  margin: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.site-nav__caret {
  font-size: .72rem;
  line-height: 1;
  transform: translateY(1px);
}
.site-nav__link:hover,
.site-nav__item:hover > .site-nav__link,
.site-nav__item:hover > .site-nav__button,
.site-nav__item.is-open > .site-nav__button,
.site-nav__item.is-active > .site-nav__button,
.site-nav__item.is-active > .site-nav__link {
  color: var(--gold);
}
.mega-menu {
  position: fixed;
  left: 50%;
  top: calc(var(--header-height) + 10px);
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 56px));
  background: rgba(255, 255, 255, 0.985);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(2, 18, 31, 0.18);
  padding: 18px 26px 22px;
  display: grid;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
}
.mega-menu::before {
  content: "";
  position: absolute;
  inset: -12px 0 auto;
  height: 12px;
}
.mega-menu--3col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mega-menu--4col {
  width: min(1260px, calc(100vw - 56px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.site-nav__item--has-mega:hover > .mega-menu,
.site-nav__item--has-mega:focus-within > .mega-menu,
.site-nav__item--has-mega.is-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-menu__card {
  min-width: 0;
  text-decoration: none;
}
.mega-menu__card.is-current .mega-menu__title,
.mega-menu__card:hover .mega-menu__title {
  color: #b38433;
}
.mega-menu__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.mega-menu__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 22px;
}
.mega-menu__title {
  margin: 0;
  color: #cda55e;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}
.mega-menu__text {
  margin: 0;
  color: #21394d;
  font-size: .98rem;
  line-height: 1.28;
}

main {
  padding-top: 82px;
}

/* HERO */
.crisol-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  background: #052b46;
  color: #fff;
  overflow: hidden;
}
.crisol-hero__media,
.crisol-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.crisol-hero__media img {
  object-fit: cover;
  object-position: center center;
}
.crisol-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 17, 29, 0.78) 0%, rgba(3, 17, 29, 0.60) 22%, rgba(3, 17, 29, 0.28) 46%, rgba(3, 17, 29, 0.08) 72%, rgba(3, 17, 29, 0) 100%);
}
.crisol-hero__grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: center;
}
.crisol-hero__content {
  grid-column: 1;
  width: 100%;
  max-width: 900px;
  padding-left: 34px;
  transform: translateY(72px);
}
.crisol-hero .section-kicker {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 1.46vw, 1.68rem);
  line-height: 1.08;
}
.crisol-hero__title {
  margin: 0 0 28px;
}
.crisol-hero__title-image {
  width: min(620px, 100%);
}
.crisol-hero__actions .btn {
  min-width: 292px;
  min-height: 58px;
}

/* META STRIP */
.crisol-meta {
  background: #041d2b;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.crisol-meta__shell {
  position: relative;
}
.crisol-meta__viewport {
  overflow: hidden;
}
.crisol-meta__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}
.crisol-meta__item {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}
.crisol-meta__item + .crisol-meta__item {
  border-left: 1px solid rgba(255,255,255,.12);
}
.crisol-meta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}
.crisol-meta__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.crisol-meta__item p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.28;
  color: rgba(255,255,255,.94);
}
.meta-arrow,
.meta-dots {
  display: none;
}

/* OVERVIEW */
.overview {
  background: #ffffff;
}
.overview__intro {
  text-align: center;
}
.overview__eyebrow {
  margin: 0 0 10px;
  color: #bf6845;
  font-size: 1.05rem;
  font-weight: 700;
}
.overview__title {
  max-width: 1140px;
  margin: 0 auto 26px;
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 4vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #041d2b;
  font-weight: 700;
}
.overview__lead {
  max-width: 1220px;
  margin: 0 auto;
  font-size: 1.14rem;
  line-height: 1.55;
  color: #263747;
}
.overview__lead span,
.overview__transform-copy span {
  display: inline;
  color: #041d2b;
  background: linear-gradient(90deg, var(--gold) 0 0) left 92% / 0% 78% no-repeat;
  padding: 0 .22em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  animation: overviewHighlightGrow 1.15s ease forwards;
}
.overview__transform {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: start;
  margin-top: 88px;
}
.overview__transform-title h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #041d2b;
  font-weight: 700;
}
.overview__transform-copy p {
  margin: 0 0 26px;
  color: #263747;
  font-size: 1.16rem;
  line-height: 1.55;
}
.overview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.overview__actions .btn {
  min-width: 160px;
}

/* PROGRAM */
.program {
  background: #fff;
}
.program__title {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.program__lead {
  max-width: 920px;
  margin: 0 auto;
  color: #041d2b;
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.65;
}
.program-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.program-card {
  position: relative;
  min-height: 350px;
  transition: transform .28s ease, box-shadow .28s ease;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-card__icon-wrap {
  position: absolute;
  top: 12px;
  right: 22px;
  width: 96px;
  height: 96px;
  margin: 0;
  background: var(--gold);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(205, 165, 94, 0.22);
  z-index: 2;
}

.program-card__icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.program-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.program-card__body {
  background: #083a5d;
  color: #fff;
  border-radius: 28px;
  min-height: 350px;
  padding: 170px 30px 34px;
  box-shadow: 0 18px 42px rgba(7, 40, 65, .12);
}

.program-card__number {
  display: block;
  margin-bottom: 14px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.program-card__body h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.45;
  font-weight: 700;
  max-width: 180px;
}
.learn {
  margin-top: 90px;
}
.learn__header {
  margin-bottom: 26px;
}
.learn__title {
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  max-width: none;
  white-space: nowrap;
}
.learn__title-accent {
  color: var(--gold);
}
.learn__lead {
  max-width: 900px;
}
.module-content {
  padding-top: 2px;
}
.module-summary {
  margin: 0 0 16px !important;
  color: #355067;
}
.module-content ul {
  margin: 0;
  padding-left: 18px;
  color: #355067;
}
.module-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}
.module-content li:last-child {
  margin-bottom: 0;
}

/* FAQ / ACCORDION */
.help-center-section {
  background: #fff;
  padding: 56px 0 36px;
}
.help-center-section .container {
  width: min(1420px, calc(100vw - 48px));
}
.help-center-header {
  margin: 0 auto 26px;
  max-width: 1080px;
  text-align: center;
}
.help-center-title {
  margin: 0 0 14px;
  color: #0a2438;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.help-center-lead {
  margin: 0 auto;
  max-width: 980px;
  color: #355067;
  font-size: 1.12rem;
  line-height: 1.55;
}
.help-center-panel {
  max-width: 1420px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(8, 53, 86, 0.14);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item { margin: 0; }
.faq-item + .faq-item {
  border-top: 1px solid rgba(8, 53, 86, 0.10);
}
.faq-question {
  width: 100%;
  min-height: 84px;
  border: 0;
  background: #ffffff;
  color: #0a2438;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}
.faq-question:hover {
  background: #fafbfd;
}
.faq-icon {
  flex: 0 0 auto;
  color: #0a2438;
  font-size: 18px;
  line-height: 1;
  transition: transform .28s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 38px;
  transition: max-height 0.34s ease, opacity 0.22s ease, padding-top 0.34s ease, padding-bottom 0.34s ease;
}
.faq-item.is-open .faq-answer {
  max-height: 900px;
  opacity: 1;
  padding-top: 0;
  padding-bottom: 26px;
}
.faq-answer p {
  margin: 0;
  max-width: 1280px;
  color: #355067;
  font-size: 1.04rem;
  line-height: 1.7;
}
.faq-section {
  padding-top: 10px;
  padding-bottom: 24px;
}

/* FINAL CTA */
.final-cta {
  background: linear-gradient(180deg, #052b46 0%, #083a5d 100%);
  color: #fff;
  padding-top: 52px;
}
.final-cta__shell {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  padding: 48px 56px;
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
  background: rgba(255,255,255,.03);
  text-align: center;
}
.final-cta__shell h2 {
  max-width: 980px;
  margin: 0 auto 22px;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
}
.final-cta__shell p {
  max-width: 1040px;
  margin: 0 auto 30px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: rgba(255,255,255,.9);
}
.final-cta__shell .btn {
  min-width: 292px;
}

/* FOOTER */
.site-footer {
  background: #083a5d;
  color: #fff;
  padding-top: 38px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.footer-brand img {
  width: 320px;
  max-width: 100%;
  height: auto;
}
.footer-address {
  margin-top: 22px;
  color: rgba(255,255,255,.95);
  line-height: 1.45;
  font-size: .98rem;
}
.footer-social {
  margin-top: 48px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, opacity .2s ease;
}
.footer-social-link:hover {
  transform: translateY(-2px);
  opacity: .95;
}
.footer-social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.footer-column h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.footer-column a,
.footer-column span {
  display: block;
  margin: 0 0 10px;
  color: rgba(255,255,255,.92);
  font-size: .96rem;
  line-height: 1.3;
}
.footer-column a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 34px;
  padding: 18px 0 22px;
  text-align: center;
  color: rgba(255,255,255,.9);
  font-size: .92rem;
}

/* WHATSAPP */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background: transparent;
  border: none;
  box-shadow: none;
}
.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}
.floating-whatsapp img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* RESPONSIVO */
@media (max-width: 1160px) {
  .site-nav__list,
  .site-nav ul { gap: 22px; }
  .mega-menu { width: min(1060px, calc(100vw - 48px)); }
  .mega-menu--4col { width: min(1120px, calc(100vw - 48px)); }
  .program-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .overview__transform { grid-template-columns: 1fr; gap: 24px; }
  .overview__transform-title h3 { max-width: 720px; }
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .site-nav__list,
  .site-nav ul { gap: 18px; }
  .site-nav__link,
  .site-nav__button { font-size: .96rem; }
  .mega-menu,
  .mega-menu--4col { width: calc(100vw - 44px); }

  .help-center-section .container,
  .faq-section .container { width: calc(100vw - 28px); }
  .help-center-title { font-size: clamp(2.1rem, 6vw, 3.4rem); }
  .help-center-lead { font-size: 1rem; line-height: 1.5; }
  .faq-question { min-height: 76px; padding: 0 26px; font-size: 1rem; }
  .faq-answer { padding-left: 26px; padding-right: 26px; }
  .faq-answer p,
  .module-content li { font-size: 0.98rem; line-height: 1.62; }
}


@keyframes overviewHighlightGrow {
  from { background-size: 0% 78%; }
  to { background-size: 100% 78%; }
}

.program__title-accent {
  color: var(--gold);
}

@media (min-width: 821px) {
  .crisol-hero {
    min-height: clamp(560px, calc(100vh - 190px), 720px);
  }

  .crisol-hero__grid {
    min-height: clamp(560px, calc(100vh - 190px), 720px);
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
  }

  .crisol-hero__content {
    grid-column: 1;
    justify-self: start;
    align-self: center;
    width: 100%;
    max-width: 900px;
    padding-left: 34px;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    transform: translateY(132px);
    text-align: left;
  }

  .crisol-hero .section-kicker {
    white-space: nowrap;
    width: min(760px, 100%);
    max-width: 100%;
    font-size: clamp(1.38rem, 1.46vw, 1.68rem);
    line-height: 1.06;
    margin: 0 0 18px;
    color: var(--gold);
    font-family: var(--font-title);
    letter-spacing: 0;
  }

  .crisol-hero__title {
    margin: 0 0 16px;
  }

  .crisol-hero__title-image {
    width: min(620px, 100%);
    margin: 0 0 22px;
  }

  .crisol-hero__actions .btn {
    min-width: 292px;
    min-height: 58px;
  }

  .crisol-meta {
    background: #041d2b;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .crisol-meta__track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
  }

  .crisol-meta__item {
    min-height: 120px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 30px;
  }

  .crisol-meta__item + .crisol-meta__item {
  border-left: 0;
}

  .crisol-meta__item p {
    font-size: 1rem;
    line-height: 1.35;
    color: rgba(255,255,255,.94);
  }

  .overview {
    background: #ffffff;
  }

  .overview__title {
    color: #041d2b;
    font-family: var(--font-body);
  }

  .overview__transform-title h3 {
    color: #041d2b;
    font-family: var(--font-body);
  }

  .overview__lead span,
  .overview__transform-copy span {
    color: #041d2b;
    background: linear-gradient(90deg, var(--gold) 0 0) left 92% / 0% 78% no-repeat;
  }

  .overview__actions .btn-secondary,
  .overview__actions .btn-secondary.dark {
    background: #fff;
    color: #041d2b;
    border: 1px solid #041d2b;
  }

  .overview__actions .btn-secondary:hover,
  .overview__actions .btn-secondary.dark:hover {
    background: #f7f9fb;
  }

  .overview__actions .btn-dark {
    background: #041d2b;
    color: #fff;
    border: 1px solid #041d2b;
  }

  .overview__actions .btn-dark:hover {
    background: #083a5d;
  }

  .program__title {
    max-width: 1040px;
  }

  .program__lead {
    color: #041d2b;
    font-family: var(--font-body);
  }

  .program-grid {
    gap: 28px;
    margin-top: 52px;
  }

  .program-card__icon-wrap {
    width: 112px;
    height: 136px;
    margin: 0 auto -28px;
    background: var(--gold);
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(205,165,94,.28);
  }

  .program-card__body {
    background: #0b446d;
    color: #fff;
    border-radius: 24px;
    min-height: 330px;
    padding: 74px 26px 30px;
    box-shadow: 0 18px 42px rgba(7, 40, 65, .12);
  }

  .program-card__number {
    color: rgba(255,255,255,.82);
    font-size: 1.92rem;
    font-weight: 500;
    margin-bottom: 14px;
  }

  .program-card__body h3 {
    font-size: 1.08rem;
    line-height: 1.18;
    font-weight: 700;
  }

  .learn {
    margin-top: 96px;
  }

  .learn__header {
    margin-bottom: 28px;
  }

  .learn__title {
    font-size: clamp(2.4rem, 3.1vw, 3.9rem);
    white-space: nowrap;
  }

  .learn__lead {
    color: #041d2b;
    font-family: var(--font-body);
  }
}

@media (max-width: 820px) {
  .site-header { --header-height: 72px; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(8, 53, 86, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
    display: none;
    box-shadow: 0 8px 18px rgba(2, 18, 31, 0.08);
    backdrop-filter: blur(6px);
  }
  .site-nav.is-open { display: block; }
  .site-nav__link,
  .site-nav__button { color: #083a5d; }
  .site-nav__caret { color: #cda55e; }
  .site-nav__list,
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .site-nav__link,
  .site-nav__button {
    width: 100%;
    justify-content: space-between;
    font-size: 1rem;
  }
  .mega-menu,
  .mega-menu--4col {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 8px;
    padding: 10px 12px;
    display: none;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(8, 53, 86, 0.06);
    border-radius: 10px;
    box-shadow: none;
  }
  .site-nav__item--has-mega.is-open > .mega-menu { display: grid; }
  .mega-menu__card + .mega-menu__card {
    border-top: 1px solid rgba(8, 53, 86, 0.07);
    padding-top: 10px;
  }
  .mega-menu__text { font-size: .94rem; line-height: 1.32; }

  main { padding-top: 72px; }

  .crisol-hero {
    min-height: calc(100svh - 72px);
  }
  .crisol-hero__media img {
    object-position: 60% top;
  }
  .crisol-hero__overlay {
    background: linear-gradient(180deg, rgba(3, 17, 29, 0.16) 0%, rgba(3, 17, 29, 0.34) 24%, rgba(3, 17, 29, 0.62) 54%, rgba(3, 17, 29, 0.86) 100%);
  }
  .crisol-hero__grid {
    min-height: calc(100svh - 72px);
    grid-template-columns: 1fr;
    padding: 116px 0 132px;
    align-items: center;
  }
  .crisol-hero__content {
    width: min(82vw, 500px);
    max-width: min(82vw, 500px);
    margin: 0 auto;
    padding-left: 0;
    transform: none;
    text-align: center;
  }
  .crisol-hero .section-kicker {
    width: 100%;
    font-size: clamp(.9rem, 3vw, 1.08rem);
    line-height: 1.14;
    margin-bottom: 18px;
  }
  .crisol-hero__title { margin-bottom: 28px; }
  .crisol-hero__title-image {
    width: min(78vw, 360px);
    margin: 0 auto;
  }
  .crisol-hero__actions {
    display: flex;
    justify-content: center;
  }
  .crisol-hero__actions .btn {
    width: min(68vw, 300px);
    min-width: 0;
    min-height: 56px;
    padding: 0 14px;
  }

  .crisol-meta__track {
    display: flex;
    gap: 0;
    transition: transform .38s ease;
    will-change: transform;
  }
  .crisol-meta__item {
    flex: 0 0 100%;
    width: 100%;
    min-height: 92px;
    padding: 18px 44px;
    justify-content: flex-start;
  }
  .crisol-meta__item + .crisol-meta__item {
  border-left: 0;
}
  .crisol-meta__item p {
    font-size: .96rem;
    line-height: 1.34;
  }
  .meta-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 0;
    background: var(--gold);
    color: #fff;
    cursor: pointer;
    z-index: 3;
    padding: 0;
    font-size: 0;
  }
  .meta-arrow::before {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1;
  }
  .meta-arrow.prev { left: 0; }
  .meta-arrow.next { right: 0; }
  .meta-arrow.prev::before { content: "‹"; transform: translateX(-1px); }
  .meta-arrow.next::before { content: "›"; transform: translateX(1px); }
  .meta-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 0 14px;
  }
  .meta-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    border: 0;
    padding: 0;
  }
  .meta-dot.is-active {
    width: 24px;
    background: var(--gold);
  }

  .section { padding: 62px 0; }
  .overview__title {
    font-size: clamp(2rem, 10vw, 3.4rem);
    line-height: .98;
  }
  .overview__lead {
    max-width: 94%;
    font-size: .98rem;
    line-height: 1.48;
  }
  .overview__transform {
    margin-top: 52px;
    gap: 20px;
  }
  .overview__transform-title h3 {
    font-size: clamp(2.05rem, 9.4vw, 3.7rem);
    line-height: 1.04;
  }
  .overview__transform-copy p {
    font-size: 1rem;
    line-height: 1.52;
    margin-bottom: 18px;
  }
  .overview__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .overview__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 34px;
  }
  .program-card__icon-wrap {
    width: 96px;
    height: 118px;
    margin-bottom: -24px;
  }
  .program-card__body {
    min-height: auto;
    padding: 66px 22px 26px;
  }
  .program-card__number {
    font-size: 1.72rem;
  }
  .program-card__body h3 {
    font-size: 1.34rem;
    line-height: 1.28;
  }
  .learn {
    margin-top: 62px;
  }

  .help-center-section,
  .faq-section {
    padding: 44px 0 22px;
  }
  .help-center-section .container,
  .faq-section .container {
    width: calc(100vw - 18px);
  }
  .help-center-header { margin-bottom: 20px; }
  .help-center-title,
  .learn__title {
    font-size: clamp(2rem, 10vw, 3.4rem);
    line-height: .98;
    white-space: normal;
  }
  .help-center-lead,
  .learn__lead {
    max-width: 94%;
    font-size: .98rem;
    line-height: 1.48;
  }
  .help-center-panel { border-radius: 14px; }
  .faq-question {
    min-height: 70px;
    padding: 0 18px;
    font-size: .98rem;
    line-height: 1.28;
  }
  .faq-icon { font-size: 16px; }
  .faq-answer { padding-left: 18px; padding-right: 18px; }
  .faq-item.is-open .faq-answer { padding-bottom: 20px; }
  .faq-answer p,
  .module-content li { font-size: .96rem; line-height: 1.54; }

  .final-cta {
    padding-top: 36px;
  }
  .final-cta__shell {
    padding: 30px 20px;
    border-radius: 18px;
  }
  .final-cta__shell h2 {
    font-size: clamp(1.95rem, 8vw, 2.9rem);
    line-height: 1.06;
  }
  .final-cta__shell p {
    font-size: .98rem;
    line-height: 1.72;
  }
  .final-cta__shell .btn {
    width: 100%;
    min-width: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand img { width: 240px; }
  .footer-social { margin-top: 28px; }
  .footer-bottom {
    font-size: .84rem;
    line-height: 1.4;
    padding-left: 12px;
    padding-right: 12px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
  .floating-whatsapp img {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 18px, 1180px);
  }
  .brand img { width: 134px; }
  .crisol-meta__item {
    padding-left: 34px;
    padding-right: 34px;
  }
  .program__lead,
  .overview__lead,
  .help-center-lead { max-width: 100%; }
}


/* AJUSTE FINAL — BLOCOS DO CONTEÚDO PROGRAMÁTICO */
.program-card {
  position: relative;
  min-height: 350px;
}

.program-card__icon-wrap {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 96px;
  height: 96px;
  margin: 0;
  background: var(--gold);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(205, 165, 94, 0.22);
  z-index: 2;
}

.program-card__icon {
  width: 54px;
  height: 54px;
}

.program-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-card__body {
  min-height: 350px;
  height: 100%;
  padding: 170px 30px 34px;
  background: #083a5d;
  color: #ffffff;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(7, 40, 65, 0.12);
}

.program-card__number {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.program-card__body h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.45;
  font-weight: 700;
  max-width: 180px;
}

@media (max-width: 1160px) {
  .program-card {
    min-height: 320px;
  }

  .program-card__body {
    min-height: 320px;
    padding: 156px 26px 28px;
  }
}

@media (max-width: 820px) {
  .program-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 34px;
  }

  .program-card {
    min-height: 290px;
  }

  .program-card__icon-wrap {
    top: 18px;
    right: 18px;
    width: 88px;
    height: 88px;
    border-radius: 16px;
  }

  .program-card__icon {
    width: 48px;
    height: 48px;
  }

  .program-card__body {
    min-height: 290px;
    padding: 142px 24px 24px;
    border-radius: 24px;
  }

  .program-card__number {
    font-size: 1.9rem;
    color: #fff;
  }

  .program-card__body h3 {
    font-size: 1.28rem;
    line-height: 1.4;
    max-width: 220px;
    color: #fff;
  }
}
}

@media (max-width: 560px) {
  .program-card {
    min-height: 260px;
  }

  .program-card__icon-wrap {
    width: 82px;
    height: 82px;
  }

  .program-card__body {
    min-height: 260px;
    padding: 132px 22px 22px;
  }

  .program-card__body h3 {
    font-size: 1.12rem;
    max-width: 200px;
  }
}
