/* ==========================================================================
   COP30 — landing institucional
   ========================================================================== */

.cop30-page {
  --cp-blue: #00aeef;
  --cp-blue-dark: #007eb3;
  --cp-navy: #0b2840;
  --cp-text: #1d2b45;
  --cp-muted: #5f6775;
  --cp-line: rgba(11, 40, 64, 0.1);
  --cp-surface: #f4f8fb;
  --cp-shadow: 0 10px 32px rgba(11, 40, 64, 0.08);
  font-family: "Montserrat", "Open Sans", Arial, sans-serif;
  color: var(--cp-text);
  background: #fff;
}

.cop30-page #page-container {
  padding-top: 0;
}

.cop30-wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.cop30-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cp-blue);
}

.cop30-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--cp-blue);
  border-radius: 2px;
}

.cop30-heading {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--cp-navy);
  overflow-wrap: break-word;
}

.cop30-lead {
  margin: 10px 0 0;
  max-width: 42em;
  font-size: 14px;
  line-height: 1.65;
  color: var(--cp-muted);
}

.cop30-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.cop30-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero */
.cop30-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(320px, 42vw, 420px);
  overflow: hidden;
  isolation: isolate;
}

.cop30-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  filter: blur(14px) saturate(1.05);
}

.cop30-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(11, 31, 53, 0.88) 0%,
    rgba(11, 31, 53, 0.72) 48%,
    rgba(11, 31, 53, 0.45) 100%
  );
}

.cop30-hero__wrap {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(96px, 12vw, 112px) 0 clamp(32px, 4vw, 40px);
}

.cop30-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.cop30-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cop30-hero__breadcrumb a:hover {
  color: #fff;
}

.cop30-hero__category {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--cp-blue);
}

.cop30-hero__title {
  margin: 0;
  max-width: 16em;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.22;
  color: #fff;
}

.cop30-hero__intro {
  margin: 12px 0 0;
  max-width: 36em;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.cop30-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cop30-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.cop30-btn--primary {
  background: var(--cp-blue);
  border: 1.5px solid var(--cp-blue);
  color: #fff;
}

.cop30-btn--primary:hover {
  background: #0095cc;
  border-color: #0095cc;
  color: #fff;
  transform: translateY(-1px);
}

.cop30-btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.cop30-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Sobre */
.cop30-about {
  padding: 52px 0;
  background: #fff;
}

.cop30-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.cop30-about__media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--cp-shadow);
}

.cop30-about__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cop30-about__copy {
  display: flex;
  flex-direction: column;
}

.cop30-about__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(11, 40, 64, 0.88);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.cop30-about__list {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.cop30-about__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--cp-muted);
}

.cop30-about__list-icon {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cp-blue);
}

/* Stats */
.cop30-stats {
  padding: 44px 0;
  background: var(--cp-surface);
  border-block: 1px solid var(--cp-line);
}

.cop30-stats__head {
  margin-bottom: 22px;
  text-align: center;
}

.cop30-stats__head .cop30-lead {
  margin-inline: auto;
}

.cop30-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.cop30-stat {
  padding: 18px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--cp-line);
  text-align: center;
  box-shadow: 0 4px 16px rgba(11, 40, 64, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cop30-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--cp-shadow);
}

.cop30-stat__value {
  display: block;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cp-blue-dark);
}

.cop30-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--cp-muted);
}

/* Serviços */
.cop30-services {
  padding: 52px 0;
}

.cop30-services__head {
  margin-bottom: 24px;
}

.cop30-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.cop30-service {
  padding: 18px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--cp-line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cop30-service:hover {
  border-color: rgba(0, 174, 239, 0.35);
  box-shadow: var(--cp-shadow);
  transform: translateY(-2px);
}

.cop30-service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--cp-surface);
  color: var(--cp-blue-dark);
}

.cop30-service__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--cp-navy);
}

.cop30-service__text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--cp-muted);
}

/* Missões */
.cop30-missions {
  padding: 52px 0;
  background: var(--cp-surface);
}

.cop30-missions__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.cop30-missions__mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  height: 100%;
}

.cop30-missions__copy {
  display: flex;
  flex-direction: column;
}

.cop30-missions__mosaic img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--cp-shadow);
}

.cop30-missions__mosaic img:first-child {
  grid-row: span 2;
}

.cop30-missions__points {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.cop30-missions__points li {
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--cp-line);
  font-size: 13px;
  line-height: 1.5;
  color: var(--cp-muted);
}

/* Justiça linguística */
.cop30-justice {
  padding: 52px 0;
  background: var(--cp-navy);
  color: #fff;
  overflow: hidden;
}

.cop30-justice__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.cop30-justice__copy {
  display: flex;
  flex-direction: column;
}

.cop30-justice__panel {
  display: flex;
  flex-direction: column;
}

.cop30-justice .cop30-eyebrow {
  color: var(--cp-blue);
}

.cop30-justice .cop30-heading {
  color: #fff;
}

.cop30-justice .cop30-lead {
  color: rgba(255, 255, 255, 0.78);
}

