/* DNA Institucional v1.1 — layout mockup azul */

:root {
  --blue: #004aad;
  --blue-dark: #003580;
  --blue-light: #e8f0fc;
  --navy: #002d62;
  --text: #1a1a2e;
  --muted: #6b7280;
  --gray-bg: #f4f6f9;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 74, 173, 0.08);
  --font: 'Poppins', system-ui, sans-serif;
  --font-head: 'Montserrat', system-ui, sans-serif;
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body.dna-site {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

.dna-container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.dna-skip { position: absolute; left: -9999px; z-index: 9999; }
.dna-skip:focus { left: 16px; top: 16px; background: var(--blue); color: #fff; padding: 8px 16px; }

.dna-center { text-align: center; margin-top: 32px; }

/* Logo */
.dna-logo { display: flex; flex-direction: column; line-height: 1.1; text-decoration: none !important; color: inherit !important; }
.dna-logo__dna { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; }
.dna-logo__sub { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }
.dna-logo--footer .dna-logo__dna { color: #fff; }
.dna-logo--footer .dna-logo__sub { color: rgba(255,255,255,0.65); }

/* Header */
.dna-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.dna-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 72px;
}

.dna-nav { display: flex; align-items: center; gap: 8px; }

.dna-nav__list {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}

.dna-nav__list a {
  display: block; padding: 8px 14px;
  font-size: 0.875rem; font-weight: 500; color: var(--text);
  border-radius: 8px; transition: color 0.15s, background 0.15s;
}

.dna-nav__list a:hover,
.dna-nav__list .is-active a { color: var(--blue); background: var(--blue-light); }

.dna-nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--white); cursor: pointer;
}
.dna-nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.dna-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dna-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.dna-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.dna-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 50px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.12s, background 0.15s, box-shadow 0.15s;
  text-decoration: none !important; white-space: nowrap;
}
.dna-btn:hover { transform: translateY(-1px); }
.dna-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.dna-btn--primary {
  background: var(--blue); color: #fff !important; border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.25);
}
.dna-btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff !important; }

.dna-btn--outline {
  background: var(--white); color: var(--blue) !important; border-color: var(--blue);
}
.dna-btn--outline:hover { background: var(--blue-light); color: var(--blue) !important; }

.dna-btn--donate {
  background: var(--blue); color: #fff !important; border-color: var(--blue);
  padding: 10px 20px; font-size: 0.75rem;
}
.dna-btn--donate:hover { background: var(--blue-dark); color: #fff !important; }

.dna-btn--sm { padding: 10px 18px; font-size: 0.72rem; }

.dna-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.9rem; color: var(--blue);
}
.dna-link-arrow svg { width: 18px; height: 18px; }

/* Hero */
.dna-hero { position: relative; padding: 48px 0 72px; background: var(--white); }

.dna-hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.dna-hero__intro {
  max-width: none;
  margin-bottom: 0;
  min-width: 0;
}

.dna-hero__intro h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800; line-height: 1.2; color: var(--blue);
  margin-bottom: 18px; letter-spacing: -0.02em;
}

.dna-hero__intro h1 span { color: var(--text); }

.dna-hero__intro .dna-lead-block {
  font-size: 1rem; color: var(--muted); margin-bottom: 28px; max-width: 52ch; line-height: 1.7;
}

.dna-hero__btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Entrada animada do hero (texto + carrossel juntos) */
.dna-hero-enter {
  opacity: 0;
  transform: translateY(22px);
}

.dna-hero-enter--media {
  transform: translateY(22px) scale(0.98);
}

