@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --red: rgb(235, 89, 62);
  --red-soft: #FCE8E3;
  --mint: #7AC6BA;
  --green: #004E4A;
  --sky: #64A0EE;
  --blue: #215FC4;
  --navy: #01273E;
  --yellow: #FFDD00;
  --orange: #FFA700;
  --coral: #E95032;
  --white: #FFFFFF;
  --black: #000000;
  --ink: #0B2337;
  --muted: #5A6B7B;
  --paper: #FFF9EF;
  --soft: #F6FAFF;
  --shadow: 0 24px 70px rgba(1, 39, 62, 0.16);
  --soft-shadow: 0 18px 45px rgba(33, 95, 196, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Verdana, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fff 0%, #fff 48%, #f8fbff 100%);
  overflow-x: hidden;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  left: 20px;
  top: 12px;
  transform: translateY(-140%);
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all .25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(1,39,62,.08);
  border-radius: 999px;
  padding: 12px 16px 12px 22px;
  box-shadow: 0 20px 60px rgba(33,95,196,.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 164px;
}

.brand img {
  width: 164px;
  min-width: 120px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  color: var(--navy);
  font-weight: 700;
  font-size: .92rem;
  padding: 12px 14px;
  border-radius: 999px;
  transition: .22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: var(--red);
  color: var(--blue);
}

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

.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: white;
  border: 1px solid rgba(33,95,196,.2);
  box-shadow: 0 8px 20px rgba(1,39,62,.08);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.nav-social a:hover {
  transform: translateY(-2px);
  color: white;
  background: var(--red);
  box-shadow: 0 12px 24px rgba(235,89,62,.25);
}

body[data-page="index.html"] .nav-social a {
  color: rgb(235,89,62);
}

body[data-page="index.html"] .nav-item-dropdown {
  position: relative;
}

body[data-page="index.html"] .nav-link-parent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body[data-page="index.html"] .nav-link-parent i {
  font-size: .75rem;
  transition: transform .2s ease;
}

body[data-page="index.html"] .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  padding: 10px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(1,39,62,.1);
  box-shadow: 0 20px 36px rgba(1,39,62,.12);
  display: grid;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 20;
}

body[data-page="index.html"] .nav-item-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

body[data-page="index.html"] .sub-link {
  width: 100%;
}

body[data-page="index.html"] .nav-item-dropdown:hover .sub-menu,
body[data-page="index.html"] .nav-item-dropdown:focus-within .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body[data-page="index.html"] .nav-social a:hover,
body[data-page="index.html"] .nav-social a:focus-visible {
  color: white;
}

body[data-page="index.html"] .nav-item-dropdown:hover .nav-link-parent i,
body[data-page="index.html"] .nav-item-dropdown:focus-within .nav-link-parent i {
  transform: rotate(180deg);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  margin: 0 auto;
  transition: .25s ease;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  background: white;
  transform: translateY(1px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  background: white;
  transform: translateY(-1px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 14px 22px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 18px 38px rgba(33, 95, 196, .28);
}

.btn-primary:hover {
  background: var(--navy);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 18px 38px rgba(255, 221, 0, .28);
}

.btn-outline {
  color: var(--blue);
  background: white;
  border: 1px solid rgba(33,95,196,.18);
  box-shadow: 0 14px 34px rgba(1,39,62,.08);
}

.btn-small {
  padding: 11px 17px;
  font-size: .9rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-family: "Sora", Verdana, sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .78rem;
}

.kicker::before {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", Verdana, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--navy);
  margin: 0;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.section {
  padding: 102px 0;
  position: relative;
}

.section-tight {
  padding: 74px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 48px;
}

.section-header p {
  font-size: 1.02rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: center;
  padding: 54px 0 82px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 47vw;
  height: 47vw;
  min-width: 520px;
  min-height: 520px;
  background: radial-gradient(circle at 45% 45%, rgba(235,89,62,.22), rgba(235,89,62,0) 68%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -160px;
  width: 480px;
  background: radial-gradient(circle, rgba(122,198,186,.5), rgba(122,198,186,0) 68%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, .82fr);
  gap: 48px;
  align-items: start;
}

.hero-title {
  margin: 18px 0 24px;
}

.hero-title .mark-red {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.hero-title .mark-red::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .08em;
  height: .22em;
  background: #FFA700;
  z-index: -1;
  border-radius: 999px;
}

.hero-title .mark-yellow {
  color: var(--green);
  position: relative;
  display: inline-block;
}

.hero-title .mark-yellow::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 1%;
  bottom: .05em;
  height: .25em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 999px;
}

.hero-copy {
  max-width: 640px;
  font-size: 1.15rem;
  text-wrap: balance;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-cta .btn {
  min-width: 210px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  max-width: 650px;
}

.hero-badge {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(1,39,62,.08);
  box-shadow: var(--soft-shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.hero-badge:hover,
.hero-badge:focus-within {
  transform: translateY(-4px);
  border-color: rgba(235, 89, 62, .35);
  box-shadow: 0 22px 45px rgba(1,39,62,.15);
}

.hero-badge strong {
  font-family: "Sora", Verdana, sans-serif;
  display: block;
  font-size: 1.42rem;
  letter-spacing: -.04em;
  color: var(--blue);
}

.hero-badge span {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: .86rem;
  margin-top: 4px;
}

.hero-media {
  margin-top: 18px;
}

.hero-media-figure {
  position: relative;
}

.hero-media .hero-badges {
  max-width: 100%;
}

.hero-illustration {
  width: 100%;
  background: rgb(18,100,164);
  border-radius: 54px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  transition: transform .4s ease;
}

.hero-media:hover .hero-illustration {
  transform: rotate(.4deg) scale(1.015);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--navy);
  border-radius: 22px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.float-card .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
}

.float-card.one {
  left: -24px;
  top: 10%;
}

.float-card.two {
  right: -12px;
  bottom: 12%;
}

.wave-divider {
  position: relative;
  height: 78px;
  margin-top: -26px;
  background: var(--navy);
  clip-path: ellipse(75% 54% at 50% 100%);
}

.info-strip {
  background: var(--navy);
  color: white;
  padding: 18px 0 52px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.info-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 1.05rem;
}

.info-icon i {
  display: block;
  line-height: 1;
}

.info-item > div {
  display: grid;
  gap: 2px;
}

.info-item strong {
  display: block;
  font-family: "Sora", Verdana, sans-serif;
  font-size: .98rem;
}

.info-item span {
  display: block;
  opacity: .72;
  font-size: .86rem;
  margin-top: 2px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.why-showcase {
  position: relative;
  margin: 0 0 30px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(1,39,62,.08);
}

.why-showcase img {
  width: 100%;
  height: clamp(220px, 34vw, 420px);
  object-fit: cover;
}

.why-showcase figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(1,39,62,.72);
  color: white;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.tour-highlight {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 24px;
  margin: 0 0 30px;
  padding: 24px;
  border-radius: 32px;
  background: linear-gradient(155deg, #f3f9ff 0%, #ffffff 68%);
  border: 1px solid rgba(1,39,62,.1);
  box-shadow: var(--soft-shadow);
}

.tour-content h3 {
  margin: 12px 0;
}

.tour-content p {
  color: var(--muted);
}

.tour-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(100,160,238,.16);
  color: var(--blue);
  font-weight: 800;
}

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

.tour-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 600;
}

.tour-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--coral);
}

.tour-embed-shell {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(1,39,62,.1);
  box-shadow: 0 18px 32px rgba(1,39,62,.12);
  background: #dbe9ff;
}

.tour-embed {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.tour-preview-link {
  text-decoration: none;
}

.tour-preview-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(1,39,62,.78);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(4px);
}

.tour-preview-link:hover .tour-preview-overlay,
.tour-preview-link:focus-visible .tour-preview-overlay {
  background: rgba(6, 76, 154, .9);
}

.card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(1,39,62,.07);
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -48px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--red);
  opacity: .7;
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--soft);
  color: var(--blue);
  font-size: 1.8rem;
  margin-bottom: 22px;
}

