* {
  box-sizing: border-box;
}

[x-cloak] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #0f1b2d;
  background: #eef2fb;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/images/nosso-ensino-em-min.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(1100px 520px at 100% -10%, rgba(37, 99, 201, 0.16), transparent 60%), radial-gradient(900px 480px at -10% 0%, rgba(25, 70, 160, 0.12), transparent 55%), linear-gradient(180deg, rgba(238, 242, 251, 0.55), rgba(238, 242, 251, 0.68));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(25, 70, 160, 0.12);
}
.topbar__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 10px clamp(18px, 5vw, 32px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar__logo {
  height: 26px;
  width: auto;
  display: block;
}
.topbar__tag {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1946a0;
}

.page {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(12px, 2vw, 20px) clamp(18px, 5vw, 32px) clamp(20px, 3vw, 32px);
}
.page__header {
  text-align: center;
  margin-bottom: clamp(12px, 2vw, 18px);
}
.page__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.page__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #5b6b82;
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.45;
}
.page__control {
  max-width: 420px;
  width: 100%;
  margin: 0 auto clamp(14px, 2vw, 20px);
}
.page__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5b6b82;
  margin-bottom: 8px;
}
.page__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 60px rgba(15, 27, 45, 0.12);
  height: 1100px;
}
.page__iframe {
  width: 100%;
  height: 1200px;
  border: none;
  display: block;
}
.page__loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #ffffff;
  color: #5b6b82;
  font-size: 0.92rem;
  font-weight: 500;
}
.page__spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid rgba(25, 70, 160, 0.18);
  border-top-color: #1946a0;
  animation: spin 0.8s linear infinite;
}

.dropdown {
  position: relative;
}
.dropdown__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1.5px solid #dfe6f3;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #0f1b2d;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.dropdown__trigger:hover {
  border-color: rgb(84.1891891892, 132.2297297297, 228.3108108108);
}
.dropdown__trigger:focus-visible {
  outline: none;
  border-color: #1946a0;
  box-shadow: 0 0 0 4px rgba(25, 70, 160, 0.16);
}
.dropdown--open .dropdown__trigger {
  border-color: #1946a0;
  box-shadow: 0 0 0 4px rgba(25, 70, 160, 0.16);
}
.dropdown__current {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dropdown__current--placeholder {
  color: #5b6b82;
  font-weight: 500;
}
.dropdown__icon {
  width: 20px;
  height: 20px;
  color: #1946a0;
  flex-shrink: 0;
}
.dropdown__current--placeholder .dropdown__icon {
  color: #5b6b82;
}
.dropdown__chevron {
  width: 20px;
  height: 20px;
  color: #5b6b82;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}
.dropdown--open .dropdown__chevron {
  transform: rotate(180deg);
}
.dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #ffffff;
  border: 1px solid #dfe6f3;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.08);
}
.dropdown__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.dropdown__option:hover {
  background: rgba(25, 70, 160, 0.06);
}
.dropdown__option--active {
  background: rgba(25, 70, 160, 0.09);
}
.dropdown__option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.dropdown__option-name {
  font-size: 0.98rem;
  font-weight: 600;
  color: #0f1b2d;
}
.dropdown__option-desc {
  font-size: 0.8rem;
  color: #5b6b82;
}
.dropdown__check {
  width: 20px;
  height: 20px;
  color: #1946a0;
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}
.dropdown__option--active .dropdown__check {
  opacity: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 600px) {
  .page__title {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }
  .page__subtitle {
    font-size: 0.92rem;
  }
  .page__frame {
    height: 1600px;
  }
}
@media (min-width: 900px) {
  .page {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 340px 1fr;
    grid-template-areas: "header header" "control frame";
    column-gap: clamp(24px, 3vw, 44px);
    align-items: start;
  }
  .page__header {
    grid-area: header;
  }
  .page__control {
    grid-area: control;
    max-width: none;
    margin: 0;
    position: sticky;
    top: 72px;
  }
  .page__frame {
    grid-area: frame;
    height: 1200px;
  }
}

/*# sourceMappingURL=main.css.map */