.dna-hero.is-loaded .dna-hero-enter {
  animation: dnaHeroEnter 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.dna-hero.is-loaded .dna-hero__intro .dna-hero-enter:nth-child(1) { animation-delay: 0.08s; }
.dna-hero.is-loaded .dna-hero__intro .dna-hero-enter:nth-child(2) { animation-delay: 0.18s; }
.dna-hero.is-loaded .dna-hero__intro .dna-hero-enter:nth-child(3) { animation-delay: 0.28s; }
.dna-hero.is-loaded .dna-hero__intro .dna-hero-enter:nth-child(4) { animation-delay: 0.38s; }
.dna-hero.is-loaded .dna-hero-enter--media { animation-delay: 0.22s; }
.dna-hero.is-loaded .dna-hero-scroll { animation-delay: 0.52s; }

.dna-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(0, 74, 173, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.12);
  opacity: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.dna-hero.is-loaded .dna-hero-scroll {
  animation: dnaHeroEnter 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.dna-hero-scroll__icon {
  display: block;
  animation: dnaScrollBounce 1.8s ease-in-out infinite;
}

@keyframes dnaScrollBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

.dna-hero-scroll:hover {
  background: var(--blue-light);
  border-color: var(--blue);
}

.dna-hero-scroll:hover .dna-hero-scroll__icon {
  animation: none;
  transform: translateY(2px);
}

.dna-hero-scroll:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

@keyframes dnaHeroEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.dna-hero.is-loaded .dna-hero-enter--media {
  animation-name: dnaHeroEnterMedia;
}

@keyframes dnaHeroEnterMedia {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Carrossel hero */
.dna-hero-slider {
  width: 100%;
  min-width: 0;
}

.dna-hero-slider__frame {
  position: relative;
  width: 100%;
  height: clamp(280px, 36vw, 380px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray-bg);
}

.dna-hero-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.dna-hero-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.dna-hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dna-hero-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}

.dna-hero-slider__arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.dna-hero-slider__arrow:hover {
  background: var(--blue-light);
  border-color: var(--blue);
}

.dna-hero-slider__dots {
  display: flex;
  gap: 8px;
}

.dna-hero-slider__dot {
  width: 10px; height: 10px;
  padding: 0; border: none;
  border-radius: 50%;
  background: rgba(0, 74, 173, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.dna-hero-slider__dot.is-active {
  background: var(--blue);
  transform: scale(1.15);
}

.dna-hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}

.dna-hero__text h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800; line-height: 1.2; color: var(--blue);
  margin-bottom: 18px; letter-spacing: -0.02em;
}

.dna-hero__text h1 span { color: var(--text); }

.dna-hero__text > p {
  font-size: 0.95rem; color: var(--muted); margin-bottom: 28px; max-width: 46ch;
}

.dna-hero__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.dna-hero__photo {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}

.dna-hero__photo--main {
  grid-column: 1 / -1; max-height: 280px;
}

.dna-hero__photo:not(.dna-hero__photo--main) { min-height: 130px; max-height: 160px; }

/* Curso Construção Civil — destaque */
.dna-curso-destaque {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2847 55%, var(--blue) 100%);
  color: #fff; padding: 56px 0;
}

.dna-curso-destaque__grid {
  display: grid; grid-template-columns: minmax(280px, 480px) 1fr;
  gap: 40px; align-items: center;
}

.dna-curso-destaque__media {
  position: relative; margin: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  background: #fff;
}

.dna-curso-destaque__media img {
  display: block; width: 100%; height: auto;
}

.dna-curso-destaque__badge {
  position: absolute; left: 16px; bottom: 16px;
  background: #f5c518; color: var(--navy);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 8px 14px; border-radius: 999px;
}

.dna-curso-destaque__content h2 {
  font-family: var(--font-head); font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800; line-height: 1.25; margin-bottom: 14px;
}

.dna-curso-destaque__lead {
  font-size: 0.95rem; color: rgba(255,255,255,0.88);
  line-height: 1.65; margin-bottom: 12px; max-width: 58ch;
}

.dna-curso-destaque__meta {
  font-size: 0.9rem; font-weight: 700; color: #f5c518; margin-bottom: 20px;
}

.dna-curso-destaque__list {
  list-style: none; display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 20px;
  margin: 0 0 20px; padding: 0;
}

.dna-curso-destaque__list li {
  font-size: 0.82rem; line-height: 1.45;
  padding-left: 14px; border-left: 3px solid #f5c518;
}

.dna-curso-destaque__list strong {
  display: block; font-size: 0.88rem; margin-bottom: 2px;
}

.dna-curso-destaque__list span { color: rgba(255,255,255,0.75); }

.dna-curso-destaque__aviso {
  font-size: 0.85rem; font-weight: 600; color: #ffe082;
  margin-bottom: 10px;
}
.dna-curso-destaque__lista-titulo {
  font-size: 0.92rem; font-weight: 700; margin: 0 0 10px; color: #fff;
}
.dna-curso-destaque__destaques {
  font-size: 0.82rem; color: rgba(255,255,255,0.85); margin: 0 0 12px; line-height: 1.5;
}
.dna-curso-destaque__citacao {
  font-size: 0.88rem; color: rgba(255,255,255,0.9); margin: 0 0 14px;
}

.dna-curso-destaque__endereco {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 24px;
}

.dna-curso-destaque__endereco svg {
  width: 18px; height: 18px; flex-shrink: 0; stroke: rgba(255,255,255,0.7); margin-top: 2px;
}

.dna-curso-destaque__btns { display: flex; flex-wrap: wrap; gap: 12px; }

.dna-curso-destaque--reverse .dna-curso-destaque__grid {
  grid-template-columns: 1fr minmax(280px, 480px);
}

.dna-kicker--light { color: #f5c518; }

.dna-btn--whatsapp {
  background: #25d366; color: #fff !important; border: 2px solid #25d366;
}

.dna-btn--whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff !important; }

/* Stats bar */
.dna-stats { background: var(--blue); padding: 36px 0; }

.dna-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}

