:root {
  --navy-950: #031b3f;
  --navy-900: #05265a;
  --navy-800: #063574;
  --blue-700: #0753a8;
  --blue-600: #0a67c8;
  --blue-500: #1d7ee5;
  --sky-100: #eaf4ff;
  --red-700: #c80c1d;
  --red-600: #e3182d;
  --gold-500: #f2a900;
  --ink: #10213b;
  --muted: #526179;
  --line: #dce5f0;
  --soft: #f4f7fb;
  --white: #fff;
  --green: #18a957;
  --shadow-sm: 0 10px 30px rgba(3, 27, 63, 0.08);
  --shadow-md: 0 22px 70px rgba(3, 27, 63, 0.14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.35rem, 4.4vw, 4.65rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.65rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

p:last-child {
  margin-bottom: 0;
}

[hidden] {
  display: none !important;
}

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

.section {
  padding: clamp(72px, 6vw, 104px) 0;
}

.section-intro {
  width: min(100%, 820px);
  margin: 0 auto clamp(36px, 3.5vw, 54px);
  text-align: center;
}

.section-intro-wide {
  width: min(100%, 920px);
}

.section-intro.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-intro > p:last-child,
.pedagogy-heading > p {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--red-600);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.sr-only,
.seo-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.btn:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(242, 169, 0, 0.75);
  outline-offset: 4px;
}

.btn-accent {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 12px 28px rgba(227, 24, 45, 0.26);
}

.btn-accent:hover {
  background: var(--red-700);
  box-shadow: 0 16px 34px rgba(227, 24, 45, 0.33);
}

.btn-scholarship {
  color: var(--red-700);
  background: var(--white);
  border-color: var(--red-600);
  box-shadow: 0 10px 24px rgba(227, 24, 45, 0.12);
}

.btn-scholarship:hover {
  color: var(--white);
  background: var(--red-700);
  border-color: var(--red-700);
  box-shadow: 0 14px 30px rgba(227, 24, 45, 0.24);
}

.btn-light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.btn-light:hover {
  background: var(--sky-100);
}

.btn-outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
}

.btn-outline-dark {
  color: var(--navy-900);
  background: transparent;
  border-color: rgba(5, 38, 90, 0.28);
}

.btn-outline-dark:hover {
  background: var(--sky-100);
  border-color: var(--navy-900);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(38px, 5vw, 64px);
}

/* Hero */

.hero-slider {
  position: relative;
  min-height: clamp(600px, 37.5vw, 720px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-track,
.hero-slide {
  min-height: inherit;
}

.hero-slide {
  position: relative;
  isolation: isolate;
}

.hero-slide-institutional {
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 30%, rgba(29, 126, 229, 0.65), transparent 30%),
    radial-gradient(circle at 56% 92%, rgba(227, 24, 45, 0.28), transparent 28%),
    linear-gradient(118deg, var(--navy-950) 0%, var(--navy-900) 46%, #0951a7 100%);
}

.institutional-hero-art,
.institutional-hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.institutional-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.institutional-hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 27, 63, 0.96) 0%, rgba(3, 27, 63, 0.76) 48%, rgba(3, 27, 63, 0.25) 100%);
}

