/* =========================
   PLANETÁRIO – ABOUT
========================= */

.planetario-section {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 90px 0;
}

/* HEADER */
.planetario-header {
  text-align: center;
  margin-bottom: 60px;
}

.planetario-header h2 {
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: #0d6efd;
}

.planetario-divider {
  display: block;
  width: 120px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #0d6efd, #38bdf8);
}

/* TEXTO */
.planetario-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 32px;
  text-align: justify;
}

/* PILARES */
.planetario-pilares {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pilar {
  display: flex;
  gap: 16px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.pilar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.pilar i {
  font-size: 26px;
  color: #0d6efd;
  margin-top: 4px;
}

.pilar h6 {
  font-weight: 800;
  margin-bottom: 4px;
  color: #0f172a;
}

.pilar p {
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

/* IMAGEM */
.planetario-image-wrapper {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.planetario-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}





/* =========================
   GESTÃO ESCOLAR – DASHBOARD
========================= */


.gestao-dashboard-title {
  text-align: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 50px;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}


.gestao-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.28);
}

/* destaque central */
.gestao-tile.destaque {
  border: 3px solid #facc15;
}

/* ÍCONE */
.gestao-tile-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  flex-shrink: 0;
}

/* CONTEÚDO */
.gestao-tile-content {
  display: flex;
  flex-direction: column;
}

.gestao-tile-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.gestao-tile-label {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #475569;
  margin-top: 6px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .gestao-tile {
    justify-content: center;
    text-align: center;
  }

  .gestao-tile-content {
    align-items: center;
  }
}






/* =========================
   GESTÃO ESCOLAR – ESTILO FORTE
========================= */

/* fundo animado leve */
.gestao-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255,193,7,0.22), transparent 65%);
  opacity: 0.9;
}

/* título */
.gestao-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 55px;
  text-shadow: 0 6px 20px rgba(0,0,0,.35);
}


.gestao-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

/* destaque central */
.gestao-card.destaque {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  color: #000;
}

.gestao-card.destaque .gestao-number,
.gestao-card.destaque .gestao-label {
  color: #000;
}

/* ícone */
.gestao-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #ffd700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* número */
.gestao-number {
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 1.8px;
  margin-bottom: 6px;
  text-shadow: 0 6px 18px rgba(0,0,0,.45);
}

/* legenda */
.gestao-label {
  font-size: 0.95rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.95;
}





/* =========================
   GALERIA ESCOLAS – LEVE
========================= */

.galeria-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: all .25s ease;
  background: #fff;
}

.galeria-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* imagem menor */
.galeria-card img {
  height: 150px;
  object-fit: cover;
}

/* corpo compacto */
.galeria-card .card-body {
  padding: .85rem .9rem 1rem;
}

.galeria-card h5 {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: .25rem;
}

.galeria-local {
  font-size: .8rem;
  opacity: .85;
  margin-bottom: .5rem;
}

/* progresso fino */
.galeria-card .progress {
  height: 8px;
  border-radius: 6px;
}

.galeria-card .progress-bar {
  font-size: .55rem;
}






/* =========================
   ESCOLA / NEI – CARD IMPACTO
========================= */

.escola-card {
  border: none;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  transition: all .45s ease;
}

.escola-card:hover {
  transform: translateY(-14px) scale(1.015);
  box-shadow: 0 30px 70px rgba(14,165,233,.35);
}

/* IMAGEM COM OVERLAY */
.card-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.escola-card:hover img {
  transform: scale(1.12);
}

/* GRADIENT OVERLAY */
.card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.05),
    rgba(0,0,0,.55)
  );
}

/* BADGE */
.school-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(90deg,#0ea5e9,#2563eb);
  color: #fff;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 1.4px;
}

/* BODY */
.escola-card .card-body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.escola-card h5 {
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #1e40af;
}

/* LOCAL */
.school-location {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1.3px;
  color: #0284c7;
  margin-bottom: 1rem;
}

/* PROGRESSO */
.school-progress {
  height: 14px;
  border-radius: 10px;
  background: #e5e7eb;
  overflow: hidden;
}