.dna-stat { color: #fff; }
.dna-stat__icon {
  width: 48px; height: 48px; margin: 0 auto 12px;
  background: rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.dna-stat__icon svg { width: 22px; height: 22px; stroke: #fff; }
.dna-stat strong { display: block; font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; margin-bottom: 4px; }
.dna-stat span { font-size: 0.85rem; opacity: 0.9; }

/* Sections */
.dna-section { padding: 64px 0; }
.dna-section--gray { background: var(--gray-bg); }

.dna-title {
  font-family: var(--font-head); font-size: 1.75rem; font-weight: 800;
  color: var(--blue); margin-bottom: 12px;
}
.dna-title--center { text-align: center; margin-bottom: 32px; }

.dna-subtitle { color: var(--muted); font-size: 0.95rem; max-width: 480px; }
.dna-subtitle--center { text-align: center; margin: -20px auto 32px; max-width: 560px; }

.dna-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 36px; flex-wrap: wrap;
}

/* Projects */
.dna-projects {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.dna-project-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  display: flex; flex-direction: column; min-height: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.dna-project-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.dna-project-card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}

.dna-project-card h3 {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 10px; line-height: 1.3;
}

.dna-project-card p {
  font-size: 0.82rem; color: var(--muted); flex: 1; margin-bottom: 16px; line-height: 1.55;
}

.dna-project-card > a {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--blue); text-transform: uppercase;
}

/* Project cards with photos */
.dna-projects--photo { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

.dna-project-card--photo {
  padding: 0; overflow: hidden; min-height: 0;
}

.dna-project-card__img {
  aspect-ratio: 4/3; overflow: hidden;
}

.dna-project-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
}

.dna-project-card--photo:hover .dna-project-card__img img { transform: scale(1.05); }

.dna-project-card__body { padding: 20px 18px 22px; display: flex; flex-direction: column; flex: 1; }

.dna-project-card__tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--blue); background: var(--blue-light);
  padding: 4px 10px; border-radius: 50px; margin-bottom: 10px; width: fit-content;
}

.dna-project-card--photo h3 { margin-bottom: 8px; }
.dna-project-card--photo p { margin-bottom: 14px; }

/* Project detail page */
.dna-projeto-detalhe {
  margin-bottom: 56px; padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.dna-projeto-detalhe:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.dna-projeto-detalhe__head {
  display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start;
  margin-bottom: 24px;
}

.dna-projeto-detalhe__head h2 {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  color: var(--blue); margin: 8px 0 12px;
}

.dna-projeto-detalhe__head p { color: var(--muted); max-width: 52ch; }

.dna-projeto-detalhe__cover {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}

.dna-projeto-detalhe__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px;
}

/* Gallery */
.dna-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 12px; margin-bottom: 8px;
}

.dna-gallery--masonry {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 160px);
  grid-auto-flow: dense;
}

.dna-gallery--masonry .dna-gallery__item,
.dna-gallery--full .dna-gallery__item { min-height: 140px; aspect-ratio: 4/3; }

.dna-gallery--full {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-template-rows: none; gap: 12px; margin-top: 24px;
}

.dna-gallery--strip {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 120px; gap: 10px;
}

.dna-gallery__item {
  position: relative; padding: 0; border: none; cursor: pointer;
  overflow: hidden; border-radius: var(--radius);
  background: var(--gray-bg); display: block; width: 100%;
}

.dna-gallery__item--wide { grid-column: span 2; grid-row: span 2; }

.dna-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}

.dna-gallery__item:hover img { transform: scale(1.06); }

.dna-gallery__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(transparent, rgba(0,45,98,0.85));
  color: #fff; font-size: 0.72rem; font-weight: 600;
  text-align: left; opacity: 0; transition: opacity 0.2s;
}

.dna-gallery__item:hover .dna-gallery__label { opacity: 1; }

/* Lightbox */
.dna-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 20, 50, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}

.dna-lightbox[hidden] { display: none !important; }

.dna-lightbox figure { max-width: min(960px, 100%); margin: 0; text-align: center; }