.card-icon i {
  font-size: 1.55rem;
}

.card h3,
.value-card h3,
.program-card h3 {
  margin-bottom: 13px;
}

.card p,
.value-card p,
.program-card p {
  font-size: .98rem;
}

.card-mint {
  background: var(--orange);
  color: var(--white);
}

.card-yellow {
  background: var(--coral);
  color: var(--white);
}

.card-sky {
  background: var(--yellow);
  color: var(--navy);
}

.card-mint h3,
.card-mint p,
.card-yellow h3,
.card-yellow p {
  color: var(--white);
}

.card-sky h3,
.card-sky p {
  color: var(--navy);
}

.card-mint .card-icon,
.card-yellow .card-icon,
.card-sky .card-icon {
  background: rgba(255,255,255,.9);
}

.card-mint .card-icon {
  color: var(--orange);
}

.card-yellow .card-icon {
  color: var(--coral);
}

.card-sky .card-icon {
  color: var(--navy);
}
.card-orange::after { background: var(--orange); }
.card-coral::after { background: var(--coral); }

.approach-band {
  background:
    linear-gradient(rgba(11, 44, 84, .82), rgba(11, 44, 84, .82)),
    url('../assets/bghome.png') center/cover no-repeat;
  color: white;
  overflow: hidden;
}

.approach-band h2,
.approach-band h3,
.approach-band .kicker {
  color: white;
}

.approach-band .kicker::before {
  background: var(--yellow);
}

.approach-band p {
  color: rgba(255,255,255,.74);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(380px,.75fr);
  align-items: center;
  gap: 56px;
}

.approach-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.pillar-card {
  padding: 24px;
  min-height: 180px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
}

.pillar-card:nth-child(1) { background: rgba(235,89,62,.18); }
.pillar-card:nth-child(2) { background: rgba(255,221,0,.14); }
.pillar-card:nth-child(3) { background: rgba(122,198,186,.14); }
.pillar-card:nth-child(4) { background: rgba(100,160,238,.14); }

.pillar-card h3 {
  margin-bottom: 12px;
}

.approach-visual {
  position: relative;
  min-height: 520px;
}

.orbit {
  position: absolute;
  inset: 32px;
  border: 2px dashed rgba(255,255,255,.22);
  border-radius: 50%;
  animation: spin 34s linear infinite;
}

.orbit.two {
  inset: 86px;
  animation-duration: 26s;
  animation-direction: reverse;
}

.apz-center {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 265px;
  height: 265px;
  display: grid;
  place-items: center;
  background: white;
  border-radius: 42% 58% 52% 48% / 48% 44% 56% 52%;
  box-shadow: 0 32px 82px rgba(0,0,0,.22);
}

.apz-center img {
  width: 170px;
}

.bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 34px;
  color: var(--navy);
  font-family: "Sora", Verdana, sans-serif;
  font-weight: 900;
  box-shadow: 0 22px 44px rgba(0,0,0,.16);
}

.bubble:nth-of-type(4) { left: 2%; top: 12%; background: var(--red); }
.bubble:nth-of-type(5) { right: 8%; top: 3%; background: var(--yellow); }
.bubble:nth-of-type(6) { left: 12%; bottom: 6%; background: var(--mint); }
.bubble:nth-of-type(7) { right: 1%; bottom: 18%; background: var(--sky); }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.programs {
  background: linear-gradient(180deg, #fff 0%, #F6FAFF 100%);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 18px;
}

.program-card {
  position: relative;
  padding: 28px 24px;
  min-height: 315px;
  border-radius: 34px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(1,39,62,.08);
  box-shadow: var(--soft-shadow);
}

.program-card:nth-child(1) {
  --program-color: #F8C7DE;
  background: linear-gradient(180deg, rgba(248,199,222,.42) 0%, #ffffff 74%);
  border-color: rgba(248,199,222,.55);
}

.program-card:nth-child(2) {
  --program-color: #7AC6BA;
  background: linear-gradient(180deg, rgba(122,198,186,.26) 0%, #ffffff 74%);
  border-color: rgba(122,198,186,.45);
}

.program-card:nth-child(3) {
  --program-color: #004E4A;
  background: linear-gradient(180deg, rgba(0,78,74,.16) 0%, #ffffff 74%);
  border-color: rgba(0,78,74,.34);
}

.program-card:nth-child(4) {
  --program-color: #64A0EE;
  background: linear-gradient(180deg, rgba(100,160,238,.26) 0%, #ffffff 74%);
  border-color: rgba(100,160,238,.45);
}

.program-card:nth-child(5) {
  --program-color: #215FC4;
  background: linear-gradient(180deg, rgba(33,95,196,.22) 0%, #ffffff 74%);
  border-color: rgba(33,95,196,.42);
}

.program-visual {
  position: relative;
  height: 132px;
  margin: -8px -10px 14px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  background: var(--program-color);
}

.program-visual img {
  max-height: 138px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(1,39,62,.18));
}

.program-card::before {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(1,39,62,.12);
  font-family: "Sora", Verdana, sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: -.08em;
  content: attr(data-number);
}

.program-age {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-weight: 800;
  background: var(--program-color);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .82rem;
  margin-bottom: 26px;
}

.program-card:nth-child(3) .program-age,
.program-card:nth-child(5) .program-age {
  color: #ffffff;
}

.program-card h3 {
  font-size: 1.55rem;
}

.program-card p {
  margin-top: 12px;
}

.program-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.program-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 600;
  font-size: .9rem;
}

.program-list li::before {
  content: "•";
  color: var(--coral);
  font-size: 1.2rem;
  line-height: 1;
}

.testimonial-section {
  background: var(--paper);
}

.testimonial-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(360px,.55fr);
  gap: 36px;
  align-items: stretch;
}

.testimonial-card {
  padding: 42px;
  border-radius: 40px;
  background: white;
  box-shadow: var(--shadow);
}

.testimonial-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #f4f8ff;
  min-height: clamp(260px, 38vw, 430px);
}

.testimonial-open {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
}

.testimonial-image {
  display: block;
  width: 100%;
  height: clamp(260px, 38vw, 430px);
  object-fit: cover;
  transition: opacity .24s ease;
  cursor: zoom-in;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-card-turmas {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 32px;
}

.testimonial-card-turmas .testimonial-media {
  min-height: clamp(300px, 46vw, 560px);
}

.testimonial-card-turmas .testimonial-image {
  height: clamp(300px, 46vw, 560px);
}

.icon-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 22, 43, .78);
  backdrop-filter: blur(2px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 95vw);
  max-height: 90vh;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 84px rgba(0, 0, 0, .42);
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(9, 22, 43, .8);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.success-card {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 36px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 15% 12%, var(--yellow) 0 12%, transparent 13%),
    radial-gradient(circle at 88% 20%, var(--coral) 0 11%, transparent 12%),
    linear-gradient(145deg, var(--mint), var(--sky));
  box-shadow: var(--shadow);
}

.success-card h3 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
}

.success-card p {
  color: var(--navy);
  font-weight: 700;
  margin-top: 12px;
}

.home-testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(122, 198, 186, .3), transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(255, 221, 0, .22), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.home-testimonials-carousel {
  --testimonials-visible: 3;
  --testimonials-gap: 24px;
  display: grid;
  gap: 24px;
}

.home-testimonials-viewport {
  overflow: hidden;
  padding: 6px 3px 18px;
}

.home-testimonials-track {
  display: flex;
  gap: var(--testimonials-gap);
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.home-testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(1, 39, 62, .08);
  border-radius: 36px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 55px rgba(1, 39, 62, .09);
}

.home-testimonial-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(122, 198, 186, .16);
}

.home-testimonial-quote {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: var(--green);
  font-size: 1.25rem;
  background: rgba(122, 198, 186, .3);
}