.school-progress-bar {
  height: 100%;
  background: linear-gradient(90deg,#0ea5e9,#2563eb);
  font-size: .65rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 14px;
  letter-spacing: .8px;
}










/* SEÇÃO */
.institucional-section {
  background: #f8fafc;
}

/* CARD */
.institucional-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.institucional-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}

/* ÍCONE */
.box-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.icon-primary {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.icon-danger {
  background: rgba(220, 38, 38, 0.12);
  color: #dc2626;
}

.icon-dark {
  background: rgba(15, 23, 42, 0.12);
  color: #0f172a;
}

/* TEXTO */
.box-title {
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.box-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 22px;
}

/* BOTÃO */
.box-btn {
  width: 100%;
  border-radius: 14px;
  font-weight: 700;
  padding: 12px;
  letter-spacing: 0.3px;
}

/* CARD EM DESTAQUE (Exame) */
.institucional-box.destaque {
  border: 2px solid #dc2626;
  box-shadow: 0 14px 38px rgba(220, 38, 38, 0.25);
}

.institucional-box.destaque:hover {
  box-shadow: 0 22px 55px rgba(220, 38, 38, 0.35);
}





/* HEADER NOTÍCIAS */
.news-header {
  position: relative;
  padding: 32px 16px 20px;
}

.news-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

.news-icon i {
  color: #ffffff;
  font-size: 1.35rem;
}

.news-title {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.news-subtitle {
  font-size: 0.95rem;
  color: #475569;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

.news-divider {
  display: block;
  width: 110px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    #1e40af,
    #38bdf8,
    #22c55e
  );
  opacity: 0.85;
}






.news-hero-card img {
  min-height: 520px; /* antes 420 */
}

.news-hero-overlay {
  padding: 48px;
}



.news-mini-card {
  padding: 18px;
  gap: 18px;
}

.news-mini-card img {
  width: 84px;
  height: 84px;
}



.news-mini-card h6 {
  font-size: 1.05rem;
  font-weight: 800;
}

.news-mini-card span {
  font-size: 0.8rem;
}


.news-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13,110,253,0.22);
}




/* =========================
   NEWS HERO SECTION
========================= */
.news-hero-section {
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
  padding: 80px 0;
}

/* TÍTULO */
.news-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1d4ed8;
}

.news-subtitle {
  color: #555;
  font-size: 1rem;
  margin-top: 8px;
}

/* HERO CARD */
.news-hero-card {
  position: relative;
  display: block;
  border-radius: 26px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 30px 70px rgba(13,110,253,0.25);
}

.news-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.news-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.75)
  );
  color: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-hero-overlay h3 {
  font-size: 1.6rem;
  font-weight: 800;
}

.news-hero-overlay p {
  font-size: 0.95rem;
  opacity: 0.95;
  margin: 10px 0;
}