.dna-lightbox img {
  max-width: 100%; max-height: 80vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.dna-lightbox figcaption {
  color: rgba(255,255,255,0.85); margin-top: 14px; font-size: 0.9rem;
}

.dna-lightbox__close {
  position: absolute; top: 16px; right: 20px;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff;
  font-size: 1.75rem; line-height: 1; cursor: pointer;
  transition: background 0.15s;
}

.dna-lightbox__close:hover { background: rgba(255,255,255,0.25); }

/* Testimonials */
.dna-testimonials-head { position: relative; margin-bottom: 32px; }
.dna-quote-mark {
  position: absolute; left: -8px; top: -24px;
  font-size: 5rem; line-height: 1; color: var(--blue-light);
  font-family: Georgia, serif; pointer-events: none;
}

.dna-testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}

.dna-testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center; box-shadow: var(--shadow);
}

.dna-testimonial__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--blue-light);
}

.dna-testimonial blockquote {
  font-size: 0.875rem; color: var(--muted); font-style: italic;
  margin-bottom: 16px; line-height: 1.6;
}

.dna-testimonial cite { display: block; font-style: normal; }
.dna-testimonial cite strong { display: block; font-size: 0.9rem; color: var(--blue); margin-bottom: 2px; }
.dna-testimonial cite span { font-size: 0.8rem; color: var(--muted); }

.dna-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dna-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: var(--border); cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.dna-dot.is-active { background: var(--blue); transform: scale(1.15); }

/* Transparency home */
.dna-transparency {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center;
}

.dna-transparency__text p { color: var(--muted); margin-bottom: 24px; max-width: 42ch; }

.dna-transparency__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.dna-trans-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s; color: inherit !important;
}

.dna-trans-card:hover { box-shadow: var(--shadow); border-color: var(--blue); color: inherit !important; }

.dna-trans-card__icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border: 2px solid var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.dna-trans-card__icon svg { width: 24px; height: 24px; }

.dna-trans-card h3 { font-size: 0.85rem; font-weight: 700; color: var(--blue); margin-bottom: 12px; line-height: 1.35; }
.dna-trans-card span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; color: var(--blue); }

/* Page inner */
.dna-page-hero {
  padding: 48px 0 40px; background: var(--blue-light);
  border-bottom: 1px solid var(--border);
}
.dna-page-hero h1 {
  font-family: var(--font-head); font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--blue); margin-bottom: 10px;
}
.dna-page-hero .dna-lead { color: var(--muted); font-size: 1.05rem; max-width: 640px; }

.dna-page-hero--quem { padding: 56px 0; }

.dna-page-hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}

.dna-page-hero__photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.dna-page-hero__photos img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}

.dna-page-hero__photos img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }

.dna-quote {
  margin: 0; padding: 32px 40px; text-align: center;
  background: var(--blue); color: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.dna-quote p {
  font-family: var(--font-head); font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700; line-height: 1.45; margin: 0;
}

.dna-jornada {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px;
}

.dna-jornada__step {
  position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px 24px;
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
}

.dna-jornada__step:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0, 74, 173, 0.12); }

.dna-jornada__num {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 800;
  color: var(--blue); background: var(--blue-light);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.dna-jornada__icon { font-size: 1.75rem; display: block; margin-bottom: 12px; }

.dna-jornada__step h3 {
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
  color: var(--blue); margin-bottom: 8px; line-height: 1.35;
}

.dna-jornada__step p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin: 0; }

.dna-team {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 8px;
}

.dna-team-card {
  display: grid; grid-template-columns: 140px 1fr; gap: 20px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: box-shadow 0.2s;
}

.dna-team-card:hover { box-shadow: 0 8px 28px rgba(0, 74, 173, 0.12); }

.dna-team-card__photo { line-height: 0; }

.dna-team-card__photo img {
  width: 100%; height: 100%; min-height: 160px; object-fit: cover;
}

.dna-team-card__body { padding: 20px 20px 20px 0; }

.dna-team-card__area {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 8px;
}

.dna-team-card h3 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 2px;
}

.dna-team-card__oficina {
  font-size: 0.82rem; font-weight: 600; color: var(--blue); margin-bottom: 8px;
}

.dna-team-card__body p:last-child {
  font-size: 0.82rem; color: var(--muted); line-height: 1.55; margin: 0;
}

.dna-local {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}

.dna-local__info p { color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

.dna-local__list { list-style: none; margin-bottom: 28px; }

.dna-local__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text); margin-bottom: 14px; line-height: 1.5;
}

.dna-local__list svg {
  width: 20px; height: 20px; flex-shrink: 0; stroke: var(--blue); margin-top: 2px;
}

.dna-local__btns { display: flex; flex-wrap: wrap; gap: 12px; }

.dna-local__map { margin: 0; }

.dna-local__map img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}

.dna-local__map figcaption {
  font-size: 0.78rem; color: var(--muted); padding: 10px 4px 0; font-style: italic;
}