.home-testimonial-card blockquote {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-line;
}

.home-testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-testimonial-author img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 3px solid white;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(1, 39, 62, .14);
}

.home-testimonial-author strong {
  color: var(--green);
  font-size: .95rem;
}

.home-testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.home-testimonial-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(1, 39, 62, .12);
  border-radius: 50%;
  color: var(--green);
  background: white;
  box-shadow: 0 10px 25px rgba(1, 39, 62, .09);
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.home-testimonial-arrow:hover {
  color: white;
  background: var(--green);
  transform: translateY(-2px);
}

.home-testimonials-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-testimonials-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(1, 39, 62, .2);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.home-testimonials-dots button.is-active {
  width: 28px;
  background: var(--green);
}

.cta-section {
  padding: 96px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background: #004E4A;
  color: white;
  padding: clamp(38px, 6vw, 72px);
  box-shadow: var(--shadow);
}

.cta-box::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -90px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--yellow);
}

.cta-box::after {
  content: "";
  position: absolute;
  left: 46%;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(235,89,62,.16);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.cta-box h2,
.cta-box p {
  color: white;
}

.cta-box .kicker {
  color: #fff;
}

.cta-box p {
  max-width: 680px;
  margin-top: 18px;
  opacity: .86;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.page-hero {
  position: relative;
  padding: 76px 0 90px;
  background:
    radial-gradient(circle at 16% 20%, rgba(235,89,62,.16), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(122,198,186,.58), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f6faff 100%);
  overflow: hidden;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(360px,.6fr);
  align-items: center;
  gap: 44px;
}

.page-hero h1 {
  margin: 16px 0 20px;
}

.page-hero p {
  max-width: 720px;
  font-size: 1.12rem;
}

.page-hero-visual {
  position: relative;
  min-height: 390px;
}

.stack-card {
  position: absolute;
  padding: 28px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: white;
  border: 1px solid rgba(1,39,62,.08);
}

.stack-card:nth-child(1) { top: 20px; left: 10px; width: 76%; background: var(--yellow); z-index: 1; }
.stack-card:nth-child(2) { top: 132px; right: 0; width: 70%; background: var(--mint); z-index: 3; }
.stack-card:nth-child(3) { bottom: 0; left: 44px; width: 78%; background: var(--red); z-index: 2; }
.stack-card strong { color: var(--navy); font-family: "Sora", Verdana, sans-serif; font-size: 1.35rem; }
.stack-card span { display:block; margin-top: 8px; color: var(--navy); opacity: .74; font-weight: 600; }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(360px,.68fr);
  gap: 48px;
  align-items: center;
}

.media-card {
  position: relative;
  min-height: 500px;
  border-radius: 48px;
  background: var(--soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.media-card-escola {
  min-height: 560px;
}

.media-card-escola img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center 22%;
}

.media-card-escola::after {
  display: none;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: auto 32px 32px auto;
  width: 122px;
  height: 122px;
  border-radius: 34px;
  background: var(--yellow);
  transform: rotate(8deg);
}

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

.value-card {
  min-height: 275px;
  padding: 24px;
  border-radius: 32px;
  background: white;
  border: 1px solid rgba(1,39,62,.08);
  box-shadow: var(--soft-shadow);
}

.value-card strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--blue);
  color: white;
  margin-bottom: 20px;
  font-family: "Sora", Verdana, sans-serif;
}

.timeline {
  display: grid;
  gap: 22px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 999px;
  background: var(--red);
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px minmax(0,1fr);
  gap: 20px;
  align-items: start;
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: var(--blue);
  color: white;
  font-family: "Sora", Verdana, sans-serif;
  font-weight: 900;
}

.timeline-content {
  padding: 24px;
  border-radius: 26px;
  background: white;
  border: 1px solid rgba(1,39,62,.08);
  box-shadow: var(--soft-shadow);
}

.timeline-content h3 {
  margin-bottom: 8px;
}

.tab-shell {
  display: grid;
  grid-template-columns: 320px minmax(0,1fr);
  gap: 28px;
  align-items: start;
}

.tab-buttons {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 126px;
}

.tab-button {
  border-radius: 22px;
  padding: 20px;
  text-align: left;
  background: white;
  color: var(--navy);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  border: 1px solid rgba(1,39,62,.08);
}

.tab-button strong {
  display: block;
  font-family: "Sora", Verdana, sans-serif;
  font-size: 1.18rem;
}

.tab-button span {
  display: block;
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
  font-size: .88rem;
}

.tab-button.is-active {
  background: var(--blue);
  color: white;
}

.tab-button.is-active span {
  color: rgba(255,255,255,.76);
}

.tab-panel {
  display: none;
  min-height: 470px;
  padding: 46px;
  border-radius: 42px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(1,39,62,.08);
}

.tab-panel.is-active {
  display: block;
  animation: fadeUp .35s ease both;
}

.tab-panel h2 {
  margin-bottom: 18px;
}

.tab-panel p + p {
  margin-top: 16px;
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 30px;
}

.mini-feature {
  padding: 18px;
  border-radius: 22px;
  background: var(--soft);
  font-weight: 700;
  color: var(--navy);
}

.mini-feature:nth-child(1) {
  color: #FFFFFF;
  background: var(--coral);
}

.mini-feature:nth-child(2) {
  background: var(--yellow);
}

.mini-feature:nth-child(3) {
  background: var(--mint);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--navy);
  background: white;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(1,39,62,.08);
  cursor: pointer;
}

.filter-btn.is-active {
  background: var(--blue);
  color: white;
}

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

.class-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) 160px;
  gap: 18px;
  min-height: 280px;
  padding: 30px;
  border-radius: 38px;
  background: white;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  border: 1px solid rgba(1,39,62,.08);
}

.class-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -56px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--red);
}

.class-card[data-color="mint"]::before { background: var(--mint); }
.class-card[data-color="yellow"]::before { background: var(--yellow); }
.class-card[data-color="sky"]::before { background: var(--sky); }
.class-card[data-color="orange"]::before { background: var(--orange); }
.class-card[data-color="coral"]::before { background: var(--coral); }

.class-meta {
  position: relative;
  z-index: 1;
}

.class-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  aspect-ratio: 1;
  border-radius: 42px;
  background: var(--soft);
  display: grid;
  place-items: center;
  font-size: 4rem;
}

.class-card h3 {
  margin: 18px 0 12px;
}

.class-card ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.class-card li {
  color: var(--muted);
  font-weight: 600;
}

.class-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  margin-right: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,.72fr) minmax(420px,.72fr);
  gap: 28px;
  align-items: start;
}

.contact-card,
.form-card,
.map-card {
  padding: 34px;
  border-radius: 38px;
  background: white;
  border: 1px solid rgba(1,39,62,.08);
  box-shadow: var(--soft-shadow);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-item {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  gap: 14px;
  align-items: start;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--red);
}

.contact-icon i {
  color: #fff;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-family: "Sora", Verdana, sans-serif;
}

.contact-item span,
.contact-item a {
  color: var(--muted);
  line-height: 1.55;
}

.contact-item a:hover {
  color: var(--blue);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--navy);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(1,39,62,.12);
  background: #fbfdff;
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(33,95,196,.12);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--green);
  font-weight: 700;
}

.map-card {
  margin-top: 28px;
  padding: 0;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.app-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,.72fr) minmax(300px,.4fr);
  gap: 36px;
  align-items: center;
  padding: 44px;
  border-radius: 46px;
  background: var(--navy);
  overflow: hidden;
}

.app-panel h2,
.app-panel p {
  color: white;
}

.app-panel p {
  opacity: .78;
  margin-top: 18px;
}

.phone-mock {
  position: relative;
  width: 240px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 42px;
  background: #081827;
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
}

.phone-screen {
  min-height: 430px;
  border-radius: 30px;
  background: linear-gradient(160deg, var(--red), var(--mint));
  padding: 24px 18px;
}