.news-badge {
  background: #22c55e;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}

.news-cta {
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* MINI NEWS */
.news-mini-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-mini-card {
  display: flex;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.news-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(13,110,253,0.18);
}

.news-mini-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.news-mini-card h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: #1e293b;
}

.news-mini-card span {
  font-size: 0.75rem;
  color: #64748b;
}





/* =========================
   INFO CARDS
========================== */

.info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 26px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* ÍCONE */
.info-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

/* TÍTULO */
.info-title {
  font-weight: 800;
  margin-bottom: 10px;
}

/* TEXTO */
.info-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* VARIAÇÕES DE COR */
.info-success .info-icon {
  background: rgba(25,135,84,0.12);
  color: #198754;
}

.info-info .info-icon {
  background: rgba(13,202,240,0.15);
  color: #0dcaf0;
}

.info-warning {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  color: #ffffff;
}

.info-warning .info-icon {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
}

.info-warning .info-text {
  color: rgba(255,255,255,0.92);
}

.info-warning .info-title {
  color: #ffffff;
}







.pss-card .btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.pss-card .btn-outline-warning:hover {
  background: #ffc107;
  color: #000;
}




/* CONTROLE DE LARGURA */
.avaliacao-container {
  max-width: 100%;
  margin: 0;
  padding-left: 4vw;
  padding-right: 4vw;
}



/* CARDS */
.avaliacao-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.pss-card {
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 14px 38px rgba(13, 110, 253, 0.35);
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .avaliacao-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}




/* =========================
   CARD PSS
========================= */
.pss-card {
  background: linear-gradient(135deg, #0d6efd, #084298);
  border-radius: 24px;
  position: relative;
}

.pss-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(circle at bottom left, rgba(255,193,7,0.18), transparent 65%);
  z-index: 1;
}

.pss-card h4 {
  font-size: 1.4rem;
}

.pss-card ul li {
  font-size: 0.9rem;
}






/* =========================
   HERO SECTION
========================= */
.hero-section {
  height: 70vh;
  min-height: 460px;
  max-height: 680px;
  position: relative;
  overflow: hidden;
}

.hero-img {
  height: 70vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 2;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-top: 1rem;
  max-width: 560px;
  opacity: 0.95;
}







body {
  font-family: Arial, sans-serif;
  margin: 0;
  /* Remove margens padrão */
  padding: 0;
  /* Remove padding padrão */
  height: 100vh;
  /* Define a altura total da tela */
  overflow-y: scroll;
  /* Permite a rolagem no eixo Y */
  scrollbar-width: none;
  /* Remove barra de rolagem no Firefox */
}

/* Remove barra de rolagem para navegadores baseados em Webkit (Chrome, Edge, Safari) */
body::-webkit-scrollbar {
  display: none;
}

.navbar {
  background-color: #007bff;
}

.navbar-brand img {
  height: 50px;
}

.hero-content .btn {
  pointer-events: auto;
  /* O botão continua clicável normalmente */
}


footer {
  background-color: #343a40;
  color: white;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #ffffff;
  text-decoration: underline;
}

footer a:hover {
  text-decoration: none;
  color: #007bff;
}



.footer-bg {
  background-image: url('{% static "assets/dist/img/footer-bg1.jpg" %}');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  color: white;
}

.footer-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Transparência de 50% */
  z-index: 1;
}

.footer-bg .container {
  position: relative;
  z-index: 2;
  /* Garante que o conteúdo fique na frente do overlay */
}

/* Transparência aplicada */
.footer-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Preta com 50% de opacidade */
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  /* Garante que o conteúdo fique acima da camada de transparência */
}

.text-warning {
  color: #ffd700 !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-success {
  color: #28a745 !important;
}

.list-group-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
}

.list-group-item i,
.list-group-item img {
  margin-right: 10px;
  flex-shrink: 0;
  /* Evita redimensionamento do ícone/imagem */
}

.list-group-item strong {
  margin-right: 5px;
  /* Espaçamento entre o título e o texto */
}

.list-group-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 50%;
  /* Opcional, adiciona um efeito circular */
}