.dna-content { max-width: 760px; padding: 48px 0; }
.dna-content--wide { max-width: 900px; }
.dna-content h2 { font-family: var(--font-head); color: var(--blue); font-size: 1.35rem; margin: 40px 0 12px; }
.dna-content h2:first-child { margin-top: 0; }
.dna-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.dna-content a { font-weight: 600; }

.dna-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}

.dna-lead-block { font-size: 1rem; color: var(--muted); max-width: 52ch; margin-bottom: 28px; line-height: 1.7; }

.dna-intro-block {
  font-size: 1.05rem; color: var(--text); line-height: 1.75;
  padding: 24px 28px; background: var(--blue-light);
  border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
}

/* Hero institutional */
.dna-hero--institutional .dna-hero__figure {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}

.dna-hero--institutional .dna-hero__figure img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}

.dna-hero--institutional .dna-hero__figure figcaption {
  font-size: 0.78rem; color: var(--muted); padding: 10px 4px 0; font-style: italic;
}

/* Split layout */
.dna-split {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start;
}

.dna-split__main p { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }

.dna-subtitle-sm {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
}

.dna-checklist { list-style: none; }
.dna-checklist li {
  position: relative; padding-left: 20px; margin-bottom: 14px;
  font-size: 0.9rem; color: var(--muted); line-height: 1.6;
}

.dna-checklist li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
}

.dna-checklist li strong { color: var(--text); }
.dna-checklist--compact li { margin-bottom: 8px; font-size: 0.875rem; }

/* Three sectors */
.dna-sectors {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
}

.dna-sector-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.dna-sector-card--highlight {
  border-color: var(--blue); background: var(--blue-light);
  box-shadow: var(--shadow);
}

.dna-sector-card__num {
  display: inline-block; font-family: var(--font-head); font-size: 0.75rem; font-weight: 800;
  color: var(--blue); background: rgba(0,74,173,0.12);
  padding: 4px 10px; border-radius: 50px; margin-bottom: 12px;
}

.dna-sector-card h3 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--blue); margin-bottom: 10px;
}

.dna-sector-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }

.dna-sector-card__ex { font-size: 0.78rem; color: var(--muted); font-style: italic; }

/* Areas */
.dna-areas {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px;
}

.dna-area-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
}

.dna-area-card h3 {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 700;
  color: var(--blue); margin-bottom: 8px;
}

.dna-area-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Pillars */
.dna-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.dna-pillar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
}

.dna-pillar h3 {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}

.dna-pillar p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin: 0; }

.dna-tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0;
}

.dna-tags li {
  font-size: 0.78rem; font-weight: 600; color: var(--blue);
  background: var(--blue-light); padding: 6px 12px; border-radius: 50px;
}

/* Text project cards */
.dna-projects--text { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.dna-project-card--text { min-height: 0; }

.dna-project-card__area {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--muted); margin-bottom: 8px;
}

.dna-project-card__meta {
  display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 12px;
}

/* News list */
.dna-news-list { display: flex; flex-direction: column; gap: 20px; }

.dna-news-item {
  padding: 24px 28px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}

.dna-news-item__tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--blue); background: var(--blue-light);
  padding: 4px 10px; border-radius: 50px; margin-bottom: 10px;
}

.dna-news-item h3, .dna-news-item h2 {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  color: var(--blue); margin-bottom: 8px; line-height: 1.35;
}

.dna-news-item p { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.65; }

.dna-news-item--full { padding: 28px 32px; }
.dna-news-item__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.dna-news-item__meta time { font-size: 0.8rem; color: var(--muted); }

/* Support section */
.dna-section--blue { background: var(--blue); color: #fff; }

.dna-title--white { color: #fff !important; }
.dna-subtitle--white { color: rgba(255,255,255,0.85) !important; }

.dna-support {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
}

.dna-support-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); padding: 28px 24px;
}

.dna-support-card h3 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}

.dna-support-card p { font-size: 0.875rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 20px; }

.dna-btn--white {
  background: #fff !important; color: var(--blue) !important; border-color: #fff !important;
}

.dna-btn--white:hover { background: var(--blue-light) !important; }

/* Features grid */
.dna-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 24px 0 40px;
}

.dna-split--reverse { direction: rtl; }
.dna-split--reverse > * { direction: ltr; }

.dna-pillars--stack { grid-template-columns: 1fr; }

.dna-features--4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 900px) {
  .dna-features--4 { grid-template-columns: repeat(4, 1fr); }
  .dna-features--4 .dna-feature { flex-direction: column; text-align: center; align-items: center; }
}

.dna-feature {
  display: flex; gap: 16px; padding: 20px;
  background: var(--gray-bg); border-radius: var(--radius-lg);
}