.phone-logo {
  width: 130px;
  margin: 0 auto 24px;
}

.phone-line {
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  margin: 14px 0;
}

.phone-card {
  background: white;
  border-radius: 22px;
  padding: 16px;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  background: var(--navy);
  color: white;
  padding: 52px 0 20px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: rgb(235,89,62);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .65fr .65fr .75fr;
  gap: 38px;
}

.footer-brand img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255,255,255,.72);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 20px;
}

.footer-title {
  color: white;
  font-family: "Sora", Verdana, sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
}

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

.footer-list a:hover {
  color: var(--yellow);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 36px;
  padding-top: 18px;
  font-size: .92rem;
}

.dev-credit a {
  color: var(--yellow);
  font-weight: 800;
}

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

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


/* Atualizações solicitadas: paleta, blog e trabalhe conosco */
:root {
  --cream: #FFF5E1;
  --rose-soft: #FCE8E3;
  --mint-soft: #E7F8F5;
  --blue-soft: #E9F2FF;
}

body {
  background:
    radial-gradient(circle at 4% 9%, rgba(235,89,62,.16), transparent 25vw),
    radial-gradient(circle at 94% 16%, rgba(122,198,186,.38), transparent 28vw),
    radial-gradient(circle at 54% 0%, rgba(255,221,0,.12), transparent 22vw),
    linear-gradient(180deg, #fff 0%, var(--cream) 42%, #f8fbff 100%);
}

.navbar {
  background: rgba(255, 255, 255, .93);
  border-color: rgba(33,95,196,.12);
}

.nav-link:hover,
.nav-link.is-active {
  background: var(--green);
  color: white;
  box-shadow: 0 10px 22px rgba(0,78,74,.14);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green), var(--navy));
}

.hero::before {
  background: radial-gradient(circle at 45% 45%, rgba(235,89,62,.22), rgba(235,89,62,0) 68%);
}

.hero::after {
  background: radial-gradient(circle, rgba(255,221,0,.32), rgba(255,221,0,0) 68%);
}

.wave-divider,
.info-strip,
.site-footer {
  background: linear-gradient(135deg, rgb(235,89,62), rgb(245,156,25));
}

.page-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(235,89,62,.18), transparent 29%),
    radial-gradient(circle at 84% 18%, rgba(255,221,0,.24), transparent 26%),
    radial-gradient(circle at 82% 82%, rgba(122,198,186,.48), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.home-links-section {
  background:
    linear-gradient(180deg, rgba(1, 39, 62, .90) 0%, rgba(1, 39, 62, .72) 52%, rgba(1, 39, 62, .58) 100%),
    url("../assets/slide/interage3.jpg") center center / cover no-repeat;
}

.home-links-section .section-header h2,
.home-links-section .section-header p {
  color: #FFFFFF;
}

.home-links-section .section-header p {
  font-weight: 600;
}

.home-links-section .kicker {
  color: #FFDD00;
}

.feature-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-panel {
  position: relative;
  min-height: 390px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 46px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(1,39,62,.08);
}

.feature-panel::before,
.feature-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
}

.feature-panel::before {
  width: 240px;
  height: 240px;
  top: -82px;
  right: -72px;
}

.feature-panel::after {
  width: 135px;
  height: 135px;
  top: 46px;
  left: 44px;
  opacity: .72;
}

.feature-panel > * {
  position: relative;
  z-index: 1;
}

.blog-panel {
  background: var(--navy);
}

.blog-panel::before { background: var(--yellow); }
.blog-panel::after { background: var(--red); }
.blog-panel h3,
.blog-panel p,
.blog-panel .panel-eyebrow { color: white; }
.blog-panel p { opacity: .78; }

.career-panel {
  background: linear-gradient(135deg, var(--mint), var(--sky));
}

.career-panel::before { background: var(--red); }
.career-panel::after { background: var(--orange); }
.career-panel h3,
.career-panel p,
.career-panel .panel-eyebrow { color: var(--navy); }

.panel-eyebrow {
  font-family: "Sora", Verdana, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .82rem;
}

.feature-panel h3 {
  font-size: clamp(2rem, 3.4vw, 4rem);
}

.page-hero-blog .kicker::before { background: var(--yellow); }
.page-hero-career .kicker::before { background: var(--mint); }

.blog-hero-card,
.career-visual {
  position: relative;
  min-height: 440px;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(1,39,62,.08);
}

.blog-hero-card {
  background:
    radial-gradient(circle at 12% 18%, var(--red) 0 18%, transparent 19%),
    radial-gradient(circle at 82% 12%, var(--yellow) 0 14%, transparent 15%),
    radial-gradient(circle at 72% 86%, var(--mint) 0 22%, transparent 23%),
    linear-gradient(145deg, var(--blue), var(--navy));
}

.blog-shape {
  position: absolute;
  border-radius: 38% 62% 60% 40% / 48% 32% 68% 52%;
  filter: blur(.1px);
}

.shape-one {
  width: 190px;
  height: 190px;
  left: 44px;
  top: 54px;
  background: rgba(255,255,255,.14);
}

.shape-two {
  width: 250px;
  height: 250px;
  right: -60px;
  bottom: -60px;
  background: rgba(255,255,255,.12);
}

.editorial-card {
  position: absolute;
  inset: 34px;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
}

.editorial-card span,
.blog-category {
  display: inline-flex;
  flex-shrink: 0;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.editorial-card strong {
  display: block;
  max-width: 100%;
  color: var(--navy);
  font-family: "Sora", Verdana, sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -.05em;
  margin: 16px 0 10px;
}

.editorial-card p {
  display: -webkit-box;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.blog-search {
  position: relative;
  width: min(100%, 620px);
  margin: 0 auto 32px;
}

.blog-search i {
  position: absolute;
  top: 50%;
  left: 22px;
  color: var(--blue);
  transform: translateY(-50%);
  pointer-events: none;
}

.blog-search input {
  width: 100%;
  min-height: 58px;
  padding: 14px 22px 14px 54px;
  border: 1px solid rgba(1, 39, 62, .12);
  border-radius: 999px;
  outline: none;
  background: white;
  color: var(--navy);
  font: inherit;
  box-shadow: 0 14px 34px rgba(1, 39, 62, .08);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.blog-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 188, .12), 0 14px 34px rgba(1, 39, 62, .08);
}

.blog-card[hidden] {
  display: none;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.blog-pagination[hidden] {
  display: none;
}

.blog-pagination button {
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  padding: 0 14px;
  border: 1px solid rgba(1, 39, 62, .12);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.blog-pagination button:hover,
.blog-pagination button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.blog-pagination button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  gap: 0;
  border-radius: 38px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(1,39,62,.08);
  box-shadow: var(--soft-shadow);
}

.blog-thumb {
  display: grid;
  place-items: end start;
  padding: 24px;
  color: var(--navy);
  font-family: "Sora", Verdana, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.thumb-red { background: var(--red); }
.thumb-mint { background: var(--mint); }
.thumb-yellow { background: var(--yellow); }
.thumb-sky { background: var(--sky); }

.blog-content {
  display: grid;
  align-content: start;
  padding: 30px;
}

.blog-content h3 {
  margin: 18px 0 12px;
}

.blog-content a {
  color: var(--blue);
  font-weight: 900;
  margin-top: 22px;
}

.blog-hero-card {
  display: block;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(22, 35, 67, 0.2);
}

.blog-thumb-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(1, 39, 62, .08);
  border-radius: 0;
  background: linear-gradient(145deg, #f8fbfd, #eef3f7);
  writing-mode: initial;
  transform: none;
}

.blog-thumb-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-thumb-image img {
  transform: scale(1.025);
}

.public-blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.blog-empty-state {
  grid-column: 1 / -1;
  padding: 48px 24px;
  border: 1px dashed rgba(22, 35, 67, 0.2);
  border-radius: 32px;
  color: var(--muted);
  text-align: center;
}

.blog-empty-state[hidden] {
  display: none;
}

.public-blog-post-hero {
  position: relative;
  display: flex;
  min-height: 0;
  align-items: center;
  padding: 48px 0 72px;
  color: var(--navy);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(1, 39, 62, .94) 0%, rgba(1, 39, 62, .82) 42%, rgba(1, 39, 62, .54) 72%, rgba(1, 39, 62, .38) 100%),
    var(--hero-background-image, url("../assets/slide/3013153_1_054758958225.jpg")) center 48% / cover no-repeat;
}

.public-blog-post-hero .public-blog-back,
.public-blog-post-hero .kicker,
.public-blog-post-hero h1,
.public-blog-post-hero .public-blog-post-meta {
  color: #fff;
}

.public-blog-post-hero::after {
  position: absolute;
  right: -80px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 46px solid rgba(1, 39, 62, 0.05);
  border-radius: 50%;
  content: "";
}

.public-blog-post-heading {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding-top: 0;
  padding-bottom: 0;
}

.public-blog-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 800;
}

.public-blog-post-heading h1 {
  max-width: 900px;
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
  line-height: 1.06;
}

.public-blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
}

