:root {
  --verde: #438408;
  --verde-escuro: #2f6206;
  --laranja: #fb5725;
  --texto: #2f3a40;
  --cinza: #f5f7fb;
  --branco: #ffffff;
  --sombra: 0 18px 45px rgba(0, 0, 0, 0.12);
  --raio: 26px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--texto);
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
  background: var(--branco);
}

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

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

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

.topbar {
  background: var(--verde);
  color: var(--branco);
  font-size: 0.95rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

.topbar__tagline {
  flex: 1;
  min-width: 0;
}

.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.topbar__highlight {
  font-weight: 600;
  white-space: nowrap;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.social-links__icon {
  width: 1em;
  height: 1em;
  display: block;
}

.social-links--topbar .social-links__item {
  width: 30px;
  height: 30px;
  color: var(--branco);
  background: rgba(255, 255, 255, 0.14);
}

.social-links--topbar .social-links__item:hover {
  background: rgba(255, 255, 255, 0.28);
}

.social-links--topbar .social-links__icon {
  width: 16px;
  height: 16px;
}

.social-links--footer {
  margin-top: 18px;
}

.social-links--footer .social-links__item {
  width: 40px;
  height: 40px;
  color: var(--branco);
  background: rgba(255, 255, 255, 0.12);
}

.social-links--footer .social-links__item:hover {
  background: rgba(255, 255, 255, 0.24);
}

.social-links--footer .social-links__icon {
  width: 18px;
  height: 18px;
}

.social-links--contato {
  margin-top: 12px;
}

.social-links--contato .social-links__item {
  width: 44px;
  height: 44px;
  color: var(--verde);
  background: rgba(67, 132, 8, 0.1);
}

.social-links--contato .social-links__item:hover {
  color: var(--branco);
  background: var(--verde);
}

.social-links--contato .social-links__icon {
  width: 20px;
  height: 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--branco);
  box-shadow: none;
  border-bottom: 0;
}

.pagina-index .header {
  box-shadow: none;
  border-bottom: 0;
}

body:not(.pagina-index) .header {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.logo {
  width: min(230px, 52vw);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
  color: #2f3a40;
}

.nav__item {
  position: relative;
}

.nav__item:not(.nav__item--mobile-cta) > a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
}

.nav__item:not(.nav__item--mobile-cta).is-active > a,
.nav__item:not(.nav__item--mobile-cta) > a:hover,
.nav__item--has-children:hover > a,
.nav__item--has-children:focus-within > a {
  color: var(--verde);
  background: rgba(67, 132, 8, 0.1);
}

.nav__item--mobile-cta {
  display: none;
}

.nav__sub {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 16px;
  background: var(--branco);
  box-shadow: var(--sombra);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  transition-delay: 0.15s;
  z-index: 100;
}

/* Área de segurança / ponte invisível para eliminar o vão entre o item e o submenu */
.nav__sub::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -10px;
  right: -10px;
  height: 16px;
  background: transparent;
}