.dna-feature__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }

.dna-feature h3 {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 700;
  color: var(--blue); margin-bottom: 6px;
}

.dna-feature p { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* Project text detail */
.dna-projeto-texto {
  padding: 32px 0; border-bottom: 1px solid var(--border);
}

.dna-projeto-texto:last-of-type { border-bottom: none; }

.dna-projeto-texto__head h2 {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 800;
  color: var(--blue); margin: 8px 0 0;
}

.dna-projeto-texto__desc { font-size: 1rem; color: var(--text); margin-bottom: 20px; line-height: 1.7; }

.dna-dl { display: grid; gap: 16px; }

.dna-dl div { display: grid; grid-template-columns: 140px 1fr; gap: 12px; }

.dna-dl dt {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--blue);
}

.dna-dl dd { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* Compact gallery */
.dna-gallery--compact {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 100px; gap: 10px; margin-top: 20px;
}

.dna-gallery--compact .dna-gallery__item { min-height: 100px; aspect-ratio: auto; }

.dna-section--gray .dna-subtitle { margin-bottom: 0; }

/* Transparência — documentos anexados */
.dna-trans-cards-row {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
}

.dna-anexos {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.dna-anexos__subtitle {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin: 8px 0 12px;
}

.dna-anexos__hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.dna-anexos__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
}

.dna-anexos__item {
  display: block;
  padding: 22px 28px;
  background: #c8c8c8;
  color: var(--text) !important;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  transition: background 0.15s, transform 0.12s;
  text-decoration: none !important;
}

.dna-anexos__item:hover {
  background: #b0b0b0;
  color: var(--blue-dark) !important;
  transform: translateY(-1px);
}

.dna-doc .dna-btn { text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.06em; }

.dna-docs { display: flex; flex-direction: column; gap: 12px; }
.dna-doc {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
  padding: 22px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.dna-doc h3 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.dna-doc p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* Transparência — abas */
.dna-trans-tabs__nav,
.dna-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.dna-trans-tabs__btn,
.dna-tabs__btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--blue);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dna-trans-tabs__btn:hover,
.dna-tabs__btn:hover {
  border-color: var(--blue);
}

.dna-trans-tabs__btn.is-active,
.dna-tabs__btn.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
}

.dna-trans-tabs__panel {
  display: none;
}

.dna-trans-tabs__panel.is-active {
  display: block;
}

.dna-convenios-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.dna-convenios-intro__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 6px;
}

.dna-convenios-intro__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dna-tabs__panel {
  display: none;
}

.dna-tabs__panel.is-active {
  display: block;
}

.dna-convenio-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.dna-convenio-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.dna-convenio-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 6px;
}

.dna-convenio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dna-convenio-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.dna-convenio-panel__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.dna-convenio-panel__head h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 6px;
}

.dna-convenio-panel__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dna-convenio-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dna-termo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dna-termo__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
}

.dna-termo__folder-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.dna-termo__info {
  min-width: 0;
}

.dna-termo__title {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.4;
}

.dna-termo__meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Modal pasta — estilo Google Drive */
.dna-folder-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dna-folder-modal[hidden] {
  display: none !important;
}

.dna-folder-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.dna-folder-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: calc(100vh - 40px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dna-folder-modal__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: #f8fafc;
}

.dna-folder-modal__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.dna-folder-modal__folder-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.dna-folder-modal__header h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.35;
}

.dna-folder-modal__back,
.dna-folder-modal__close {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
}

.dna-folder-modal__close {
  font-size: 1.6rem;
  line-height: 1;
}

.dna-folder-modal__back:hover,
.dna-folder-modal__close:hover {
  background: #e2e8f0;
}

.dna-folder-modal__body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  background: #fff;
}

.dna-folder-modal__hint {
  margin: 0;
  padding: 16px 20px 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.dna-folder-files {
  list-style: none;
  margin: 0;
  padding: 12px 12px 20px;
}

.dna-folder-file {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dna-folder-file:hover {
  background: #f8fafc;
  border-color: var(--border);
}

.dna-folder-file__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
}

.dna-folder-file__name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
}

.dna-folder-file__type {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.dna-folder-file__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dna-folder-file__actions .dna-btn {
  font-size: 0.72rem;
  padding: 8px 12px;
}

.dna-folder-file--pending {
  opacity: 0.75;
}

.dna-folder-modal__empty {
  margin: 16px 20px 20px;
  padding: 24px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  text-align: center;
  color: var(--muted);
}

.dna-cert-empty {
  margin: 0;
}

.dna-folder-modal__viewer {
  height: min(70vh, 720px);
  padding: 12px;
  background: #f1f5f9;
}

.dna-folder-modal__viewer iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  background: #fff;
}