.public-blog-post-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.public-blog-post-section {
  padding: 0 0 104px;
  background:
    radial-gradient(circle at 0 28%, rgba(122, 198, 186, .12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, var(--off-white) 100%);
}

.public-blog-post {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.public-blog-post-cover-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  margin: 0 0 42px;
  overflow: hidden;
  border-radius: 40px;
  border: 8px solid var(--white);
  box-shadow: 0 24px 60px rgba(22, 35, 67, 0.14);
  transform: translateY(-48px);
}

.public-blog-post-cover-frame.reveal.is-visible {
  transform: translateY(-48px);
}

.public-blog-post-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-blog-reading-card {
  max-width: 900px;
  margin: -18px auto 0;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(1, 39, 62, .08);
  border-radius: 38px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 55px rgba(22, 35, 67, .09);
}

.public-blog-reading-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.public-blog-post-content {
  max-width: 100%;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.88;
}

.public-blog-post-content h2,
.public-blog-post-content h3 {
  margin: 42px 0 16px;
  line-height: 1.2;
}

.public-blog-post-content p,
.public-blog-post-content ul,
.public-blog-post-content ol,
.public-blog-post-content blockquote {
  margin: 0 0 24px;
}

.public-blog-post-content ul,
.public-blog-post-content ol {
  padding-left: 24px;
}

.public-blog-post-content li + li {
  margin-top: 8px;
}

.public-blog-post-content a {
  color: var(--blue);
  font-weight: 800;
}

.public-blog-post-content blockquote {
  padding: 18px 24px;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: var(--white);
}

.public-blog-post-footer {
  margin: 56px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(22, 35, 67, 0.12);
}

.public-blog-related {
  margin-top: 90px;
}

.public-blog-related-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.public-blog-related-heading h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.public-blog-related-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}

.public-blog-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.public-blog-related-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(1, 39, 62, .08);
  border-radius: 28px;
  color: inherit;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(22, 35, 67, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.public-blog-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(22, 35, 67, .14);
}

.public-blog-related-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-soft);
}

.public-blog-related-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.public-blog-related-card:hover .public-blog-related-image img {
  transform: scale(1.04);
}

.public-blog-related-body {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.public-blog-related-body > strong {
  display: -webkit-box;
  margin: 15px 0 18px;
  overflow: hidden;
  color: var(--navy);
  font-family: "Sora", Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.public-blog-related-body .public-blog-meta {
  margin-top: auto;
}

@media (max-width: 980px) {
  .public-blog-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .public-blog-post-hero {
    min-height: 0;
    padding: 34px 0 58px;
  }
  .public-blog-post-heading {
    padding-top: 0;
    padding-bottom: 0;
  }
  .public-blog-post-heading h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }
  .public-blog-post-cover-frame {
    aspect-ratio: 4 / 3;
    border-width: 5px;
    border-radius: 26px;
  }
  .public-blog-reading-card {
    padding: 30px 22px;
    border-radius: 28px;
  }
  .public-blog-related {
    margin-top: 64px;
  }
  .public-blog-related-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .public-blog-related-grid {
    grid-template-columns: 1fr;
  }
  .public-blog-related-body {
    min-height: 0;
  }
}

.career-visual {
  background:
    radial-gradient(circle at 15% 20%, var(--yellow) 0 13%, transparent 14%),
    radial-gradient(circle at 76% 16%, var(--red) 0 18%, transparent 19%),
    linear-gradient(145deg, var(--mint), var(--sky));
}

.career-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 230px;
  height: 230px;
  display: grid;
  place-items: center;
  border-radius: 52px;
  background: white;
  color: var(--blue);
  font-family: "Sora", Verdana, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
}

.career-note {
  position: absolute;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--navy);
  background: white;
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.note-one { left: 30px; top: 48px; }
.note-two { right: 24px; top: 150px; background: var(--yellow); }
.note-three { left: 60px; bottom: 56px; background: var(--red); }

.career-grid {
  display: grid;
  grid-template-columns: minmax(320px, .58fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.career-info-card {
  position: sticky;
  top: 124px;
  padding: 38px;
  border-radius: 42px;
  background: var(--navy);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.career-info-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--yellow);
}

.career-info-card h2,
.career-info-card p,
.career-info-card .kicker {
  position: relative;
  z-index: 1;
  color: white;
}

.career-info-card p {
  margin-top: 18px;
  opacity: .76;
}

.career-values {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.career-values span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: white;
  font-weight: 800;
}

.career-form-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}

.career-form-card > p {
  margin-bottom: 26px;
}

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

.file-field input[type="file"] {
  padding: 18px;
  background: var(--mint-soft);
  border: 2px dashed rgba(0,78,74,.24);
}

.field small {
  color: var(--muted);
  font-weight: 600;
}

.consent-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

@media (max-width: 1180px) {
  .nav-link { font-size: .84rem; padding: 10px 11px; }
  .brand { min-width: 142px; }
  .brand img { width: 150px; }
}

@media (max-width: 980px) {
  .feature-duo,
  .blog-grid,
  .career-grid {
    grid-template-columns: 1fr;
  }
  .career-info-card {
    position: relative;
    top: auto;
  }
  .blog-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .feature-panel,
  .blog-hero-card,
  .career-visual {
    min-height: 330px;
    border-radius: 32px;
  }
  .editorial-card {
    inset: 20px;
    padding: 22px;
    border-radius: 24px;
  }
  .editorial-card strong {
    margin: 12px 0 8px;
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }
  .editorial-card p {
    font-size: .9rem;
    -webkit-line-clamp: 2;
  }
  .blog-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .blog-card {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .blog-thumb {
    min-height: 120px;
    writing-mode: initial;
    transform: none;
    place-items: end start;
  }
  .blog-thumb-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin: 0;
  }
  .blog-content {
    padding: 24px 20px 28px;
  }
  .career-badge {
    width: 180px;
    height: 180px;
    font-size: 4rem;
  }
  .career-note {
    font-size: .8rem;
  }
}