.nav__item--has-children:hover .nav__sub,
.nav__item--has-children:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.nav__sub a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav__sub a[aria-current="page"],
.nav__sub a:hover {
  background: var(--cinza);
  color: var(--verde);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid var(--verde);
  border-radius: 12px;
  background: var(--branco);
  color: var(--verde);
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor, 0 -7px 0 currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 0;
  color: var(--branco);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow: 0 10px 24px rgba(251, 87, 37, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(251, 87, 37, 0.34);
}

.btn--orange {
  background: var(--laranja);
}

.btn--green {
  background: #25d366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}

.btn--outline {
  color: var(--verde);
  background: var(--branco);
  border: 2px solid var(--verde);
  box-shadow: none;
}

.banner-campanha-wrap,
.banner-campanha,
.banner-campanha__viewport,
.banner-campanha__track {
  width: 100%;
  max-width: 100%;
}

.banner-campanha-wrap {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.banner-campanha-wrap .banner-campanha__cta {
  line-height: 1.6;
}

.banner-campanha {
  margin: 0;
  padding: 0;
  background: transparent;
}

.banner-campanha--desktop {
  display: block;
}

.banner-campanha--mobile {
  display: none;
}

.banner-campanha__viewport {
  position: relative;
  overflow: hidden;
  background: var(--cinza);
}

.banner-campanha__track {
  display: grid;
  width: 100%;
}

.banner-campanha__slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.banner-campanha__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

.banner-campanha__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--verde-escuro);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.banner-campanha__arrow--prev {
  left: 20px;
}

.banner-campanha__arrow--next {
  right: 20px;
}

.banner-campanha--mobile .banner-campanha__arrow {
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
}

.banner-campanha--mobile .banner-campanha__arrow--prev {
  left: 10px;
}

.banner-campanha--mobile .banner-campanha__arrow--next {
  right: 10px;
}

.banner-campanha__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.banner-campanha__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.banner-campanha__dot.is-active {
  background: var(--laranja);
  transform: scale(1.15);
}

.banner-campanha__cta {
  background: var(--laranja);
  color: var(--branco);
}

.banner-campanha__cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.banner-campanha__cta-texto {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  max-width: 32ch;
  text-wrap: balance;
}

.banner-campanha__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn--cta-principal {
  background: var(--branco);
  color: var(--laranja);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  min-height: 50px;
  padding: 14px 28px;
}

.btn--cta-principal:hover {
  background: var(--branco);
  color: var(--verde-escuro);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.btn--cta-secundario {
  background: var(--verde);
  color: var(--branco);
  border: 2px solid var(--branco);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  min-height: 50px;
  padding: 14px 28px;
}

.btn--cta-secundario:hover {
  background: var(--verde-escuro);
  color: var(--branco);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.intro-home {
  padding: 48px 0 36px;
  background: var(--cinza);
}

.intro-home__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: center;
}

.eyebrow--verde {
  color: var(--verde);
  background: rgba(67, 132, 8, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--branco);
  background:
    linear-gradient(105deg, rgba(67, 132, 8, 0.92), rgba(251, 87, 37, 0.82)),
    var(--hero-bg, var(--verde)) center/cover no-repeat;
}

.hero--page {
  min-height: 0;
  padding: 36px 0 32px;
  color: var(--texto);
  background: linear-gradient(180deg, #eef6e6 0%, #e5f0da 100%);
  border-bottom: 1px solid rgba(67, 132, 8, 0.12);
}

.hero--page .eyebrow {
  margin-bottom: 10px;
  padding: 5px 12px;
  background: rgba(67, 132, 8, 0.12);
  color: var(--verde-escuro);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.hero--page h1 {
  max-width: 28ch;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--verde-escuro);
}

.hero--page p {
  max-width: 58ch;
  margin: 10px 0 0;
  font-size: 1rem;
  color: var(--texto);
}

.hero--page .hero__actions {
  margin-top: 18px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  min-height: 680px;
  padding: 70px 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.2;
  text-wrap: balance;
  hyphens: auto;
  hyphenate-limit-chars: 6 8 6;
}

h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 700;
}

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

.intro-home__content h1,
.hero__content h1 {
  max-width: 26ch;
}

.intro-home__content p,
.hero__content p {
  max-width: 640px;
  margin: 18px 0 24px;
  font-size: 1.05rem;
}

.hero__actions,
.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-card {
  padding: 26px;
  border-radius: var(--raio);
  background: var(--branco);
  color: var(--texto);
  box-shadow: var(--sombra);
}

.hero-card h2 {
  color: var(--verde);
  font-size: 1.25rem;
}

.hero-card ul {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  font-weight: 700;
}

.hero-card li::before {
  content: "✓";
  color: var(--laranja);
  font-weight: 900;
}

.trust {
  position: relative;
  z-index: 5;
}

section.trust.trust--after-banner {
  margin-top: 0;
  padding: 36px 0;
  background: var(--cinza);
}

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

.trust__item {
  padding: 24px;
  border-radius: 20px;
  background: var(--branco);
  box-shadow: var(--sombra);
  text-align: center;
  font-weight: 800;
}

.trust__item strong {
  display: block;
  color: var(--laranja);
  font-size: 1.8rem;
  font-family: "Montserrat", Arial, sans-serif;
}

section {
  padding: 76px 0;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.section-title span {
  color: var(--laranja);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.section-title h2 {
  margin-top: 10px;
  color: var(--verde);
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.titulo-destaque {
  color: var(--verde);
  margin: 12px 0;
  max-width: 28ch;
}

.rotulo-laranja {
  color: var(--laranja);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.titulo-unidade {
  margin-top: 18px;
  color: var(--verde-escuro);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-title p {
  margin: 16px auto 0;
  font-size: 1.1rem;
}

.units {
  background: var(--cinza);
}

.cards-2,
.cards-3,
.cards-4 {
  display: grid;
  gap: 24px;
}

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

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  overflow: hidden;
  border-radius: var(--raio);
  background: var(--branco);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.card__media {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.card__body {
  padding: 24px;
}

.card h3 {
  color: var(--verde-escuro);
}

.card p {
  margin-bottom: 0;
}

.card__link {
  display: inline-block;
  margin-top: 14px;
  color: var(--laranja);
  font-weight: 800;
}

.levels .card__media {
  aspect-ratio: 3 / 4;
}

.features {
  color: var(--branco);
  background: linear-gradient(135deg, rgba(67, 132, 8, 0.94), rgba(251, 87, 37, 0.88));
}

.features .section-title h2,
.features .section-title span {
  color: var(--branco);
}

.feature-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.feature-card h3 {
  color: var(--branco);
  font-size: 1.25rem;
}

.purpose {
  background: var(--cinza);
}

.purpose__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
}

.purpose__media {
  display: flex;
  min-height: 100%;
}

.purpose__image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--raio);
  box-shadow: var(--sombra);
}

.cards-infra {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 220px));
  justify-content: center;
  gap: 16px;
}

.cards-infra .card__media {
  aspect-ratio: 1;
  max-height: 88px;
  object-fit: contain;
  padding: 12px;
  background: var(--branco);
}

.cards-infra .card__body {
  padding: 14px 12px 18px;
}

.cards-infra h3 {
  font-size: 0.92rem;
}

.cards-infra__item--clicavel {
  cursor: pointer;
}

.cards-infra__item--clicavel:focus-visible {
  outline: 3px solid var(--laranja);
  outline-offset: 3px;
}

.cards-infra__item--clicavel:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

body.lightbox-aberto {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  padding: 20px;
  border-radius: var(--raio);
  background: var(--branco);
  box-shadow: var(--sombra);
  overflow: auto;
}

.lightbox__titulo {
  margin: 0 40px 4px 0;
  color: var(--verde-escuro);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.lightbox__contador {
  margin: 0 0 12px;
  color: #5f6b73;
  font-size: 0.9rem;
  font-weight: 600;
}

.lightbox__viewport {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lightbox__img {
  display: block;
  flex: 1;
  width: 100%;
  min-width: 0;
  height: auto;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 12px;
}

.lightbox__arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--cinza);
  color: var(--verde-escuro);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.lightbox__arrow:hover {
  background: var(--verde);
  color: var(--branco);
}

.lightbox__arrow[hidden] {
  display: none;
}

.lightbox__fechar {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--cinza);
  color: var(--verde-escuro);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__fechar:hover {
  background: var(--laranja);
  color: var(--branco);
}

.pedagogicos__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.pedagogicos__imagem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pedagogicos__imagem img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
}

.pedagogicos__cta {
  margin: 28px 0 0;
  padding-top: 4px;
}

.pedagogicos .parceiros {
  margin-top: 20px;
  margin-bottom: 0;
}

.purpose-list {
  display: grid;
  gap: 18px;
}

.purpose-item {
  padding: 24px;
  border-left: 6px solid var(--laranja);
  border-radius: 18px;
  background: var(--branco);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.testimonials .card__media {
  aspect-ratio: 1 / 1.1;
}

.quote::before {
  content: "“";
  color: var(--laranja);
  font-size: 3.5rem;
  line-height: 0;
  font-family: Georgia, serif;
}

.quote::after {
  content: "”";
}

.estrutura-dica {
  margin: 28px 0 0;
  text-align: center;
  color: #5f6b73;
  font-size: 0.95rem;
  font-weight: 500;
}

.cta {
  background: linear-gradient(135deg, var(--laranja), #ff8b3d);
  color: var(--branco);
  text-align: center;
}

.cta h2 {
  max-width: 20ch;
  margin: 0 auto 16px;
}

.cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 1.15rem;
}

.cta .section__actions {
  justify-content: center;
}

.page-content {
  padding: 56px 0 76px;
}

.page-content .prose {
  max-width: 760px;
}

.page-content .prose p {
  font-size: 1.08rem;
}

.page-content .prose h2 {
  margin-top: 32px;
  color: var(--verde);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-box {
  padding: 28px;
  border-radius: var(--raio);
  background: var(--cinza);
}

.contact-box h3 {
  color: var(--verde-escuro);
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-stack__titulo {
  margin: 0;
  color: var(--verde);
}

.contact-unificado {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.contact-unificado__bloco {
  padding: 28px;
}

.contact-unificado__bloco + .contact-unificado__bloco {
  border-top: 1px solid #dce3ec;
}

.contact-unificado__bloco h3 {
  margin: 0 0 8px;
  color: var(--verde-escuro);
}

.contact-unificado__bloco p {
  margin: 0 0 12px;
}

.contact-unificado__bloco p:last-child {
  margin-bottom: 0;
}

.contact-unificado .formulario {
  margin: 0;
}

.contact-unificado .social-links--contato {
  margin-top: 0;
}

/* Sobre Nós */
.sobre-historia {
  padding: 64px 0;
  background: var(--cinza);
}

.sobre-historia__box {
  max-width: 820px;
  margin: 0 auto;
}

.sobre-historia__box .section-title {
  margin-bottom: 28px;
}

.sobre-historia__texto {
  padding: 32px 36px;
  border-radius: var(--raio);
  background: var(--branco);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.sobre-historia__texto p {
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.sobre-historia__texto p:last-child {
  margin-bottom: 0;
}

.sobre-unidades {
  padding: 76px 0;
}

.sobre-unidades__fotos,
.sobre-unidades__infos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
}

.sobre-unidades__fotos {
  margin-bottom: 22px;
}

.sobre-unidades__foto {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--raio);
  box-shadow: var(--sombra);
}

.sobre-unidade__info {
  padding: 22px 24px 26px;
  border-radius: var(--raio);
  background: var(--branco);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.sobre-unidade__info h3 {
  margin: 0 0 10px;
  color: var(--verde-escuro);
  font-size: 1.05rem;
  line-height: 1.35;
}

.sobre-unidade__nivel {
  margin: 0 0 12px;
  color: var(--laranja);
  font-weight: 700;
  font-size: 0.95rem;
}

.sobre-unidade__endereco {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--texto);
}

.page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.page-split__media img {
  border-radius: var(--raio);
  box-shadow: var(--sombra);
}

.ensino-galeria {
  position: relative;
}

.ensino-galeria__nav {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
}

.ensino-galeria__arrow {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--verde-escuro);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ensino-galeria__arrow:hover {
  transform: translateY(-1px);
  background: var(--branco);
}

.ensino-galeria__viewport {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--raio);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--sombra);
  background: #dce3ec;
}

.ensino-galeria__viewport:focus-visible {
  outline: 3px solid var(--laranja);
  outline-offset: 3px;
}

.ensino-galeria__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.page-split__media .ensino-galeria__img {
  border-radius: 0;
  box-shadow: none;
}

.ensino-galeria__dica {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 28, 32, 0.62);
  color: var(--branco);
  font-size: 0.82rem;
  font-weight: 600;
  pointer-events: none;
}

.ensino-galeria__contador {
  margin: 10px 0 0;
  text-align: right;
  color: #5a6770;
  font-size: 0.9rem;
  font-weight: 600;
}

.projetos-intro {
  max-width: 820px;
  margin: 0 0 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e4e9ef;
  text-align: left;
}

.projetos-intro p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--texto);
}

.projetos-bloco {
  margin-bottom: 56px;
}

.projetos-bloco__cabecalho {
  margin-bottom: 28px;
  text-align: left;
}

.projetos-bloco__cabecalho .rotulo-laranja {
  display: inline-block;
  margin-bottom: 8px;
}

.projetos-bloco__cabecalho .titulo-destaque {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.projetos-bloco__cabecalho p {
  margin: 10px 0 0;
  color: #5a6770;
}

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

.projeto-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 100%;
  padding: 24px 26px;
  border: 1px solid rgba(67, 132, 8, 0.14);
  border-radius: 18px;
  background: var(--branco);
  box-shadow: 0 10px 28px rgba(47, 58, 64, 0.06);
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  font: inherit;
  color: inherit;
}

.projeto-card:hover,
.projeto-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(67, 132, 8, 0.35);
  box-shadow: 0 14px 32px rgba(47, 58, 64, 0.1);
  outline: none;
}

.projeto-card__titulo {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--verde-escuro);
}

.projeto-card__resumo {
  flex: 1;
  color: #5a6770;
  line-height: 1.5;
}

.projeto-card__acao {
  margin-top: 8px;
  color: var(--laranja);
  font-weight: 700;
  font-size: 0.95rem;
}

.projetos-bloco--datas {
  margin-top: 8px;
  padding: 40px 36px;
  border-radius: var(--raio);
  background: linear-gradient(180deg, #eef6e6 0%, #f7faf4 100%);
  border: 1px solid rgba(67, 132, 8, 0.12);
}

.projetos-bloco--datas .projetos-bloco__cabecalho {
  text-align: center;
}

.projetos-bloco--datas .projetos-bloco__cabecalho .titulo-destaque {
  margin-left: auto;
  margin-right: auto;
}

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

.datas-fotos__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: var(--branco);
  box-shadow: 0 10px 24px rgba(47, 58, 64, 0.08);
}

.datas-fotos__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.datas-slide {
  position: relative;
  flex: 1 1 auto;
}

.datas-slide__nav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  gap: 6px;
}

