@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");

@font-face {
  font-family: "Bronkoh-Heavy";
  src: url("../fonts/Bronkoh-Heavy.otf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Bronkoh";
  src: url("../fonts/Bronkoh-Regular.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Bronkoh-ExtraLight";
  src: url("../fonts/Bronkoh-ExtraLight.otf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Bronkoh-Bold";
  src: url("../fonts/Bronkoh-Bold.otf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
:root {
  --brand-green: #93c01f;
  --brand-blue: #173f73;
  --brand-orange: #ec7329;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  width: 100%;
  background-color: #fefefe;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-family: "Bronkoh", "Montserrat", sans-serif;
  height: 100%;
  gap: 60px;
}

header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--brand-blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.site-nav {
  width: 92%;
  max-width: 1200px;
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand img {
  width: 150px;
  height: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a,
.submenu-toggle {
  color: #ffffff;
  font-family: "Bronkoh", "Montserrat", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px 0;
}

.nav-menu a:hover,
.submenu-toggle:hover {
  color: var(--brand-green);
}

.has-submenu > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  list-style: none;
  padding: 8px 0;
  border-radius: 10px;
  background-color: #0f2f57;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  display: none;
}

.has-submenu > ul li a {
  width: 100%;
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.has-submenu:hover > ul,
.has-submenu:focus-within > ul {
  display: block;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  display: block;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 920px) {
  .site-nav {
    width: 94%;
    min-height: 72px;
    position: relative;
  }

  .nav-brand img {
    width: 128px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    padding: 10px;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background-color: var(--brand-blue);
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
    gap: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu > li {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu > li:first-child {
    border-top: 0;
  }

  .nav-menu > li > a,
  .submenu-toggle {
    width: 100%;
    text-align: left;
    min-height: 48px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    font-size: 16px;
  }

  .has-submenu > ul {
    position: static;
    min-width: 0;
    display: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 8px 0;
    background-color: rgba(0, 0, 0, 0.15);
  }

  .has-submenu.open > ul {
    display: block;
  }

  .has-submenu > ul li a {
    min-height: 44px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .site-nav {
    min-height: 68px;
  }

  .nav-brand img {
    width: 114px;
  }

  .nav-menu > li > a,
  .submenu-toggle {
    min-height: 50px;
    padding: 12px 14px;
  }

  .has-submenu > ul li a {
    min-height: 46px;
    padding: 10px 20px;
  }
}

.banner {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-top: -60px;
}

.fullbanner {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.fullbanner img {
  width: 100%;
  min-height: 300px;
  height: 42vw;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .fullbanner img {
    height: 300px;
  }
}

.acessorapido {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.acessorapido .content-acessorapido {
  display: flex;
  width: 90%;
  max-width: 1200px;
  height: auto;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.content-acessorapido .cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

.content-acessorapido .cards a {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 350px;
  --card-footer-height: 48px;
  position: relative;
  overflow: hidden;
  background-color: #d9d9d9;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 16px 16px calc(var(--card-footer-height) + 16px) 16px;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  gap: 0px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.content-acessorapido .cards a:hover {
  transform: scale(1.05);
}

.content-acessorapido .cards a img {
  position: absolute;
  inset: 0 0 var(--card-footer-height) 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 1;
}

.content-acessorapido .cards a span {
  position: relative;
  z-index: 2;
  background-color: var(--brand-orange);
  padding: 8px 12px;
}

.content-acessorapido .cards a p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  min-height: var(--card-footer-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-orange);
  color: #ffffff;
  padding: 8px 12px;
  margin-top: 0;
  font-size: 14px;
  font-weight: normal;
  /* border-radius: 20px 20px 0 0; */
}

@media (max-width: 1024px) {
  .acessorapido .content-acessorapido {
    width: 92%;
  }

  .content-acessorapido .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .content-acessorapido .cards a {
    min-height: 320px;
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  body {
    gap: 40px;
  }

  .acessorapido .content-acessorapido {
    width: 94%;
  }

  .content-acessorapido .cards {
    gap: 14px;
  }

  .content-acessorapido .cards a {
    min-height: 300px;
    --card-footer-height: 44px;
    padding: 12px 12px calc(var(--card-footer-height) + 12px) 12px;
    font-size: 16px;
  }

  .content-acessorapido .cards a span {
    padding: 6px 10px;
  }

  .content-acessorapido .cards a p {
    font-size: 13px;
    padding: 8px 10px;
  }
}

@media (max-width: 420px) {
  .content-acessorapido .cards a {
    min-height: 230px;
    font-size: 15px;
  }
}

@media (hover: none) {
  .content-acessorapido .cards a:hover {
    transform: none;
  }
}

.duvidas-plano {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 6px 0;
}

.duvidas-plano-content {
  width: min(90%, 1200px);
  background-color: #e6ebf0;
  color: var(--brand-blue);
  border-radius: 22px;
  border: 1px solid rgba(23, 63, 115, 0.1);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 24px rgba(15, 47, 87, 0.12);
}

.duvidas-plano-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 64ch;
}

.duvidas-plano-copy h2 {
  font-family: "Bronkoh-Heavy", "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  color: var(--brand-blue);
}

.duvidas-plano-copy p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(23, 63, 115, 0.9);
}

.duvidas-plano-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  font-family: "Bronkoh-Bold", "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.duvidas-plano-content a:hover {
  background-color: var(--brand-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 47, 87, 0.2);
}

.duvidas-plano-content a:focus-visible {
  outline: 3px solid rgba(23, 63, 115, 0.45);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .duvidas-plano-content {
    width: min(92%, 1200px);
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .duvidas-plano-copy p {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .duvidas-plano-content {
    width: min(94%, 1200px);
    padding: 18px;
    border-radius: 16px;
    gap: 16px;
  }

  .duvidas-plano-content a {
    width: 100%;
    min-height: 50px;
    font-size: 0.92rem;
  }
}

@media (hover: none) {
  .duvidas-plano-content a:hover {
    transform: none;
    box-shadow: none;
  }
}

.sobre {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  padding: 20px;
}

.sobre .sobre-content {
  display: flex;
  width: 90%;
  max-width: 1200px;
  height: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.sobre .sobre-content h1 {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

.sobre .sobre-content h1 span {
  text-transform: uppercase;
  font-family: "Bronkoh-Heavy";
  color: var(--brand-blue);
}

.sobre .sobre-content p {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
  width: 100%;
  /* text-indent: 2em; */
}

.sobre-topicos {
  width: 100%;
  display: block;
}

.sobre-topico {
  padding: 0;
  margin: 0;
}

.sobre-topico + .sobre-topico {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 47, 87, 0.14);
}

.sobre-topico h2 {
  font-family: "Bronkoh-Bold", "Montserrat", sans-serif;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.sobre-topico p {
  font-size: 18px;
  line-height: 1.55;
  text-align: justify;
  /* text-indent: 2em; */
  margin-top: 10px;
}

.sobre-topico p:first-of-type {
  margin-top: 0;
  text-indent: 0;
}

.sobre-etapas {
  list-style: disc;
  display: block;
  padding-left: 1.2rem;
  margin-top: 12px;
}

.sobre-etapas li {
  position: static;
  padding-left: 0;
  font-size: 1rem;
  line-height: 1.6;
  /* color: #173f73; */
  margin-top: 6px;
}

@media (max-width: 768px) {
  .sobre-topico p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .sobre-etapas li {
    font-size: 0.98rem;
  }
}

.timeline {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.timeline h1 {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  color: #0f2f57;
}

.timeline img {
  width: 90%;
  max-width: 1200px;
  height: auto;
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  width: min(98vw, 1800px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lightbox-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.lightbox-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background-color: #0f2f57;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-viewport {
  width: 100%;
  max-height: calc(92vh - 58px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  background-color: #ffffff;
  border: 1px solid rgba(15, 47, 87, 0.18);
}

.lightbox-viewport img {
  width: 1600px;
  min-width: 100%;
  max-width: none;
  height: auto;
  display: block;
  cursor: default;
}

@media (max-width: 640px) {
  .lightbox {
    padding: 12px;
  }

  .lightbox-btn {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  .lightbox-viewport {
    max-height: calc(94vh - 64px);
  }

  .lightbox-viewport img {
    width: 1200px;
  }
}

.site-footer {
  width: 100%;
  background: linear-gradient(180deg, #173f73 0%, #0f2f57 100%);
  color: #ffffff;
  margin-top: 20px;
}

.footer-content {
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 34px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.footer-brand-block {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.footer-logos {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.footer-logos a {
  display: inline-flex;
  height: 100%;
  align-items: center;
  padding: 0;
}
.footer-logos img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.footer-nav a:hover {
  color: var(--brand-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 0 18px;
}

.footer-bottom p {
  width: min(92%, 1200px);
  margin: 0 auto;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--brand-green);
}

@media (max-width: 860px) {
  .footer-content {
    flex-direction: column;
    gap: 22px;
  }

  .footer-nav {
    min-width: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .footer-content {
    padding: 28px 0 20px;
  }

  .footer-logos img {
    height: 100%;
  }

  .footer-logos a {
    height: 40px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom p {
    font-size: 0.86rem;
  }
}

.documentos-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.documentos-hero {
  width: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 0;
  background:
    linear-gradient(120deg, rgba(15, 47, 87, 0.95), rgba(23, 63, 115, 0.9)),
    url("../img/planodiretorbannerhead.svg") center / cover no-repeat;
    margin-top: -60px;
}

.documentos-hero-content {
  width: min(92%, 1200px);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.documentos-kicker {
  color: var(--brand-green);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.documentos-hero h1 {
  font-family: "Bronkoh-Heavy", "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  max-width: 14ch;
}

.documentos-hero p {
  max-width: 68ch;
  line-height: 1.6;
  font-size: 1.04rem;
}

.documentos-sections {
  width: min(92%, 1200px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.documentos-card {
  /* background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%); */
  border: 1px solid rgba(15, 47, 87, 0.14);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 47, 87, 0.08);
  padding: 22px;
}

.documentos-card h2 {
  color: var(--brand-blue);
  font-family: "Bronkoh-Bold", "Montserrat", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin-bottom: 14px;
}

.documentos-lista h3 {
  color: #0f2f57;
  font-family: "Bronkoh-Bold", "Montserrat", sans-serif;
  font-size: 1.08rem;
  margin: 16px 0 8px;
}

.documentos-lista .etapa-titulo {
  margin: 18px 0 10px;
  padding: 4px 0 4px 12px;
  border-left: 4px solid var(--brand-blue);
}

.documentos-lista ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.documentos-lista .documentos-gerais {
  margin-bottom: 8px;
}

.documentos-lista .etapa-itens {
  margin-left: 18px;
  padding: 12px 14px;
  /* border-left: 2px dashed rgba(15, 47, 87, 0.35); */
  /* background-color: rgba(147, 192, 31, 0.08); */
  border-radius: 10px;
}

.documentos-lista li {
  padding-left: 18px;
  position: relative;
}

.documentos-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-orange);
}

.documentos-lista .etapa-itens li::before {
  background-color: var(--brand-green);
}

.documentos-lista a {
  color: #10355f;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.45;
}

.documentos-lista a:hover {
  color: var(--brand-orange);
}

@media (max-width: 768px) {
  .documentos-page {
    gap: 26px;
  }

  .documentos-hero {
    min-height: 210px;
    padding: 34px 0;
  }

  .documentos-card {
    padding: 18px;
  }

  .documentos-lista a {
    font-size: 0.96rem;
  }

  .documentos-lista .etapa-itens {
    margin-left: 10px;
    padding: 10px 12px;
  }
}

.interna-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.interna-hero {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0;
  background:
    linear-gradient(120deg, rgba(15, 47, 87, 0.94), rgba(23, 63, 115, 0.86)),
    url("../img/planodiretorbannerhead.svg") center / cover no-repeat;
margin-top: -60px;
}

.projeto-hero {
    margin-top: -60px;
  background:
    linear-gradient(120deg, rgba(18, 55, 32, 0.92), rgba(15, 47, 87, 0.86)),
    url("../img/planodiretorbannerhead.svg") center / cover no-repeat;
}

.interna-hero-content {
  width: min(92%, 1200px);
  color: #ffffff;
}

.interna-hero-content h1 {
  font-family: "Bronkoh-Heavy", "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.06;
  max-width: 18ch;
}

.interna-content {
  width: min(92%, 1200px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.interna-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border: 1px solid rgba(15, 47, 87, 0.14);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 47, 87, 0.08);
  padding: 22px;
}

.interna-card h2 {
  color: var(--brand-blue);
  font-family: "Bronkoh-Bold", "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin-bottom: 12px;
}

.interna-card h3 {
  color: #0f2f57;
  font-family: "Bronkoh-Bold", "Montserrat", sans-serif;
  margin: 14px 0 8px;
}

.interna-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: start;
}

.interna-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.interna-image figcaption {
  margin-top: 6px;
  font-size: 0.84rem;
  color: #4d5f74;
}

.interna-text p,
.interna-text li {
  color: #163a61;
  line-height: 1.6;
  font-size: 1rem;
}

.interna-text p + p {
  margin-top: 10px;
}

.cronograma-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cronograma-grid img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(15, 47, 87, 0.15);
}

.projeto-video-card video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.projeto-cta {
  margin-top: 16px;
}

.projeto-cta a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background-color: var(--brand-orange);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.projeto-cta a:hover {
  transform: translateY(-2px);
  background-color: #cf5f14;
  box-shadow: 0 10px 18px rgba(236, 115, 41, 0.28);
}

.projeto-galeria-grid,
.projeto-plantas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.projeto-galeria-grid img,
.projeto-plantas-grid img {
  width: 100%;
  border-radius: 10px;
  display: block;
  cursor: zoom-in;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.projeto-galeria-grid img:hover,
.projeto-plantas-grid img:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 26px rgba(15, 47, 87, 0.18);
  opacity: 0.98;
}

.projeto-objetivos {
  margin: 8px 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.conselho-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.conselho-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.conselho-card h2 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 47, 87, 0.12);
}

.conselho-card h3 {
  margin-top: 12px;
  font-size: 1rem;
}

.conselho-card li {
  color: #163a61;
  line-height: 1.55;
}

.conselho-card li strong {
  color: #0f2f57;
}

.conselho-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.conselho-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 47, 87, 0.12);
}

@media (max-width: 900px) {
  .interna-grid {
    grid-template-columns: 1fr;
  }

  .conselho-content {
    grid-template-columns: 1fr;
  }

  .projeto-galeria-grid,
  .projeto-plantas-grid,
  .cronograma-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .interna-page {
    gap: 24px;
  }

  .interna-card {
    padding: 16px;
  }

  .projeto-galeria-grid,
  .projeto-plantas-grid,
  .cronograma-grid {
    grid-template-columns: 1fr;
  }

  .conselho-content {
    grid-template-columns: 1fr;
  }
}

.projeto-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(7, 19, 35, 0.82);
  backdrop-filter: blur(6px);
}

.projeto-lightbox[hidden] {
  display: none;
}

.projeto-lightbox-content {
  width: min(96vw, 1320px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.projeto-lightbox-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.projeto-lightbox-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background-color: #ffffff;
  color: #173f73;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.projeto-lightbox-btn:hover {
  transform: translateY(-1px);
  background-color: var(--brand-orange);
  color: #ffffff;
}

.projeto-lightbox-body {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 10px;
  align-items: center;
}

.projeto-lightbox-viewport {
  max-height: 84vh;
  overflow: auto;
  border-radius: 16px;
  background: #081220;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.projeto-lightbox-viewport img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.projeto-lightbox-caption {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .projeto-lightbox {
    padding: 12px;
  }

  .projeto-lightbox-body {
    grid-template-columns: 1fr;
  }

  .projeto-lightbox-nav {
    width: 48px;
    height: 48px;
    align-self: center;
  }
}