@media (max-width: 1120px) {
  .nav-actions .btn { display: none; }
  .nav-social { gap: 6px; }
  .nav-social a {
    width: 34px;
    height: 34px;
  }
  .program-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .value-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 980px) {
  .site-header { padding: 12px 0; }
  .navbar { border-radius: 28px; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 102px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(1,39,62,.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .22s ease;
  }
  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-social { display: none; }
  body[data-page="index.html"] .nav-item-dropdown {
    position: static;
  }
  body[data-page="index.html"] .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    background: rgba(246, 250, 255, .9);
    margin-top: 4px;
    border-radius: 14px;
    padding: 8px;
  }
  .nav-link { width: 100%; }
  .hero-grid,
  .section-header,
  .tour-highlight,
  .approach-layout,
  .testimonial-shell,
  .page-hero-grid,
  .split-grid,
  .tab-shell,
  .contact-grid,
  .app-panel {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding-top: 32px; }
  .hero-media { order: -1; margin-top: 0; }
  .hero-illustration { max-height: 520px; object-fit: cover; }
  .hero-cta .btn { min-width: 0; }
  .hero-badges { max-width: 100%; margin-top: 16px; }
  .info-grid,
  .card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .approach-visual { min-height: 430px; }
  .tab-buttons { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .class-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .media-card-escola { min-height: 460px; }
  .home-testimonials-carousel { --testimonials-visible: 2; }
  .home-testimonial-card { flex-basis: calc((100% - 24px) / 2); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .navbar { padding: 12px; min-height: 74px; }
  .brand img { width: 136px; }
  .nav-menu { left: 14px; right: 14px; top: 92px; }
  h1 { font-size: clamp(2.55rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.2rem); }
  .section { padding: 74px 0; }
  .section-tight { padding: 52px 0; }
  .hero-badges,
  .info-grid,
  .card-grid,
  .program-grid,
  .value-grid,
  .mini-feature-grid,
  .footer-grid,
  .tab-buttons {
    grid-template-columns: 1fr;
  }
  .hero-cta,
  .cta-actions,
  .footer-bottom { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .hero-copy { font-size: 1.03rem; }
  .float-card { display: none; }
  .approach-pillars { grid-template-columns: 1fr; }
  .approach-visual { min-height: 330px; }
  .apz-center { width: 200px; height: 200px; }
  .apz-center img { width: 126px; }
  .bubble { width: 86px; height: 86px; font-size: .8rem; }
  .testimonial-card,
  .cta-box,
  .tab-panel,
  .contact-card,
  .form-card { padding: 28px; border-radius: 30px; }
  .class-card { grid-template-columns: 1fr; }
  .class-visual { width: 150px; }
  .phone-mock { width: 220px; }
  .media-card-escola { min-height: 360px; }
  .testimonial-card-turmas {
    padding: 20px;
    border-radius: 24px;
  }
  .testimonial-card-turmas .testimonial-media,
  .testimonial-card-turmas .testimonial-image {
    min-height: 260px;
    height: 260px;
  }
  .home-testimonials-carousel { --testimonials-visible: 1; --testimonials-gap: 16px; }
  .home-testimonial-card { flex-basis: 100%; min-height: 0; padding: 28px; border-radius: 30px; }
}

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

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


/* Correção estrutural final: vermelho no lugar do rosa e reforço visual global */
:root {
  --red: rgb(235, 89, 62);
  --red-soft: #FCE8E3;
  --rose-soft: #FCE8E3;
}

.nav-link:hover,
.nav-link.is-active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(235, 89, 62, .22);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  box-shadow: 0 18px 38px rgba(235, 89, 62, .24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral), var(--navy));
}

.btn-outline:hover {
  background: var(--red-soft);
  border-color: rgba(235, 89, 62, .35);
  color: var(--navy);
}

.kicker::before,
.float-card .dot,
.program-list li::before,
.quote-mark {
  background: var(--red);
  color: var(--red);
}

.hero-title .mark-red::after,
.card::after,
.class-card::before,
.contact-icon,
.phone-screen,
.stack-card:nth-child(3),
.bubble:nth-of-type(4),
.blog-panel::after,
.career-note.note-three,
.thumb-red {
  background: rgb(245, 156, 25);
}

.card-mint::after,
.card-yellow::after,
.card-sky::after {
  background: rgba(255,255,255,.18);
}

.hero::before {
  background: radial-gradient(circle at 45% 45%, rgba(235, 89, 62, .20), rgba(235, 89, 62, 0) 68%);
}

body {
  background:
    radial-gradient(circle at 4% 9%, rgba(235, 89, 62, .12), transparent 25vw),
    radial-gradient(circle at 94% 16%, rgba(122,198,186,.34), transparent 28vw),
    radial-gradient(circle at 54% 0%, rgba(255,221,0,.12), transparent 22vw),
    linear-gradient(180deg, #fff 0%, #fff7ee 42%, #f8fbff 100%);
}

.page-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(235, 89, 62, .16), transparent 29%),
    radial-gradient(circle at 84% 18%, rgba(255,221,0,.24), transparent 26%),
    radial-gradient(circle at 82% 82%, rgba(122,198,186,.48), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff7ee 100%);
}

.blog-hero-card {
  background:
    radial-gradient(circle at 12% 18%, rgba(235, 89, 62, .92) 0 18%, transparent 19%),
    radial-gradient(circle at 82% 12%, var(--yellow) 0 14%, transparent 15%),
    radial-gradient(circle at 72% 86%, var(--mint) 0 22%, transparent 23%),
    linear-gradient(145deg, var(--blue), var(--navy));
}

.site-footer {
  background: #01273E;
  color: #fff;
}

.site-footer::before {
  background: #FFDD00;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #FFA700;
}

.site-footer a,
.site-footer p,
.site-footer li {
  color: rgba(255,255,255,.76);
}

.footer-title,
.footer-bottom,
.dev-credit a {
  color: #fff;
}

.footer-list a:hover,
.dev-credit a:hover {
  color: var(--yellow);
}

.footer-brand img {
  width: 190px;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

.form-status.is-error,
.error-message {
  color: var(--red);
}

body[data-page="index.html"] .wave-divider,
body[data-page="index.html"] .info-strip {
  background: rgb(18,100,164);
}

body[data-page="index.html"] .info-icon {
  background: transparent;
  color: white;
  box-shadow: none;
  border: 0;
  width: 60px;
  height: 60px;
  min-width: 60px;
  font-size: 1.75rem;
}

body[data-page="index.html"] .info-item {
  align-items: center;
  gap: 8px;
}

body[data-page="index.html"] .info-item > div {
  align-self: center;
}

body[data-page="index.html"] .info-item strong,
body[data-page="index.html"] .info-item span {
  line-height: 1.3;
}

body[data-page="index.html"] .approach-band {
  color: white;
}

body[data-page="index.html"] .approach-band h2,
body[data-page="index.html"] .approach-band .kicker {
  color: white;
}

body[data-page="index.html"] .approach-band p {
  color: rgba(255,255,255,.92);
}

body[data-page="index.html"] .pillar-card {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.28);
}

body[data-page="index.html"] .pillar-card h3 {
  color: white;
}

body[data-page="index.html"] .pillar-card p {
  color: rgba(255,255,255,.94);
}

body[data-page="index.html"] .orbit {
  border-color: rgba(255,255,255,.38);
}

body[data-page="index.html"] .bubble {
  color: white;
  text-shadow: 0 2px 10px rgba(1,39,62,.28);
}

body[data-page="index.html"] .bubble:nth-of-type(4),
body[data-page="index.html"] .bubble:nth-of-type(5),
body[data-page="index.html"] .bubble:nth-of-type(6) {
  color: var(--navy);
  text-shadow: none;
}

@media (max-width: 980px) {
  .nav-menu {
    z-index: 120;
  }
}

/* Hero da home com fotografia de fundo */
.hero {
  background:
    linear-gradient(90deg, rgba(1, 39, 62, .94) 0%, rgba(1, 39, 62, .82) 42%, rgba(1, 39, 62, .42) 72%, rgba(1, 39, 62, .22) 100%),
    var(--hero-background-image, url("../assets/slide/brinca11.jpg")) center center / cover no-repeat;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-grid {
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-content {
  width: 100%;
}

.hero .kicker,
.hero-title,
.hero-copy {
  color: #FFFFFF;
}

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

.hero-title .mark-red,
.hero-title .mark-yellow {
  color: #FFFFFF;
}

.hero .btn-outline {
  color: #FFFFFF;
  background: var(--blue);
  border-color: var(--blue);
}

.hero .btn-outline:hover {
  color: #FFFFFF;
  background: var(--navy);
  border-color: var(--navy);
}

@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(1, 39, 62, .95) 0%, rgba(1, 39, 62, .82) 60%, rgba(1, 39, 62, .58) 100%),
      url("../assets/slide/brinca11.jpg") 58% center / cover no-repeat;
  }
}