.datas-slide__arrow {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--verde-escuro);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.datas-slide__arrow:hover {
  transform: translateY(-1px);
  background: var(--branco);
}

.datas-slide__media {
  position: relative;
  overflow: hidden;
}

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

.datas-slide__contador {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20, 28, 32, 0.62);
  color: var(--branco);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.datas-fotos__item figcaption {
  flex-shrink: 0;
  margin-top: auto;
  padding: 14px 16px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--verde-escuro);
  text-align: center;
}

.projetos-rodape {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #e4e9ef;
}

.projetos-rodape p {
  margin: 0 0 16px;
  max-width: 640px;
}

body.projeto-modal-aberto {
  overflow: hidden;
}

.projeto-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.projeto-modal.is-open {
  display: flex;
}

.projeto-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 32, 0.55);
}

.projeto-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  padding: 32px 28px 28px;
  border-radius: 22px;
  background: var(--branco);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.projeto-modal__fechar {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 58, 64, 0.08);
  color: var(--texto);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.projeto-modal__fechar:hover {
  background: rgba(47, 58, 64, 0.14);
}

.projeto-modal__titulo {
  margin: 0 36px 18px 0;
  color: var(--verde-escuro);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.projeto-modal__corpo p {
  margin: 0 0 14px;
  font-size: 1.02rem;
  line-height: 1.65;
}

.projeto-modal__corpo p:last-child {
  margin-bottom: 0;
}

.projeto-modal__em-breve {
  color: #5a6770;
  font-style: italic;
}

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

.projeto-galeria img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.parceiros {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}

.parceiros img {
  max-height: 56px;
  width: auto;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--branco);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.equipe-card {
  text-align: center;
}

.equipe-card img {
  border-radius: var(--raio);
  margin: 0 auto 14px;
}

.equipe-card h3 {
  color: var(--verde-escuro);
  font-size: 1.15rem;
}

.equipe-card p {
  color: var(--laranja);
  font-weight: 700;
  margin: 0;
}

.formulario {
  display: grid;
  gap: 14px;
}

.formulario > label {
  font-weight: 700;
  color: var(--verde-escuro);
}

.formulario input:not([type="radio"]):not([type="checkbox"]),
.formulario textarea,
.formulario select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font: inherit;
}