.cop30-justice__tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.cop30-justice__tag {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.cop30-justice__panel {
  position: relative;
  padding: 22px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(0, 174, 239, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cop30-justice__panel img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

.cop30-justice__quote {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

/* Formação */
.cop30-training {
  padding: 52px 0;
}

.cop30-training__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.cop30-training__media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--cp-shadow);
}

.cop30-training__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cop30-training__copy {
  display: flex;
  flex-direction: column;
}

.cop30-training__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.cop30-training__card {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: var(--cp-surface);
  border: 1px solid var(--cp-line);
  transition: background 0.2s ease;
}

.cop30-training__card:hover {
  background: #fff;
}

.cop30-training__card-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--cp-blue-dark);
}

.cop30-training__card h3 {
  margin: 0 0 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cp-navy);
}

.cop30-training__card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--cp-muted);
}

/* Galeria */
.cop30-gallery {
  padding: 56px 0 60px;
  background: var(--cp-surface);
}

.cop30-gallery__head {
  margin-bottom: 22px;
}

.cop30-gallery__title {
  margin: 0;
  font-size: clamp(25px, 3vw, 33px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--cp-navy);
}

.cop30-gallery__lead {
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--cp-muted);
}

/* Palco: imagem + painel */
.cop30-gallery__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(11, 40, 64, 0.1);
}

.cop30-gallery__viewport {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--cp-navy);
}

.cop30-gallery__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 0.9s ease;
}

.cop30-gallery__shot.is-active {
  opacity: 1;
  transform: none;
}

.cop30-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--cp-navy);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(11, 40, 64, 0.22);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cop30-gallery__nav:hover {
  background: var(--cp-blue);
  color: #fff;
}

.cop30-gallery__nav--prev { left: 26px; }
.cop30-gallery__nav--next { right: 26px; }

.cop30-gallery__nav svg {
  width: 18px;
  height: 18px;
}

.cop30-gallery__counter {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  margin: 0;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--cp-navy);
  box-shadow: 0 4px 14px rgba(11, 40, 64, 0.18);
}

.cop30-gallery__panels {
  display: grid;
}

.cop30-gallery__panel {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  padding: 26px 30px 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.cop30-gallery__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.cop30-gallery__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}

.cop30-gallery__year {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--cp-navy);
}

.cop30-gallery__year::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cp-blue);
}

.cop30-gallery__meta-sep {
  width: 1px;
  height: 12px;
  background: rgba(11, 40, 64, 0.18);
}

.cop30-gallery__place {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cp-muted);
}

.cop30-gallery__place-icon {
  display: inline-flex;
  color: var(--cp-blue);
}

.cop30-gallery__place-icon svg {
  width: 13px;
  height: 13px;
}

.cop30-gallery__panel-title {
  margin: 0;
  font-size: clamp(18px, 1.9vw, 21px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--cp-navy);
}

.cop30-gallery__panel-rule {
  position: relative;
  display: block;
  height: 1px;
  margin: 13px 0 14px;
  background: var(--cp-line);
}

.cop30-gallery__panel-rule::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--cp-blue);
}

.cop30-gallery__panel-text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--cp-muted);
}

.cop30-gallery__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: auto 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--cp-line);
  list-style: none;
}

.cop30-gallery__features li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 7px;
  row-gap: 2px;
  padding: 0 10px;
}

.cop30-gallery__features li:first-child { padding-left: 0; }
.cop30-gallery__features li + li { border-left: 1px solid var(--cp-line); }

.cop30-gallery__feature-icon {
  display: inline-flex;
  align-self: center;
  color: var(--cp-blue);
}

.cop30-gallery__feature-icon svg {
  width: 16px;
  height: 16px;
}

.cop30-gallery__features strong {
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cp-navy);
}

.cop30-gallery__features li > span:last-child {
  grid-column: 2;
  font-size: 10px;
  line-height: 1.4;
  color: var(--cp-muted);
}

.cop30-gallery__panel-btn {
  align-self: flex-start;
  margin-top: 18px;
}

.cop30-gallery__panel-btn svg {
  width: 15px;
  height: 15px;
}

/* Miniaturas */
.cop30-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.cop30-gallery__thumb {
  display: flex;
  flex-direction: column;
  padding: 8px 10px 11px;
  border: 1px solid var(--cp-line);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cop30-gallery__thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 40, 64, 0.09);
}

.cop30-gallery__thumb-media {
  display: block;
  margin-bottom: 9px;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.cop30-gallery__thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: opacity 0.25s ease, transform 0.4s ease;
}

.cop30-gallery__thumb:hover .cop30-gallery__thumb-media img {
  opacity: 1;
  transform: scale(1.04);
}

.cop30-gallery__thumb-title {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cp-navy);
  transition: color 0.2s ease;
}

.cop30-gallery__thumb-meta {
  margin-top: auto;
  padding-top: 3px;
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--cp-muted);
}

.cop30-gallery__thumb.is-active {
  border-color: var(--cp-blue);
  box-shadow: 0 8px 22px rgba(0, 174, 239, 0.16);
}