@media (max-width: 680px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(1, 39, 62, .92) 0%, rgba(1, 39, 62, .82) 100%),
      url("../assets/slide/brinca11.jpg") 58% center / cover no-repeat;
  }
}

/* Seção Lived English */
.lived-english-section {
  overflow: hidden;
  background: #215FC4;
}

.lived-english-header {
  max-width: 900px;
  margin: 0 auto 54px;
  text-align: center;
}

.lived-english-header h2 {
  color: #FFDD00;
  text-wrap: balance;
}

.lived-english-flow {
  max-width: 1120px;
  margin: 0 auto;
}

.lived-bubble {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 4vw, 42px);
  border: 3px solid #01273E;
  border-radius: 44px;
  box-shadow: 10px 12px 0 rgba(1, 39, 62, .28);
}

.lived-bubble p {
  color: #01273E;
  font-weight: 700;
  line-height: 1.65;
}

.lived-bubble-main {
  max-width: 720px;
  margin: 0 auto;
  background: #F8C7DE;
  text-align: center;
}

.lived-bubble-main p {
  font-family: "Sora", Verdana, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.lived-flow-connectors {
  display: block;
  width: 100%;
  height: 100px;
}

.lived-flow-connectors path {
  fill: none;
  stroke: #FFDD00;
  stroke-width: 7;
  vector-effect: non-scaling-stroke;
}

.lived-flow-connectors marker path {
  fill: #FFDD00;
  stroke: none;
}

.lived-mobile-connector {
  display: none;
}

.lived-english-branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.lived-bubble-left {
  background: #7AC6BA;
}

.lived-bubble-right {
  background: #64A0EE;
}

.lived-experiences {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 88px;
  align-items: stretch;
}

.lived-experience-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 3px solid #01273E;
  border-radius: 30px;
  background: #F8C7DE;
  box-shadow: 8px 10px 0 rgba(1, 39, 62, .28);
}

.lived-experience-card:nth-child(1) {
  border-top-color: #FFDD00;
}

.lived-experience-card:nth-child(2) {
  border-top-color: #FFA700;
}

.lived-experience-card:nth-child(3) {
  border-top-color: #7AC6BA;
}

.lived-experience-card:nth-child(4) {
  border-top-color: #64A0EE;
}

.lived-experience-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lived-experience-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 28px;
}

.lived-experience-copy h3 {
  min-height: 2.1em;
  color: #01273E;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
}