.dna-convenio-card--item {
  padding: 0;
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.dna-convenio-link {
  display: block;
  padding: 20px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.dna-convenio-link:hover {
  background: var(--white);
  color: var(--blue-dark, #1e3a8a);
}

.dna-convenio-link--pending {
  cursor: default;
  color: #64748b;
}

.dna-convenio-link--pending small {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #b45309;
}

.dna-convenio-card--item h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.4;
}

.dna-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; padding: 48px 0; }
.dna-contact-list { list-style: none; margin: 24px 0; }
.dna-contact-list li { margin-bottom: 20px; }
.dna-contact-list strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }

.dna-form {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--gray-bg); padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.dna-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; font-weight: 600; }
.dna-form input, .dna-form select, .dna-form textarea {
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
  font: inherit; background: #fff;
}
.dna-form input:focus, .dna-form select:focus, .dna-form textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,74,173,0.12);
}

.dna-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 48px 0; }
.dna-news-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow 0.2s;
}
.dna-news-card:hover { box-shadow: var(--shadow); }
.dna-news-card img { width: 100%; height: 160px; object-fit: cover; }
.dna-news-card__media { margin: 0; line-height: 0; }
.dna-news-card__media--flyer {
  background: #fff; padding: 10px 10px 0;
}
.dna-news-card__media--flyer img {
  width: 100%; height: auto; object-fit: contain; object-position: center top;
}
.dna-news-card__body { padding: 20px; }
.dna-news-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.dna-news-card p { font-size: 0.85rem; color: var(--muted); }

.dna-info-box {
  padding: 16px 18px; background: var(--blue-light); border-radius: var(--radius);
  border: 1px solid rgba(0,74,173,0.15); font-size: 0.875rem; color: var(--blue-dark); margin-top: 24px;
}

.dna-wp-content { padding: 32px 0; }
.dna-wp-content a { color: var(--blue); font-weight: 600; }

/* Footer */
.dna-footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 56px 0 0; }

.dna-footer__grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 32px;
  padding-bottom: 40px;
}

.dna-footer__title {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-bottom: 16px;
}

.dna-footer__about { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin: 16px 0 20px; line-height: 1.6; }

.dna-social { display: flex; gap: 10px; }
.dna-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; transition: background 0.15s;
}
.dna-social a:hover { background: var(--blue); }

.dna-footer__links { list-style: none; }
.dna-footer__links li { margin-bottom: 8px; }
.dna-footer__links a { color: rgba(255,255,255,0.75); font-size: 0.875rem; }
.dna-footer__links a:hover { color: #fff; }

.dna-footer__contact { list-style: none; }
.dna-footer__contact li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; font-size: 0.875rem; color: rgba(255,255,255,0.75);
}
.dna-footer__contact svg { width: 18px; height: 18px; flex-shrink: 0; stroke: rgba(255,255,255,0.6); margin-top: 2px; }
.dna-footer__contact a { color: rgba(255,255,255,0.85) !important; }

.dna-footer__newsletter-text { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; }

.dna-newsletter { display: flex; gap: 8px; flex-wrap: wrap; }
.dna-newsletter input {
  flex: 1; min-width: 160px; padding: 10px 14px;
  border: none; border-radius: 50px; font: inherit; font-size: 0.85rem;
}

.dna-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; text-align: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}

