:root {
  /* BASE */
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-soft: #f4f8ff;
  --surface-alt: #f7fbf8;

  /* TEXTO */
  --text: #1f2937;
  --muted: #6b7280;
  --line: #d9e4ea;

  /* PRIMARY (AZUL - BASE DA MARCA) */
  --primary: #247bb6;
  --primary-dark: #2e3d8a;
  --primary-light: #3da7c3;
  --primary-soft: #eaf4fb;

  /* GREEN (EDUCAÇÃO / CRESCIMENTO) */
  --green: #81b83a;
  --green-dark: #5f972a;
  --green-light: #a6d75a;
  --green-soft: #f1f8e8;

  /* ORANGE (ENERGIA / CTA) */
  --orange: #f19126;
  --orange-dark: #d97706;
  --orange-light: #fbbf24;
  --orange-soft: #fff4e8;

  /* RED (DESTAQUE / CONTRASTE) */
  --red: #c84c49;
  --red-dark: #a63c39;
  --red-soft: #fff1f0;

  /* CYAN (SUPORTE / VARIAÇÃO VISUAL) */
  --cyan: #3da7c3;
  --cyan-soft: #eaf8fb;

  /* SOMBRAS */
  --shadow-sm: 0 4px 12px rgba(36, 123, 182, 0.08);
  --shadow-md: 0 10px 25px rgba(36, 123, 182, 0.10);
  --shadow-lg: 0 18px 45px rgba(36, 123, 182, 0.12);

  /* BORDAS */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* FORMULÁRIO */
  --form-bg: #f3f7fb;
  --form-input: #ffffff;
  --form-label: #247bb6;

  /* FOOTER */
  --footer-bg: #247bb6;
  --footer-bg-dark: #2e3d8a;
  --footer-accent: #f19126;
  --footer-text: #ffffff;
  --footer-muted: rgba(255, 255, 255, 0.82);
  --footer-soft: rgba(255, 255, 255, 0.14);

  /* ESTADOS */
  --success: #81b83a;
  --warning: #f19126;
  --error: #c84c49;
  --info: #3da7c3;

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito", sans-serif;
  line-height: 1.6;
}

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

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid transparent;
  background: var(--form-input);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: #8b93a3;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(31, 103, 178, 0.24);
  box-shadow: 0 0 0 4px rgba(31, 103, 178, 0.08);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 251, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 230, 242, 0.9);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--primary));
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.logo strong {
  display: block;
  font-size: 1rem;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.nav > a,
.dropdown-toggle {
  color: var(--text);
  font-weight: 700;
  font-size: 0.98rem;
}

.nav > a:hover,
.dropdown-toggle:hover {
  color: var(--footer-accent);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-arrow {
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
  display: none;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.dropdown-menu a:hover {
  background: var(--blue-soft);
  color: var(--footer-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(245, 154, 27, 0.22);
}

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

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line);
}

.desktop-cta { white-space: nowrap; }
.menu-toggle,
.mobile-menu { display: none; }

.hero {
  padding: 56px 0 48px;
}

.hero-top {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.tag,
.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-top h1 {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  margin-bottom: 16px;
}

.hero-top p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.hero-actions.center {
  justify-content: center;
}

.hero-actions-top {
  margin-top: 26px;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.05fr 0.9fr 0.9fr;
  gap: 14px;
  align-items: end;
}

.hero-col {
  display: grid;
  gap: 14px;
}

.hero-center-badge {
  width: 28px;
  height: 28px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 0.9rem;
}

.hero-photo {
  overflow: hidden;
  border-radius: 22px;
  background: #f3efe7;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-photo:hover img {
  transform: scale(1.04);
}

.hero-photo-tall { height: 230px; }
.hero-photo-small { height: 96px; }
.hero-photo-large { height: 260px; }
.hero-photo-featured {
  height: 300px;
  border-radius: 24px;
}

.hero-logo-frame {
  background: #fff;
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.hero-logo-frame img {
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

.hero-center-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--footer-accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(31, 103, 178, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-center-cta:hover {
  transform: translateY(-2px);
  background: var(--orange-light);
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: var(--surface-alt);
}

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

.section h2,
.contact-card-head h2,
.final-cta-box h2 {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.section-head p,
.text-block p {
  color: var(--muted);
}

.text-block p + p {
  margin-top: 14px;
}

.highlight-quote {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 18px;
}

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

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

.feature-card,
.level-card,
.methodology-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
}

.feature-card h3,
.level-card h3,
.methodology-box h3 {
  margin: 16px 0 10px;
  font-size: 1.18rem;
}

.icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: var(--surface-soft);
}

.card-blue .icon-circle,
.principle-visao .icon-circle {
  background: var(--blue-soft);
}

.card-green .icon-circle,
.principle-missao .icon-circle {
  background: var(--green-soft);
}

.card-orange .icon-circle {
  background: var(--orange-soft);
}

.card-red .icon-circle,
.principle-valores .icon-circle {
  background: var(--red-soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.placeholder-image {
  min-height: 340px;
  border-radius: 28px;
  display: grid;
  /* place-items: center;
  border: 2px dashed #d7dce8;
  text-align: center;
  padding: 24px;
  color: #7280a0;
  font-weight: 800;
  background:
    radial-gradient(circle at top left, rgba(31, 103, 178, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(127, 194, 65, 0.12), transparent 36%),
    #f4f7ff; */
}

.promo-section {
  padding-top: 10px;
}

.promo-only {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e9edf7;
}

.promo-only img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 120px;
  max-height: 220px;
}

.custom-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.custom-list.compact {
  gap: 8px;
  margin-top: 10px;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.custom-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--orange);
  font-size: 1.2rem;
}

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

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

.methodology-box {
  margin-top: 24px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

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

.gallery-item {
  min-height: 220px;
  /* border-radius: 22px;
  border: 2px dashed #d9dfea;
  display: grid;
  place-items: center;
  background: #fff;
  color: #6f7d99;
  font-weight: 800; */
}

.cta-section {
  padding: 40px 0 60px;
}

.contact-wrap {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-photo,
.contact-card {
  border-radius: 28px;
  overflow: hidden;
}

.contact-photo {
  position: relative;
  min-height: 100%;
  background: #dfe7fb;
  box-shadow: 0 18px 45px rgba(33, 56, 120, 0.08);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.contact-photo-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 24px 24px;
  background: linear-gradient(180deg, rgba(16, 26, 58, 0) 0%, rgba(16, 26, 58, 0.78) 100%);
  color: #fff;
}

.contact-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-photo-overlay h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 8px;
}

.contact-photo-overlay p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-card {
  background: var(--form-bg);
  padding: 32px;
  box-shadow: 0 18px 45px rgba(33, 56, 120, 0.08);
}

.contact-card-head {
  margin-bottom: 22px;
}

.contact-card-head h2 {
  color: var(--footer-accent);
  margin-bottom: 8px;
}

.contact-card-head p {
  color: #4f5973;
  font-size: 1rem;
}

.contact-form {
  width: 100%;
}

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

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--footer-accent);
}

.contact-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  border-radius: 999px;
  background: var(--footer-accent);
  color: #fff;
  font-weight: 900;
  font-size: 1.02rem;
  box-shadow: 0 16px 28px rgba(31, 103, 178, 0.24);
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.final-cta {
  padding: 0 0 90px;
}

.final-cta-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 65%, var(--orange-light) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 40px 28px;
  box-shadow: var(--shadow);
}

.final-cta-box p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.site-footer {
  background: var(--footer-accent);
  color: var(--footer-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 40px;
  padding: 78px 0 56px;
}

.footer-brand {
  max-width: 320px;
}

.footer-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 18px;
  font-family: "Baloo 2", sans-serif;
}

.footer-brand h3,
.footer-column h4 {
  font-family: "Baloo 2", sans-serif;
}

.footer-brand h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--footer-muted);
  font-size: 1.08rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--footer-soft);
  display: grid;
  place-items: center;
}

.footer-column h4 {
  color: var(--footer-accent);
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--footer-text);
  font-size: 1.08rem;
}

.footer-bottom {
  background: var(--);
  text-align: center;
  padding: 18px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

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

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .desktop-cta { display: none; }
  .menu-toggle { display: block; font-size: 1.5rem; }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 0 16px 18px;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    font-weight: 700;
  }

  .hero-gallery,
  .two-col,
  .footer-grid,
  .cards-grid,
  .cards-grid-3,
  .level-grid,
  .level-grid-2,
  .gallery-grid,
  .contact-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-tall,
  .hero-photo-small,
  .hero-photo-large,
  .hero-photo-featured {
    height: 240px;
  }

  .contact-photo img {
    min-height: 340px;
  }

  .contact-card {
    padding: 28px 22px;
  }
}

@media (max-width: 720px) {
  .hero-top h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 72px 0;
  }

  .contact-card-head h2 {
    font-size: 2rem;
  }

  .contact-photo-overlay h3 {
    font-size: 1.7rem;
  }

  .footer-brand h3 {
    font-size: 1.8rem;
  }

  .footer-column h4 {
    font-size: 1.5rem;
  }

  .final-cta-box {
    padding: 32px 20px;
  }
}