.hero-decoration {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-decoration-one {
  width: 48vw;
  height: 48vw;
  top: -26vw;
  right: -8vw;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 150px rgba(255, 255, 255, 0.018);
}

.hero-decoration-two {
  width: 270px;
  height: 270px;
  right: 25%;
  bottom: -200px;
  border-color: rgba(227, 24, 45, 0.45);
}

.institutional-hero-content {
  display: grid;
  min-height: inherit;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: clamp(40px, 7vw, 100px);
  padding-top: 48px;
  padding-bottom: 68px;
}

.hero-copy {
  width: min(100%, 820px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #cde6ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 34px;
  height: 3px;
  content: "";
  background: var(--red-600);
}

.hero-copy h1 {
  max-width: 900px;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.hero-text {
  max-width: 700px;
  margin: 12px 0 0;
  color: #c9d7e9;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-segments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-segments li {
  padding: 7px 11px;
  color: #dbeaff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-mark {
  display: flex;
  width: 240px;
  min-height: 324px;
  align-items: center;
  align-self: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  transform: rotate(2deg);
}

.hero-mark img {
  width: 122px;
  height: 148px;
  object-fit: contain;
}

.hero-mark span {
  margin-top: 18px;
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.hero-slide-scholarship {
  background: #f7f8fa;
}

.scholarship-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.scholarship-art {
  width: 100%;
  height: clamp(600px, 37.5vw, 720px);
  overflow: hidden;
}

.scholarship-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scholarship-mobile-fallback {
  display: none;
}

.hero-dots {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(5, 38, 90, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 30px;
  background: var(--red-600);
}

/* O hero usa as artes fechadas de 1600 × 600 sem recomposição visual em HTML. */
.hero-slider {
  min-height: 0;
  aspect-ratio: 8 / 3;
  background: #f7f8fa;
}

.hero-track,
.hero-slide,
.hero-banner-frame,
.hero-banner-art,
.hero-banner-art img {
  width: 100%;
  height: 100%;
}

.hero-track,
.hero-slide {
  min-height: 0;
  aspect-ratio: 8 / 3;
}

/* Transição lateral real: o banner atual sai enquanto o próximo entra. */
.hero-track {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  z-index: 0;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  transition: transform 820ms cubic-bezier(0.65, 0, 0.35, 1);
  backface-visibility: hidden;
  will-change: transform;
}

.hero-slide.is-active {
  z-index: 2;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.hero-slide.is-preparing-from-left,
.hero-slide.is-preparing-from-right,
.hero-slide.is-leaving-to-left,
.hero-slide.is-leaving-to-right {
  visibility: visible;
}

.hero-slide.is-preparing-from-left {
  z-index: 3;
  transform: translate3d(-100%, 0, 0);
}

.hero-slide.is-preparing-from-right {
  z-index: 3;
  transform: translate3d(100%, 0, 0);
}

.hero-slide.is-leaving-to-left {
  z-index: 1;
  transform: translate3d(-100%, 0, 0);
}

.hero-slide.is-leaving-to-right {
  z-index: 1;
  transform: translate3d(100%, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.hero-banner-frame,
.hero-banner-art {
  display: block;
}

.hero-banner-art img {
  object-fit: cover;
  object-position: center;
}

.hero-cta-band {
  background: var(--white);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 18px 0 24px;
}

/* Trust */

.trust-section {
  position: relative;
  overflow: hidden;
  background-color: #e8f0f8;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.74) 0%,
      rgba(255, 255, 255, 0.58) 48%,
      rgba(255, 255, 255, 0.76) 100%
    ),
    url("../../uploads/backgrounds/fachada-monte-calvario-fundo.webp");
  background-position: center, center 36%;
  background-repeat: no-repeat;
  background-size: cover;
}

.trust-section::before {
  content: none;
}

.trust-section .section-intro {
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(3, 27, 63, 0.1);
}

.trust-section .info-card {
  background: rgba(248, 250, 253, 0.88);
  border-color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 38px rgba(3, 27, 63, 0.11);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.info-card {
  position: relative;
  min-height: 260px;
  padding: 30px 26px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  border-color: #c8dcf3;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.info-card::after {
  position: absolute;
  right: -22px;
  bottom: -52px;
  width: 120px;
  height: 120px;
  content: "";
  border: 18px solid rgba(10, 103, 200, 0.055);
  border-radius: 50%;
}

.card-icon {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  color: var(--blue-700);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(5, 38, 90, 0.08);
  font-size: 1rem;
  font-weight: 900;
}

.brand-card-mark {
  position: relative;
  border: 1px solid rgba(10, 103, 200, 0.1);
  background:
    linear-gradient(145deg, rgba(10, 103, 200, 0.055), rgba(255, 255, 255, 0) 62%),
    var(--white);
}

.brand-card-mark::before,
.brand-card-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.brand-card-mark::before {
  width: 25px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--blue-700) 0 41%,
    var(--red-600) 41% 59%,
    var(--blue-700) 59% 100%
  );
}

.brand-card-mark::after {
  width: 4px;
  height: 25px;
  background: linear-gradient(
    180deg,
    var(--blue-700) 0 41%,
    var(--red-600) 41% 59%,
    var(--blue-700) 59% 100%
  );
}

.info-card h3 {
  margin-bottom: 13px;
  color: var(--navy-900);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.info-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Segments */

.segments-section {
  background:
    linear-gradient(rgba(5, 38, 90, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 38, 90, 0.035) 1px, transparent 1px),
    var(--soft);
  background-size: 44px 44px;
}

.segments-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.segment-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 34px 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.segment-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--red-600));
}

.segment-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--navy-900), var(--blue-500));
}

.segment-card:nth-child(3) {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(29, 126, 229, 0.34), transparent 35%),
    var(--navy-900);
  border-color: transparent;
}