/* Responsive */
@media (max-width: 1024px) {
  .dna-projects { grid-template-columns: repeat(3, 1fr); }
  .dna-projects--photo { grid-template-columns: repeat(2, 1fr); }
  .dna-split { grid-template-columns: 1fr; gap: 32px; }
  .dna-page-hero__grid,
  .dna-local,
  .dna-team { grid-template-columns: 1fr; }
  .dna-jornada { grid-template-columns: repeat(2, 1fr); }
  .dna-team-card { grid-template-columns: 120px 1fr; }
  .dna-sectors { grid-template-columns: 1fr; }
  .dna-areas { grid-template-columns: repeat(2, 1fr); }
  .dna-pillars { grid-template-columns: 1fr; }
  .dna-support { grid-template-columns: 1fr; }
  .dna-features,
  .dna-features--4 { grid-template-columns: 1fr; }
  .dna-gallery--compact { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .dna-testimonials { grid-template-columns: 1fr; }
  .dna-testimonial:not(.is-active) { display: none; }
  .dna-trans-cards-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .dna-hero__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dna-hero { padding-bottom: 64px; }
  .dna-hero-scroll { bottom: 4px; }
  .dna-hero-slider__frame { height: clamp(220px, 55vw, 320px); }

  .dna-hero__grid,
  .dna-curso-destaque__grid,
  .dna-transparency,
  .dna-contact-grid,
  .dna-footer__grid { grid-template-columns: 1fr; }

  .dna-curso-destaque__list { grid-template-columns: 1fr; }
  .dna-curso-destaque__btns { flex-direction: column; }
  .dna-curso-destaque__btns .dna-btn { width: 100%; justify-content: center; }

  .dna-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .dna-projects { grid-template-columns: 1fr; }
  .dna-gallery--masonry,
  .dna-gallery--full { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .dna-gallery--strip { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .dna-gallery__item--wide { grid-column: span 1; grid-row: span 1; }
  .dna-areas { grid-template-columns: 1fr; }
  .dna-jornada { grid-template-columns: 1fr; }
  .dna-team-card { grid-template-columns: 1fr; }
  .dna-team-card__photo img { min-height: 180px; max-height: 200px; }
  .dna-team-card__body { padding: 20px; }
  .dna-quote { padding: 24px 20px; }
  .dna-local__btns { flex-direction: column; }
  .dna-local__btns .dna-btn { width: 100%; justify-content: center; }
  .dna-dl div { grid-template-columns: 1fr; gap: 4px; }
  .dna-gallery--compact { grid-template-columns: repeat(2, 1fr); }
  .dna-news-grid { grid-template-columns: 1fr; }
  .dna-trans-cards-row { grid-template-columns: 1fr; }
  .dna-convenio-card,
  .dna-convenios-intro,
  .dna-convenio-panel__head { grid-template-columns: 1fr; }
  .dna-termo__head { grid-template-columns: auto 1fr; }
  .dna-termo__head .dna-btn { grid-column: 1 / -1; width: 100%; justify-content: center; }
  .dna-folder-file { grid-template-columns: auto 1fr; }
  .dna-folder-file__actions { grid-column: 1 / -1; }
  .dna-folder-modal__header { grid-template-columns: 1fr auto; }
  .dna-folder-modal__back { grid-column: 1 / -1; justify-self: start; }
  .dna-trans-tabs__nav,
  .dna-tabs__nav { gap: 8px; }
  .dna-trans-tabs__btn,
  .dna-tabs__btn { flex: 1 1 calc(50% - 8px); text-align: center; padding: 11px 14px; }
  .dna-anexos__item { font-size: 1.1rem; padding: 18px 20px; }

  .dna-nav-toggle { display: flex; }

  .dna-nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
    box-shadow: var(--shadow);
  }
  .dna-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .dna-nav__list { flex-direction: column; width: 100%; }
  .dna-nav__list a { padding: 12px 14px; }
  .dna-nav__cta { margin-top: 12px; justify-content: center; }

  .dna-hero__btns { flex-direction: column; }
  .dna-hero__btns .dna-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .dna-stats__grid { grid-template-columns: 1fr 1fr; }
  .dna-gallery--masonry,
  .dna-gallery--full,
  .dna-gallery--strip { grid-template-columns: 1fr; }
}

/* ===== Animações suaves ao rolar ===== */
.dna-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.dna-animate.is-visible {
  opacity: 1;
  transform: none;
}

.dna-curso-destaque__media.dna-animate,
.dna-curso-destaque__content.dna-animate {
  transition-duration: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .dna-animate,
  .dna-hero-enter {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .dna-hero-scroll__icon { animation: none !important; }
}

/* ===== Modal PIX ===== */
.dna-pix-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.dna-pix-modal[hidden] {
  display: none !important;
}

.dna-pix-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
}

.dna-pix-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25);
  text-align: center;
}

.dna-pix-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #334155;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.dna-pix-modal__close:hover {
  background: #e2e8f0;
}

.dna-pix-modal__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: var(--dna-blue, #1e40af);
}

.dna-pix-modal__lead {
  margin: 0 0 1.25rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.dna-pix-modal__qr {
  margin: 0 auto 1.25rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: #f8fafc;
  display: inline-block;
}

.dna-pix-modal__qr img {
  display: block;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.dna-pix-modal__key-label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.dna-pix-modal__copy {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dna-pix-modal__copy--col {
  flex-direction: column;
  align-items: stretch;
  margin-top: 0.75rem;
}

.dna-pix-modal__copy code {
  flex: 1;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: #f1f5f9;
  font-size: 0.85rem;
  word-break: break-all;
  text-align: left;
}

.dna-pix-modal__details {
  margin: 0 0 1rem;
  text-align: left;
}

.dna-pix-modal__details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--dna-blue, #1e40af);
}

.dna-pix-modal__hint {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
}