.img-hover-zoom {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.img-hover-zoom:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.img-container {
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid #f1f1f1;
  background-color: #fff;
  padding: 5px;
  transition: border-color 0.3s ease;
}

.img-container:hover {
  border-color: #0d6efd;
}


.botao-card {
  background: linear-gradient(90deg, #2563eb 60%, #0891b2 100%);
  border: none;
  color: #fff;
  transition: all 0.18s;
  box-shadow: 0 2px 8px -1px #0e74902a;
}

.botao-card:hover,
.botao-card:focus {
  background: linear-gradient(90deg, #0891b2 20%, #2563eb 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px -2px #0002;
}

.img-banner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-banner-edital {
  border-radius: 18px;
  box-shadow:
    0 6px 36px -4px #2563eb22,
    0 1.5px 0 #22d3ee80;
  border: 3px solid #2563eb20;
  transition:
    box-shadow 0.28s cubic-bezier(0.5, 0.2, 0.3, 1),
    border-color 0.28s cubic-bezier(0.5, 0.2, 0.3, 1),
    transform 0.25s cubic-bezier(0.5, 0.2, 0.3, 1);
  filter: grayscale(0.04) brightness(0.97) blur(0);
  cursor: pointer;
}

.img-banner-edital:hover,
.img-banner-edital:focus {
  box-shadow:
    0 10px 46px -2px #2563eb40,
    0 1.5px 0 #0891b2;
  border-color: #0ea5e9;
  filter: grayscale(0) brightness(1.02) blur(0);
  transform: scale(1.025) translateY(-3px) rotate(-0.5deg);
  outline: none;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.current-menu {
  color: #fff !important;
  background: linear-gradient(90deg, #1565c0 60%, #42a5f5 120%);
  border-radius: 0.7rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(33, 135, 201, 0.12);
  padding-left: 1rem;
  padding-right: 1rem;
  transition:
    background 0.2s,
    color 0.2s;
}

.navbar-nav .dropdown-menu .dropdown-item.active,
.navbar-nav .dropdown-menu .dropdown-item.current-dropdown {
  background-color: #e3f2fd !important;
  color: #1565c0 !important;
  font-weight: 600;
  border-radius: 0.3rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown-menu .dropdown-item:hover {
  color: #fdd835 !important;
  background-color: #1565c010 !important;
}

.flacc-info {
  background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
  position: relative;
}
.flacc-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(33, 150, 243, 0.15),
      transparent 70%
    ),
    radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.12), transparent 70%);
  animation: bgMove 16s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes bgMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.bg-gradient-primary {
  background: linear-gradient(90deg, #1565c0, #1e88e5, #42a5f5);
}
.text-highlight {
  background: linear-gradient(90deg, #1565c0, #43a047);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cartões informativos */
.info-card {
  background: #ffffff;
  transition: all 0.35s ease;
}
.info-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.15);
}
.info-icon {
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

/* Botões */
.hover-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(33, 150, 243, 0.35);
}
.animate-slide {
  animation: slideIn 1s ease forwards;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CARD PREMIUM */
.consulta-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 35px 32px 35px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid #d6e8ff;
  max-width: 900px;
  margin: 45px auto;
  position: relative;
  overflow: hidden;
}

/* FAIXA SUPERIOR COM MASCOTE */
.consulta-card-top {
  background: linear-gradient(90deg, #0d6efd, #3ba7ff);
  height: 85px;
  width: 100%;
  border-radius: 18px 18px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* MASCOTE NO CANTO SUPERIOR */
.consulta-mascote {
  position: absolute;
  top: -25px; /* sobe mais */
  right: 18px; /* afasta da borda */
  width: 115px; /* tamanho ideal */
  z-index: 3;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

/* TÍTULO */
.consulta-card-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0d6efd;
  text-align: left;
  margin-top: 95px;
}

/* ÍCONE */
.consulta-card-title i {
  background: #0d6efd;
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 1.25rem;
  margin-right: 10px;
}

/* TEXTO */
.consulta-card-text {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 22px;
  line-height: 1.55;
  padding-left: 2px;
}

/* LISTA */
.consulta-card-text ul {
  margin-top: 8px;
  padding-left: 20px;
}

.consulta-card-text ul li {
  color: #0d6efd;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

/* BOTÕES */
.consulta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.consulta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 21px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.btn-medalha {
  background: #ffffff;
  color: #0d6efd;
  border-color: #0d6efd;
}
.btn-medalha:hover {
  background: #0d6efd;
  color: white;
  transform: translateY(-2px);
}

.btn-trofeu {
  background: #ffffff;
  color: #6610f2;
  border-color: #6610f2;
}
.btn-trofeu:hover {
  background: #6610f2;
  color: white;
  transform: translateY(-2px);
}

/* Círculo institucional atrás do Flaquinho */
.flaquinho-wrapper {
  position: absolute;
  top: -40px;
  right: 20px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at center, #ffffff 30%, #0d6efd 90%);
  border-radius: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.25),
    0 0 12px rgba(13, 110, 253, 0.4); /* brilho azul elegante */

  animation: floatUpDown 3.2s ease-in-out infinite;
}

/* Animação suave padrão */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Flaquinho */
.flaquinho-img {
  width: 95px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25))
    drop-shadow(0 0 8px rgba(13, 110, 253, 0.45)); /* brilho ao redor */
  transform: scaleX(-1); /* 🔄 Invertido olhando para dentro */
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

/* Efeito hover — balanço acelerado */
.flaquinho-wrapper:hover {
  animation: floatHover 1.2s ease-in-out infinite;
}

@keyframes floatHover {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Efeito hover na imagem */
.flaquinho-wrapper:hover .flaquinho-img {
  transform: scaleX(-1) scale(1.05); /* cresce um pouquinho */
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 12px rgba(13, 110, 253, 0.6));
}

/* Centralizar botões sempre */
.consulta-links {
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  align-items: center;
  gap: 14px;
  flex-wrap: wrap; /* permite quebrar linha */
}

/* Responsivo — empilha em telas pequenas */
@media (max-width: 600px) {
  .consulta-links {
    flex-direction: column; /* empilha */
    gap: 10px;
  }

  .consulta-btn {
    width: 100%;
    text-align: center;
  }
}



    .avaliacao-section {
    background: linear-gradient(180deg, #f1f4f8 0%, #e6ecf2 100%);
    position: relative;
    overflow: hidden;
    }

    .avaliacao-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 30%, rgba(0, 86, 150, 0.15), transparent 70%),
                    radial-gradient(circle at 80% 80%, rgba(46, 125, 50, 0.12), transparent 70%);
        z-index: 1;
        }

    .avaliacao-card {
        position: relative;
        z-index: 2;
        background: #fff;
        border-radius: 24px;
        border: 1px solid rgba(0, 86, 150, 0.1);
        box-shadow: 0 8px 28px rgba(0, 86, 150, 0.1);
        backdrop-filter: blur(6px);
        transition: all 0.3s ease;
        }

    .avaliacao-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 86, 150, 0.15);
        }

    .avaliacao-header {
        background: linear-gradient(90deg, #004d99, #0288d1, #26c6da);
        }

    .avaliacao-highlight {
        background: linear-gradient(90deg, #2e7d32, #66bb6a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        }

    .avaliacao-item {
        background: #fff;
        border-radius: 14px;
        border: 1px solid rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        }

    .avaliacao-item:hover {
        transform: translateY(-5px);
        background: #f8fbff;
        box-shadow: 0 8px 20px rgba(0, 86, 150, 0.12);
        }

    .avaliacao-btn {
        background: linear-gradient(90deg, #1b5e20, #43a047);
        color: #fff !important;
        font-weight: 600;
        border: none;
        transition: all 0.3s ease;
        }

    .avaliacao-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 25px rgba(67, 160, 71, 0.4);
        }







    /* Animação suave */
    @keyframes modalFade {
        from { transform: translateY(-20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* Estilo geral do box */
    .custom-modal-content {
        border-radius: 18px;
        border: 2px solid rgba(0, 123, 255, 0.3);
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.95);
        animation: modalFade 0.4s ease-out;
        box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    }

    /* Header com gradiente */
    .custom-modal-header {
        background: linear-gradient(90deg, #007bff, #00a8ff);
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        padding: 18px 20px;
    }

    /* Título */
    .custom-modal-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: white;
    }

    /* Botões estilizados */
    .custom-btn {
        border-radius: 10px !important;
        padding: 12px !important;
        font-weight: 600 !important;
        transition: 0.2s ease-in-out !important;
    }

    .btn-medalha {
        border: 2px solid #007bff;
        color: #007bff;
    }
    .btn-medalha:hover {
        background: #007bff;
        color: white;
        transform: scale(1.05);
    }

    .btn-trofeu {
        border: 2px solid #6610f2;
        color: #6610f2;
    }
    .btn-trofeu:hover {
        background: #6610f2;
        color: white;
        transform: scale(1.05);
    }

    /* Botão fechar */
    .btn-fechar {
        border-radius: 8px;
        font-weight: 600;
    }


     /* Mascote flutuante */
    .flacc-mascote-wrapper {
        position: absolute;
        top: -55px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        background: linear-gradient(135deg, #ffffff, #dff1ff);
        padding: 12px;
        border-radius: 50%;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        animation: flaccFloat 2.5s ease-in-out infinite;
    }

    .flacc-mascote-img {
        width: 85px;
        height: auto;
        filter: drop-shadow(0 4px 6px rgba(0,0,0,0.25));
    }

    @keyframes flaccFloat {
        0% { transform: translate(-50%, 0); }
        50% { transform: translate(-50%, -6px); }
        100% { transform: translate(-50%, 0); }
    }

    /* Ajuste extra do container da modal */
    .custom-modal-content {
        margin-top: 60px !important;
        position: relative;
    }







    /* Contêiner centralizado */
    .flaquinho-voador-container {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    z-index: 3;
    }

    /* Flaquinho flutuando suavemente */
    .flaquinho-voador {
    width: 100%;
    filter: drop-shadow(0 6px 10px rgba(21, 101, 192, 0.35));
    transition: opacity 0.15s ease-in-out;
    animation: flutuarSuave 3s ease-in-out infinite;
    }

    /* 🌬️ Flutuação suave no ar */
    @keyframes flutuarSuave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    }

    /* ✨ Efeito de brilho */
    .flaquinho-voador::after {
    content: "✨";
    position: absolute;
    font-size: 1.2rem;
    right: -15px;
    top: 15px;
    opacity: 0;
    animation: brilhoFlacc 2.5s ease-in-out infinite;
    }

    @keyframes brilhoFlacc {
    0% { opacity: 0; transform: translateX(0) scale(0.8); }
    50% { opacity: 1; transform: translateX(10px) scale(1.1); }
    100% { opacity: 0; transform: translateX(20px) scale(0.8); }
    }







.modal-pss .modal-content {
  border-radius: 18px;
  overflow: hidden;
  background: #f8fafc;
}

/* HEADER */
.pss-header {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  padding: 1.25rem 1.5rem;
}

.pss-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border-radius: 12px;
}

.pss-header h5 {
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

/* CARD INTERNO */
.pss-body-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* TÍTULOS DAS SEÇÕES */
.pss-body-card h6 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0d6efd;
  margin-bottom: 1rem;
  position: relative;
}

.pss-body-card h6::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #0d6efd;
  border-radius: 4px;
  margin-top: 6px;
}

/* INPUTS */
.pss-body-card .form-control,
.pss-body-card .form-select {
  border-radius: 10px;
  border: 1px solid #dbe2ea;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}

.pss-body-card .form-control:focus,
.pss-body-card .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

/* LABELS */
.pss-body-card .form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #495057;
}

/* HR */
.pss-body-card hr {
  border-top: 1px dashed #dee2e6;
}

/* CHECKBOX */
.pss-body-card .form-check-label {
  font-size: 0.82rem;
  color: #495057;
}

/* BOTÃO FINAL */
.pss-body-card .btn-success {
  border-radius: 12px;
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  background: linear-gradient(135deg, #198754, #157347);
  border: none;
}

.pss-body-card .btn-success:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .pss-body-card {
    padding: 1.5rem;
  }

  .pss-header h5 {
    font-size: 0.95rem;
  }
}




/* =========================
   LINKS INSTITUCIONAIS
========================= */
.links-institucionais {
  background: #ffffff;
}

/* CARD BASE */
.institucional-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 28px;
  text-align: center;
  border: 1px solid rgba(13,110,253,0.08);
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.institucional-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(13,110,253,0.18);
}


/* ÍCONE */
.institucional-icon {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}


/* TEXTO */
.institucional-card h5 {
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.institucional-card p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 22px;
}


/* DESTAQUE SYNAPTIC */
.institucional-card.destaque {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  color: #fff;
}

.institucional-card.destaque p {
  color: rgba(255,255,255,0.95);
}

.institucional-card.destaque h5 {
  color: #fff;
}



.institucional-card .btn {
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.institucional-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