.segment-card:nth-child(3)::before {
  background: var(--red-600);
}

.segment-card:nth-child(3) p,
.segment-card:nth-child(3) .check-list {
  color: #d2deee;
}

.segment-card:nth-child(3) .segment-label {
  color: #b9d9ff;
}

.segment-card:nth-child(3) .segment-number {
  color: rgba(255, 255, 255, 0.18);
}

.segment-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.segment-number {
  color: #c9d8e9;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.segment-label {
  color: var(--blue-700);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.segment-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 2.3vw, 2.45rem);
}

.segment-headline {
  display: block;
  margin-bottom: 18px;
  color: var(--red-600);
  font-size: 1rem;
  line-height: 1.45;
}

.segment-card:nth-child(3) .segment-headline {
  color: #ff8390;
}

.segment-card > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.91rem;
}

.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  color: #33445d;
  list-style: none;
  font-size: 0.84rem;
  font-weight: 650;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  color: var(--red-600);
  content: "✓";
  font-weight: 900;
}

.extended-band {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(240px, 0.75fr) 1.25fr;
  gap: 44px;
  padding: 32px 38px;
  margin-top: 20px;
  color: var(--white);
  background: linear-gradient(105deg, var(--blue-700), var(--navy-900));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.extended-band .eyebrow {
  color: #a8d5ff;
}

.extended-band h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.extended-band > p {
  margin: 0;
  color: #dbe9f7;
}

/* Pedagogy */

.pedagogy-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 6vw, 92px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(96, 180, 255, 0.28), transparent 30%),
    radial-gradient(circle at 10% 92%, rgba(3, 27, 63, 0.24), transparent 32%),
    linear-gradient(135deg, var(--navy-800) 0%, var(--blue-700) 54%, var(--navy-800) 100%);
}

.pedagogy-section::after {
  position: absolute;
  right: -130px;
  bottom: -230px;
  width: 500px;
  height: 500px;
  content: "";
  border: 75px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.pedagogy-heading {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(44px, 7vw, 100px);
  margin-bottom: clamp(46px, 5vw, 70px);
}

.pedagogy-heading {
  display: block;
  width: min(100%, 860px);
  margin: 0 auto clamp(30px, 3vw, 42px);
  text-align: center;
}

.pedagogy-heading .section-intro {
  margin-bottom: 0;
}

.pedagogy-heading .section-intro {
  width: 100%;
  text-align: center;
}

.pedagogy-heading > p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #e2edf8;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.pedagogy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 22px);
}

.pedagogy-card {
  position: relative;
  min-height: 178px;
  padding: 30px 28px 26px;
  color: var(--ink);
  background: linear-gradient(145deg, #fff 0%, #f6faff 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  box-shadow:
    inset 0 4px 0 var(--red-600),
    0 16px 34px rgba(3, 27, 63, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pedagogy-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 4px 0 var(--red-600),
    0 20px 42px rgba(3, 27, 63, 0.24);
}

.pedagogy-card h3 {
  margin-bottom: 12px;
  color: var(--navy-800);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  letter-spacing: -0.025em;
}

.pedagogy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.pedagogy-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3vw, 38px);
}

/* Structure */

.structure-section {
  background: var(--white);
}

.structure-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
}

.structure-copy {
  max-width: 470px;
}

.structure-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.structure-copy p {
  max-width: 420px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  line-height: 1.6;
}

.video-shell {
  overflow: hidden;
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.structure-video,
.video-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.structure-video {
  object-fit: cover;
  background: #000;
}

.structure-video-embed {
  border: 0;
}

.video-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 34%, rgba(29, 126, 229, 0.48), transparent 30%),
    linear-gradient(125deg, var(--navy-950), var(--blue-700));
}

.video-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(500px) rotateX(57deg) scale(1.5) translateY(22%);
}

.video-placeholder-poster,
.video-placeholder-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder-poster img {
  object-fit: cover;
}