.cop30-gallery__thumb.is-active .cop30-gallery__thumb-title {
  color: var(--cp-blue);
}

.cop30-gallery__thumb.is-active .cop30-gallery__thumb-media img {
  opacity: 1;
}

/* Faixa final */
.cop30-gallery__note {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 900px);
  margin: 24px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 12px;
  background: #e9f4fb;
}

.cop30-gallery__note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #fff;
  color: var(--cp-blue);
  box-shadow: 0 4px 12px rgba(11, 40, 64, 0.07);
}

.cop30-gallery__note-icon svg {
  width: 17px;
  height: 17px;
}

.cop30-gallery__note-copy {
  display: grid;
  gap: 2px;
}

.cop30-gallery__note-copy strong {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cp-navy);
}

.cop30-gallery__note-copy span {
  font-size: 12px;
  line-height: 1.5;
  color: var(--cp-muted);
}

.cop30-gallery__note-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  margin-left: auto;
  padding: 9px 16px;
  border: 1px solid rgba(0, 174, 239, 0.28);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--cp-navy);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.cop30-gallery__note-btn svg {
  width: 15px;
  height: 15px;
  color: var(--cp-blue);
  transition: color 0.2s ease;
}

.cop30-gallery__note-btn:hover {
  background: var(--cp-blue);
  border-color: var(--cp-blue);
  color: #fff;
  transform: translateY(-1px);
}

.cop30-gallery__note-btn:hover svg {
  color: #fff;
}

/* Diferenciais */
.cop30-diff {
  padding: 52px 0;
}

.cop30-diff__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
}

.cop30-diff__item {
  padding: 16px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--cp-line);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cop30-diff__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--cp-shadow);
}

.cop30-diff__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--cp-blue-dark);
}

.cop30-diff__item h3 {
  margin: 0 0 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cp-navy);
}

.cop30-diff__item p {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--cp-muted);
}

/* CTA final */
.cop30-cta {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
  isolation: isolate;
}

.cop30-cta__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(10px);
}

.cop30-cta__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 40, 64, 0.92) 0%, rgba(11, 40, 64, 0.78) 100%);
}

.cop30-cta__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cop30-cta__title {
  margin: 0 0 8px;
  max-width: 20em;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.28;
  color: #fff;
}

.cop30-cta__text {
  margin: 0;
  max-width: 34em;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsivo */
@media (max-width: 960px) {
  /* Transform cria containing block e no iOS vaza imagem por cima do texto */
  .cop30-reveal {
    transform: none;
  }

  .cop30-about__grid,
  .cop30-missions__grid,
  .cop30-justice__grid,
  .cop30-training__grid {
    grid-template-columns: 1fr;
  }

  .cop30-about__media img,
  .cop30-training__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .cop30-missions__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cop30-missions__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .cop30-missions__mosaic img {
    height: auto;
    min-height: 0;
    max-height: 160px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .cop30-missions__mosaic img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    max-height: 200px;
    aspect-ratio: 16 / 10;
  }

  .cop30-missions__copy {
    position: relative;
    z-index: 1;
    background: var(--cp-surface);
  }

  .cop30-justice__tags {
    margin-top: 20px;
    padding-top: 0;
  }

  .cop30-justice__panel img {
    flex: 0 0 auto;
    aspect-ratio: 5 / 4;
    min-height: 0;
  }

  .cop30-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cop30-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cop30-diff__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cop30-gallery__stage {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .cop30-gallery__viewport {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .cop30-gallery__shot {
    display: none;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    opacity: 1;
    transform: none;
  }

  .cop30-gallery__shot.is-active {
    display: block;
  }

  .cop30-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .cop30-wrap {
    width: min(1080px, calc(100% - 32px));
  }

  .cop30-hero__wrap {
    width: min(1080px, calc(100% - 32px));
    padding-top: 88px;
  }

  .cop30-about,
  .cop30-services,
  .cop30-missions,
  .cop30-justice,
  .cop30-training,
  .cop30-gallery,
  .cop30-diff,
  .cop30-stats {
    padding: 40px 0;
  }

  .cop30-stats__grid,
  .cop30-services__grid,
  .cop30-diff__grid,
  .cop30-training__cards {
    grid-template-columns: 1fr;
  }

  .cop30-gallery__panel {
    padding: 22px 20px 24px;
  }

  .cop30-gallery__features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cop30-gallery__features li {
    padding: 0;
  }

  .cop30-gallery__features li + li {
    padding-top: 10px;
    border-left: 0;
    border-top: 1px solid var(--cp-line);
  }

  .cop30-gallery__lead br {
    display: none;
  }

  .cop30-gallery__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cop30-gallery__note {
    flex-wrap: wrap;
  }

  .cop30-gallery__note-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .cop30-gallery__nav--prev { left: 14px; }
  .cop30-gallery__nav--next { right: 14px; }

  .cop30-cta__wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .cop30-btn {
    width: 100%;
    justify-content: center;
  }
}