.formulario input:not([type="radio"]):not([type="checkbox"]):focus,
.formulario textarea:focus,
.formulario select:focus {
  outline: none;
  border-color: var(--laranja);
}

.mapa {
  border: 0;
  width: 100%;
  min-height: 220px;
  border-radius: 16px;
}

.alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 700;
}

.alert--ok {
  background: rgba(67, 132, 8, 0.12);
  color: var(--verde-escuro);
}

.alert--erro {
  background: rgba(251, 87, 37, 0.12);
  color: #9a3412;
}

@media (max-width: 960px) {
  .page-split {
    grid-template-columns: 1fr;
  }

  .sobre-historia__texto {
    padding: 24px 22px;
  }
}

@media (max-width: 640px) {
  .sobre-unidades__fotos,
  .sobre-unidades__infos {
    grid-template-columns: 1fr;
  }
}

.footer {
  padding: 46px 0;
  background: var(--verde-escuro);
  color: var(--branco);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer img {
  width: 240px;
  padding: 14px;
  border-radius: 18px;
  background: var(--branco);
}

.footer__credit {
  opacity: 0.8;
  font-size: 0.92rem;
}

.footer__endereco,
.footer__telefone {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.92;
}

.footer h3 {
  margin-bottom: 8px;
}

.whatsapp-fixed {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: var(--branco);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

@media (max-width: 767px) {
  .topbar {
    font-size: 0.82rem;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 7px 0;
  }

  .topbar__tagline {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .topbar__actions {
    justify-content: space-between;
    gap: 10px;
  }

  .topbar__highlight {
    font-size: 0.76rem;
    white-space: normal;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
  }

  .social-links--topbar {
    gap: 6px;
    flex-shrink: 0;
  }

  .social-links--topbar .social-links__item {
    width: 28px;
    height: 28px;
  }

  .social-links--topbar .social-links__icon {
    width: 14px;
    height: 14px;
  }

  .banner-campanha--desktop {
    display: none;
  }

  .banner-campanha--mobile {
    display: block;
  }

  .banner-campanha__cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .banner-campanha__cta-texto {
    max-width: none;
  }

  .banner-campanha__cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .banner-campanha__cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .intro-home__grid {
    grid-template-columns: 1fr;
  }

  .header__cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    max-height: calc(100vh - 100px);
    overflow: auto;
    padding: 16px;
    border-radius: 20px;
    background: var(--branco);
    box-shadow: var(--sombra);
  }

  .nav.is-open {
    display: block;
  }

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

  .nav__item--mobile-cta {
    display: block;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--cinza);
  }

  .nav__item--mobile-cta .btn {
    width: 100%;
  }

  .nav__sub {
    display: block;
    position: static;
    box-shadow: none;
    padding-left: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nav__sub::before {
    display: none;
  }

  .hero__grid,
  .purpose__grid,
  .cards-2,
  .cards-3,
  .cards-4,
  .pedagogicos__layout,
  .trust__grid,
  .footer__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
    padding: 48px 0 76px;
  }

  .hero--page {
    padding: 28px 0 24px;
  }

  .projetos-grade {
    grid-template-columns: 1fr;
  }

  .projetos-bloco--datas {
    padding: 28px 20px;
  }

  .datas-fotos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purpose__image {
    min-height: 280px;
  }

}

@media (max-width: 960px) {
  .cards-infra {
    grid-template-columns: repeat(2, minmax(0, 220px));
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .cards-infra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cards-infra .card__media {
    max-height: 72px;
    padding: 10px;
  }

  .cards-infra h3 {
    font-size: 0.82rem;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox__dialog {
    padding: 16px 12px;
  }

  .lightbox__viewport {
    display: block;
  }

  .lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .lightbox__arrow--prev {
    left: 8px;
  }

  .lightbox__arrow--next {
    right: 8px;
  }

  .lightbox__img {
    max-height: calc(100vh - 180px);
  }
}

@media (max-width: 560px) {
  .hero__actions,
  .section__actions {
    align-items: stretch;
    flex-direction: column;
  }

  section {
    padding: 54px 0;
  }

  .whatsapp-fixed {
    left: 14px;
    right: 14px;
    justify-content: center;
  }

  .datas-fotos {
    grid-template-columns: 1fr;
  }

  .projeto-modal {
    padding: 12px;
  }

  .projeto-modal__dialog {
    padding: 26px 18px 20px;
  }

  .projeto-galeria {
    grid-template-columns: 1fr;
  }
}