.play-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  background: var(--red-600);
  border: 8px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
}

.play-symbol span {
  margin-left: 5px;
  font-size: 1.7rem;
}

.structure-section .section-action {
  margin-top: clamp(28px, 3vw, 38px);
}

/* Admissions */

.admissions-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.admissions-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.admissions-grid.is-single {
  grid-template-columns: 1fr;
}

.admission-process {
  padding: clamp(32px, 4vw, 54px);
  border-radius: var(--radius-lg);
}

.admission-process {
  background: var(--soft);
  border: 1px solid var(--line);
}

.panel-label {
  display: block;
  margin-bottom: 15px;
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admission-process h3 {
  margin-bottom: 28px;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
}

.admission-steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  counter-reset: steps;
}

.admission-steps li {
  position: relative;
  display: grid;
  min-height: 52px;
  align-items: start;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  color: #34455d;
  counter-increment: steps;
}

.admission-steps li::before {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 50%;
  content: counter(steps);
  font-size: 0.73rem;
  font-weight: 850;
}

.admission-steps li:not(:last-child)::after {
  position: absolute;
  top: 33px;
  bottom: -3px;
  left: 16px;
  width: 2px;
  content: "";
  background: #c5d7ec;
}

.admission-steps li span {
  padding-top: 4px;
}

.admission-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.admission-facts li {
  padding: 13px 14px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.79rem;
  font-weight: 750;
}

.scholarship-panel-image {
  align-self: start;
  aspect-ratio: 15 / 16;
  overflow: hidden;
  margin: 0;
  background: transparent;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(10, 50, 109, 0.16);
}

.scholarship-panel-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.admission-actions {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 28px 32px;
  margin-top: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.admission-actions > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admission-actions > p {
  max-width: 520px;
  margin: 0;
  color: var(--navy-900);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

/* FAQ */

.faq-section {
  background: var(--soft);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(30px, 5vw, 70px);
}

.practical-panel {
  position: sticky;
  top: 24px;
  padding: clamp(32px, 4vw, 48px);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(29, 126, 229, 0.42), transparent 34%),
    var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.practical-panel .eyebrow {
  color: #8bc6ff;
}

.practical-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.practical-panel > p {
  color: #cfdaea;
}

.practical-panel .btn {
  margin: 12px 0 34px;
}

.mini-label {
  display: block;
  padding-top: 24px;
  margin-top: 8px;
  color: #8bc6ff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.practical-panel .mini-label + p {
  margin: 10px 0 14px;
  font-size: 0.86rem;
}

.text-link {
  font-size: 0.86rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.text-link.light {
  color: var(--white);
}

.faq-list .section-intro {
  margin-bottom: 34px;
}

.faq-item {
  border-top: 1px solid #cbd8e7;
}

.faq-item:last-child {
  border-bottom: 1px solid #cbd8e7;
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 78px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 0;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.4;
  text-align: left;
}

.faq-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  color: var(--white);
  background: var(--red-600);
  border-color: var(--red-600);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 58px 24px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

/* Final CTA and footer */

.final-cta {
  position: relative;
  isolation: isolate;
  padding: clamp(80px, 9vw, 140px) 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(29, 126, 229, 0.55), transparent 26%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800));
}

.final-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta:has(.final-media)::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 27, 63, 0.94), rgba(3, 27, 63, 0.5));
}