.lived-experience-copy p {
  margin-top: 16px;
  color: #01273E;
  font-size: .92rem;
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .lived-experiences {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .lived-experience-copy h3 {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .lived-english-header {
    margin-bottom: 38px;
  }

  .lived-flow-connectors {
    display: none;
  }

  .lived-mobile-connector {
    display: grid;
    min-height: 58px;
    place-items: center;
    color: #FFDD00;
    font-size: 2.6rem;
    font-weight: 900;
  }

  .lived-english-branches {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .lived-bubble-right::before {
    position: absolute;
    top: -52px;
    left: 50%;
    color: #FFDD00;
    content: "↓";
    font-size: 2.4rem;
    font-weight: 900;
    transform: translateX(-50%);
  }

  .lived-bubble {
    border-radius: 32px;
  }

  .lived-experiences {
    grid-template-columns: 1fr;
    margin-top: 68px;
  }
}

@media (max-width: 680px) {
  .home-links-section {
    background:
      linear-gradient(180deg, rgba(1, 39, 62, .94) 0%, rgba(1, 39, 62, .78) 100%),
      url("../assets/slide/interage3.jpg") 58% center / cover no-repeat;
  }
}

/* Hero da escola com fotografia de fundo */
.page-hero-school {
  background:
    linear-gradient(90deg, rgba(1, 39, 62, .94) 0%, rgba(1, 39, 62, .82) 42%, rgba(1, 39, 62, .54) 72%, rgba(1, 39, 62, .38) 100%),
    var(--hero-background-image, url("../assets/slide/3013153_1_05475444899.jpg")) center 42% / cover no-repeat;
}

.page-hero-school .kicker,
.page-hero-school h1,
.page-hero-school p {
  color: #FFFFFF;
}

@media (max-width: 980px) {
  .page-hero-school {
    background:
      linear-gradient(90deg, rgba(1, 39, 62, .95) 0%, rgba(1, 39, 62, .86) 58%, rgba(1, 39, 62, .62) 100%),
      var(--hero-background-image, url("../assets/slide/3013153_1_05475444899.jpg")) 48% center / cover no-repeat;
  }
}

@media (max-width: 680px) {
  .page-hero-school {
    background:
      linear-gradient(180deg, rgba(1, 39, 62, .92) 0%, rgba(1, 39, 62, .82) 100%),
      var(--hero-background-image, url("../assets/slide/3013153_1_05475444899.jpg")) 48% center / cover no-repeat;
  }
}

/* Composição da seção Essência Alphabetz */
.school-essence-intro h2 {
  margin-top: 16px;
}

.school-essence-intro p {
  margin-top: 20px;
}

.school-essence-grid {
  align-items: stretch;
  margin-top: 34px;
}

.school-essence-grid .media-card-escola {
  min-height: 0;
}

@media (max-width: 980px) {
  .school-essence-grid .media-card-escola {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .school-essence-grid .media-card-escola {
    min-height: 360px;
  }
}

/* Cores dos cards de Valores da página escola */
.value-card-innovation {
  background: #215FC4;
}

.value-card-care {
  background: #F8C7DE;
}

.value-card-family {
  background: #7AC6BA;
}

.value-card-excellence {
  background: #FFDD00;
}

.value-card-collaboration {
  background: #004E4A;
}

.value-card-innovation,
.value-card-collaboration {
  border-color: rgba(255,255,255,.22);
}

.value-card-innovation h3,
.value-card-innovation p,
.value-card-collaboration h3,
.value-card-collaboration p {
  color: #fff;
}

.value-card-innovation strong,
.value-card-collaboration strong {
  color: #fff;
  background: rgba(255,255,255,.18);
}

.value-card-care,
.value-card-family,
.value-card-excellence {
  border-color: rgba(1,39,62,.16);
}

.value-card-care h3,
.value-card-care p,
.value-card-family h3,
.value-card-family p,
.value-card-excellence h3,
.value-card-excellence p {
  color: #01273E;
}

.value-card-care strong,
.value-card-family strong,
.value-card-excellence strong {
  color: #01273E;
  background: rgba(1,39,62,.12);
}

/* Hero da Abordagem com fotografia de fundo */
.page-hero-approach {
  background:
    linear-gradient(90deg, rgba(1, 39, 62, .94) 0%, rgba(1, 39, 62, .82) 42%, rgba(1, 39, 62, .54) 72%, rgba(1, 39, 62, .38) 100%),
    var(--hero-background-image, url("../assets/slide/3013153_1_443177838032.jpg")) center 42% / cover no-repeat;
}

.page-hero-approach .kicker,
.page-hero-approach h1,
.page-hero-approach > .page-hero-grid > .reveal > p {
  color: #FFFFFF;
}

@media (max-width: 980px) {
  .page-hero-approach {
    background:
      linear-gradient(90deg, rgba(1, 39, 62, .95) 0%, rgba(1, 39, 62, .86) 58%, rgba(1, 39, 62, .62) 100%),
      var(--hero-background-image, url("../assets/slide/3013153_1_443177838032.jpg")) 48% center / cover no-repeat;
  }
}

@media (max-width: 680px) {
  .page-hero-approach {
    background:
      linear-gradient(180deg, rgba(1, 39, 62, .92) 0%, rgba(1, 39, 62, .82) 100%),
      var(--hero-background-image, url("../assets/slide/3013153_1_443177838032.jpg")) 48% center / cover no-repeat;
  }
}

/* Hero de Turmas com fotografia de fundo */
.page-hero-classes {
  background:
    linear-gradient(90deg, rgba(1, 39, 62, .94) 0%, rgba(1, 39, 62, .82) 42%, rgba(1, 39, 62, .54) 72%, rgba(1, 39, 62, .38) 100%),
    var(--hero-background-image, url("../assets/slide/3013153_1_1753361936458585664001742.jpg")) center 45% / cover no-repeat;
}

.page-hero-classes .page-hero-grid {
  grid-template-columns: 1fr;
}

.page-hero-classes .page-hero-grid > .reveal {
  width: 100%;
}

.page-hero-classes .kicker,
.page-hero-classes h1,
.page-hero-classes p {
  color: #FFFFFF;
}

.page-hero-classes p {
  max-width: none;
}

@media (max-width: 980px) {
  .page-hero-classes {
    background:
      linear-gradient(90deg, rgba(1, 39, 62, .95) 0%, rgba(1, 39, 62, .86) 58%, rgba(1, 39, 62, .62) 100%),
      var(--hero-background-image, url("../assets/slide/3013153_1_1753361936458585664001742.jpg")) 48% center / cover no-repeat;
  }
}

@media (max-width: 680px) {
  .page-hero-classes {
    background:
      linear-gradient(180deg, rgba(1, 39, 62, .92) 0%, rgba(1, 39, 62, .82) 100%),
      var(--hero-background-image, url("../assets/slide/3013153_1_1753361936458585664001742.jpg")) 48% center / cover no-repeat;
  }
}

/* Hero do Blog com fotografia de fundo */
.page-hero-blog {
  background:
    linear-gradient(90deg, rgba(1, 39, 62, .94) 0%, rgba(1, 39, 62, .82) 42%, rgba(1, 39, 62, .54) 72%, rgba(1, 39, 62, .38) 100%),
    var(--hero-background-image, url("../assets/slide/3013153_1_054758958225.jpg")) center 48% / cover no-repeat;
}

.page-hero-blog > .page-hero-grid > .reveal > .kicker,
.page-hero-blog > .page-hero-grid > .reveal > h1,
.page-hero-blog > .page-hero-grid > .reveal > p {
  color: #FFFFFF;
}

.page-hero-blog .hero-cta .btn-outline {
  color: #F8C7DE;
  background: rgba(1,39,62,.22);
  border-color: rgba(248,199,222,.72);
  box-shadow: 0 14px 34px rgba(1,39,62,.24);
}

.page-hero-blog .hero-cta .btn-outline:hover {
  color: #01273E;
  background: #fff;
  border-color: #fff;
}

@media (max-width: 980px) {
  .page-hero-blog {
    background:
      linear-gradient(90deg, rgba(1, 39, 62, .95) 0%, rgba(1, 39, 62, .86) 58%, rgba(1, 39, 62, .62) 100%),
      var(--hero-background-image, url("../assets/slide/3013153_1_054758958225.jpg")) 48% center / cover no-repeat;
  }
}

@media (max-width: 680px) {
  .page-hero-blog {
    background:
      linear-gradient(180deg, rgba(1, 39, 62, .92) 0%, rgba(1, 39, 62, .82) 100%),
      var(--hero-background-image, url("../assets/slide/3013153_1_054758958225.jpg")) 48% center / cover no-repeat;
  }
}

/* Hero de Trabalhe Conosco com fotografia de fundo */
.page-hero-career {
  background:
    linear-gradient(90deg, rgba(1, 39, 62, .94) 0%, rgba(1, 39, 62, .82) 42%, rgba(1, 39, 62, .54) 72%, rgba(1, 39, 62, .38) 100%),
    var(--hero-background-image, url("../assets/slide/3013153_1_054759271173.jpg")) center 48% / cover no-repeat;
}

.page-hero-career > .page-hero-grid > .reveal > .kicker,
.page-hero-career > .page-hero-grid > .reveal > h1,
.page-hero-career > .page-hero-grid > .reveal > p {
  color: #FFFFFF;
}

.page-hero-career .hero-cta .btn-outline {
  color: #F8C7DE;
  background: rgba(1,39,62,.22);
  border-color: rgba(248,199,222,.72);
  box-shadow: 0 14px 34px rgba(1,39,62,.24);
}

.page-hero-career .hero-cta .btn-outline:hover {
  color: #01273E;
  background: #fff;
  border-color: #fff;
}

@media (max-width: 980px) {
  .page-hero-career {
    background:
      linear-gradient(90deg, rgba(1, 39, 62, .95) 0%, rgba(1, 39, 62, .86) 58%, rgba(1, 39, 62, .62) 100%),
      var(--hero-background-image, url("../assets/slide/3013153_1_054759271173.jpg")) 48% center / cover no-repeat;
  }
}

@media (max-width: 680px) {
  .page-hero-career {
    background:
      linear-gradient(180deg, rgba(1, 39, 62, .92) 0%, rgba(1, 39, 62, .82) 100%),
      var(--hero-background-image, url("../assets/slide/3013153_1_054759271173.jpg")) 48% center / cover no-repeat;
  }
}

/* Hero de Contato com fotografia de fundo */
.page-hero-contact {
  background:
    linear-gradient(90deg, rgba(1, 39, 62, .94) 0%, rgba(1, 39, 62, .82) 42%, rgba(1, 39, 62, .54) 72%, rgba(1, 39, 62, .38) 100%),
    var(--hero-background-image, url("../assets/slide/cuida5.jpg")) center 48% / cover no-repeat;
}

.page-hero-contact > .page-hero-grid > .reveal > .kicker,
.page-hero-contact > .page-hero-grid > .reveal > h1,
.page-hero-contact > .page-hero-grid > .reveal > p {
  color: #fff;
}

@media (max-width: 980px) {
  .page-hero-contact {
    background:
      linear-gradient(90deg, rgba(1, 39, 62, .95) 0%, rgba(1, 39, 62, .86) 58%, rgba(1, 39, 62, .62) 100%),
      var(--hero-background-image, url("../assets/slide/cuida5.jpg")) 48% center / cover no-repeat;
  }
}

@media (max-width: 680px) {
  .page-hero-contact {
    background:
      linear-gradient(180deg, rgba(1, 39, 62, .92) 0%, rgba(1, 39, 62, .82) 100%),
      var(--hero-background-image, url("../assets/slide/cuida5.jpg")) 48% center / cover no-repeat;
  }
}

/* Cores dos bubbles do hero da Abordagem */
.page-hero-approach .bubble:nth-of-type(4) {
  background: #FFA700;
}

.page-hero-approach .bubble:nth-of-type(5) {
  background: #FFDD00;
}

.page-hero-approach .bubble:nth-of-type(6) {
  background: #64A0EE;
}

.page-hero-approach .bubble:nth-of-type(7) {
  background: #004E4A;
}

.page-hero-approach .bubble:nth-of-type(4),
.page-hero-approach .bubble:nth-of-type(5),
.page-hero-approach .bubble:nth-of-type(6) {
  color: #01273E;
  text-shadow: none;
}

.page-hero-approach .bubble:nth-of-type(7) {
  color: #fff;
  text-shadow: none;
}

/* Acesso discreto ao painel administrativo no rodapé */
.footer-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer .footer-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.site-footer .footer-admin-link:hover {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.site-footer .footer-admin-link:focus-visible {
  outline: 3px solid rgba(255, 221, 0, .42);
  outline-offset: 3px;
}

@media (max-width: 680px) {
  .footer-bottom-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-footer .footer-admin-link {
    width: fit-content;
  }
}