.final-decoration {
  position: absolute;
  z-index: -1;
  top: -220px;
  right: -120px;
  width: 600px;
  height: 600px;
  border: 90px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.final-content {
  width: min(calc(100% - 48px), 960px);
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  text-align: left;
}

.final-content .eyebrow {
  color: #8bc6ff;
}

.final-content h2 {
  max-width: 850px;
}

.final-content > p:not(.eyebrow):not(.final-microcopy) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #d5e0ee;
  font-size: 1.08rem;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.final-microcopy {
  margin-top: 15px;
  color: #9fb6d1;
  font-size: 0.75rem;
}

.site-footer {
  padding: 64px 0 24px;
  color: #c4d1e2;
  background: #02142f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 0.8fr 0.7fr;
  gap: 44px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-brand img {
  width: 72px;
  height: 90px;
  padding: 6px;
  object-fit: contain;
  background: var(--white);
  border-radius: 14px;
}

.footer-school-name,
.footer-heading {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
}

.footer-brand p {
  max-width: 420px;
  margin: 12px 0 0;
  color: #8fa4bf;
  font-size: 0.82rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a,
.footer-column span {
  color: #9cafc5;
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-heading {
  margin-bottom: 7px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  margin-top: 50px;
  color: #7389a4;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: #a9bdd5;
}

.whatsapp-float {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 4px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.07);
}

.whatsapp-float svg {
  width: 31px;
  fill: currentColor;
}

/* Responsive */

@media (max-width: 1100px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .segment-card {
    min-height: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .institutional-hero-content {
    grid-template-columns: 1fr 190px;
    gap: 36px;
  }

  .hero-mark {
    width: 180px;
    min-height: 270px;
    padding: 18px;
  }

  .hero-mark img {
    width: 102px;
    height: 126px;
  }

  .hero-mark span {
    font-size: 0.68rem;
  }

  .pedagogy-heading,
  .admissions-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .pedagogy-heading {
    gap: 12px;
  }

  .structure-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .structure-copy {
    max-width: 650px;
  }

  .faq-layout {
    gap: 58px;
  }

  .practical-panel {
    position: static;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

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

  .section {
    padding: 64px 0;
  }

  .section-intro {
    margin-bottom: 32px;
    text-align: left;
  }

  .hero-slider,
  .hero-track,
  .hero-slide {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-slide-institutional {
    align-items: stretch;
  }

  .institutional-hero-content {
    display: flex;
    min-height: 730px;
    align-items: flex-start;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 26px;
    padding-top: 46px;
    padding-bottom: 75px;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 10.4vw, 3.2rem);
  }

  .hero-kicker {
    align-items: flex-start;
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .hero-kicker::before {
    margin-top: 6px;
    flex: 0 0 25px;
  }

  .hero-subtitle {
    margin-top: 17px;
    font-size: 1.02rem;
  }

  .hero-text {
    display: none;
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-segments {
    margin-top: 19px;
  }

  .hero-segments li {
    padding: 6px 9px;
    font-size: 0.63rem;
  }

  .hero-mark {
    width: auto;
    min-height: 0;
    align-self: flex-start;
    flex-direction: row;
    gap: 13px;
    padding: 10px 16px 10px 11px;
    border-radius: 18px;
    transform: none;
  }

  .hero-mark img {
    width: 44px;
    height: 54px;
  }

  .hero-mark span {
    margin: 0;
    font-size: 0.63rem;
    text-align: left;
  }

  .hero-decoration-one {
    width: 100vw;
    height: 100vw;
    top: -40vw;
    right: -55vw;
  }

  .hero-dots {
    bottom: 6px;
  }

  .hero-cta-row {
    flex-direction: column;
    padding: 14px 0 18px;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .trust-grid,
  .pedagogy-grid {
    grid-template-columns: 1fr;
  }

  .trust-section {
    background-position: center, center center;
    background-size: cover;
  }

  .trust-section .section-intro {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .info-card {
    min-height: 230px;
  }

  .segments-section {
    background-size: 32px 32px;
  }

  .segment-card {
    padding: 30px 24px;
  }

  .extended-band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
  }

  .pedagogy-card {
    min-height: 0;
    padding: 26px 24px 24px;
  }

  .pedagogy-actions .btn {
    width: 100%;
  }

  .structure-video,
  .video-placeholder {
    aspect-ratio: 16 / 9;
  }

  .play-symbol {
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    border-width: 7px;
  }

  .admission-process {
    padding: 30px 24px;
    border-radius: var(--radius-md);
  }

  .scholarship-panel-image {
    width: 100%;
    border-radius: var(--radius-md);
  }

  .admission-facts {
    grid-template-columns: 1fr;
  }

  .admission-actions {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .admission-actions > div {
    display: grid;
  }

  .admission-actions .btn {
    width: 100%;
  }

  .faq-layout {
    gap: 50px;
  }

  .practical-panel {
    padding: 32px 25px;
    border-radius: var(--radius-md);
  }

  .faq-question {
    min-height: 70px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding-right: 0;
  }

  .final-content {
    width: min(calc(100% - 32px), 960px);
    margin-inline: auto;
  }

  .final-actions {
    display: grid;
  }

  .final-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 390px) {
  .btn {
    padding-inline: 16px;
    font-size: 0.87rem;
  }
}

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