/* ===== BASE ===== */
.page-link,
a {
  text-decoration: none;
}

body {
  background-color: #f3f3f3;
  overflow-x: clip;
  max-width: 100%;
}

html {
  overflow-x: clip;
}

/* ===== MOBILE HEADER ===== */
.mobile-sticky-bar {
  z-index: 1020;
}

.mobile-sticky-bar.is-pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: none;
}

.header-mobile {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-mobile .container {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.header-mobile-menu,
.header-mobile-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: #333;
  padding: 0;
}

.header-mobile-menu {
  width: 40px;
  height: 40px;
  font-size: 1.35rem;
}

.header-mobile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 0.75rem;
}

.header-mobile-logo img {
  max-height: 100px;
  width: auto;
}

.header-mobile-whatsapp {
  width: 38px;
  height: 38px;

  color: var(--color-custom-primary);
  font-size: 1.25rem;
  text-decoration: none;
}
.dropdown-toggle::after {
  content: none;
}

.pagination .page-link {
  color: #1b1b1b;
}

.pagination .page-item.active .page-link {
  background-color: var(--color-custom-primary);
  border: 1px solid #353434;
  color: #fff;
}

.pagination .page-link:hover,
.pagination .page-link:focus {
  color: #1b1b1b;
}

/* Botões com cor primária — hover 20% mais escuro (calculado da --color-custom-primary) */
.btn.background-custom-primary {
  border-color: var(--color-custom-primary);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.btn.background-custom-primary:hover {
  background-color: var(--background-custom-primary);
}

.btn.color-background-primary:hover,
.btn.color-background-primary:focus-visible {
  background-color: var(--color-custom-primary-hover) !important;
  border-color: var(--color-custom-primary-hover) !important;
  color: #fff !important;
}

/* ===== CUSTOM COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 420px;
  max-width: calc(100% - 48px);
  background-color: #ffffff;
  z-index: 99999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-family: inherit;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.cookie-consent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-consent-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-custom-primary);
  margin: 0;
}

.cookie-consent-brand {
  font-size: 0.85rem;
  color: var(--color-custom-primary);
  opacity: 0.7;
  font-weight: 600;
}

.cookie-consent-body p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
  margin-bottom: 12px;
}

.cookie-consent-box {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 12px;
}

.cookie-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.cookie-consent-links a {
  color: var(--color-custom-primary);
  text-decoration: underline;
}

.cookie-consent-links a:hover {
  text-decoration: none;
}

.cookie-consent-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cookie-consent-btn-custom {
  background: none;
  border: none;
  color: #333;
  text-decoration: underline;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.cookie-consent-btn-custom:hover {
  color: var(--color-custom-primary);
}

.cookie-consent-btn-reject {
  background-color: #e9ecef;
  color: #495057;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  text-align: center;
}

.cookie-consent-btn-reject:hover {
  background-color: #dee2e6;
  color: #212529;
}

.cookie-consent-btn-accept {

  color: #000;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  text-align: center;
}

.cookie-consent-btn-accept:hover {
  filter: brightness(0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Customization Panel */
.cookie-consent-custom-panel {
  display: none;
  border-top: 1px solid #eee;
  margin-top: 16px;
  padding-top: 16px;
}

.cookie-consent-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.cookie-consent-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-custom-primary);
  cursor: pointer;
  margin-top: 2px;
}

.cookie-consent-option-text {
  flex: 1;
}

.cookie-consent-option-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 2px 0;
}

.cookie-consent-option-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.3;
  margin: 0;
}

.cookie-consent-btn-save {
  background-color: var(--color-custom-primary);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.cookie-consent-btn-save:hover {
  filter: brightness(0.95);
}


/* ===== PÁGINA BANCOS ===== */
.banks-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.banks-section-title__text {
  margin: 0;
  color: var(--color-custom-primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.banks-section-title__text--lg {
  font-size: clamp(1.75rem, 4vw, 2.5625rem);
  text-transform: none;
  white-space: normal;
}

.banks-section-title__line {
  flex: 1;
  height: 2px;
  background: var(--color-custom-primary);
}

.banks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.banks-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 1.5rem 1rem;
  background: #f0f0f0;
  border-radius: 12px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.banks-card:hover {
  transform: translateY(-2px);
}

.banks-card img {
  display: block;
  width: 100%;
  object-fit: contain;
}

.banks-card__label {
  color: #333;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 991px) {
  .banks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .banks-section-title__text {
    font-size: 1.25rem;
  }

  .banks-grid {
    gap: 0.875rem;
  }

  .banks-card {
    min-height: 96px;
    padding: 1rem 0.75rem;
  }

  .banks-card img {
    max-height: 56px;
  }

  .banks-card__label {
    font-size: 1rem;
  }
}

.bank-docs-list__link:hover .small {
  color: var(--color-custom-primary);
}

.affiliate-card__logo {
  max-height: 12rem;
  width: auto;
}


/* ===== LEGADO MÍNIMO (send_news, bancos, ads) ===== */
@media (min-width: 1400px) {
  .container {
    max-width: 1600px;
  }
}

.news-detail__sidebar-title {
  font-size: 1.875rem;
  line-height: 1.2;
}

.news-pagination .page-link {
  min-width: 40px;
  text-align: center;
  color: #1b1b1b;
}

.onca-contact-page {
  background: #f3f3f3;
  padding: 40px 0 64px;
}

.onca-contact-ad--bottom {
  margin-top: 64px;
}

.onca-ad-banner {
  background: #f23e49;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.onca-ad-banner--adsense {
  background: transparent;
  min-height: 0;
}

.onca-adsense-wrap {
  margin-bottom: 24px;
}

.onca-ad-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.onca-ad-980x120 {
  width: 100%;
  height: 120px;
  margin-bottom: 24px;
}

.onca-ad-300x600 {
  width: 100%;
  height: auto;
}

.onca-ad-banner.onca-ad-300x600,
.onca-ad-banner.onca-ad-banner--sidebar {
  display: block;
  height: auto;
  min-height: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  overflow: visible;
}

.onca-ad-banner.onca-ad-300x600 img,
.onca-ad-banner.onca-ad-300x600 .onca-ad-banner__img,
.onca-ad-banner.onca-ad-300x600 .onca-ad-banner__img--natural {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 4px;
}

.onca-ad-930x180 {
  width: 100%;
  height: 180px;
}

.onca-ad-text {
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  font-family: 'Arial Black', Impact, sans-serif;
  line-height: 1;
}

.onca-ad-text-lg {
  font-size: 72px;
}

.onca-ad-text-md {
  font-size: 56px;
}

.onca-ad-text span {
  font-size: 0.5em;
  vertical-align: middle;
}

@media (max-width: 991.98px) {
  .onca-ad-text-lg {
    font-size: 40px;
  }

  .onca-ad-text-md {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .onca-ad-980x120 {
    height: 51px;
    margin-bottom: 16px;
  }

  .onca-ad-930x180 {
    height: 102px;
  }
}

@media (max-width: 575.98px) {
  .onca-contact-page {
    padding: 24px 0 48px;
  }
}


/* ===== ENVIE SUA NOTÍCIA PAGE ===== */
.onca-send-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.onca-send-news__guidelines {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.onca-send-news__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.onca-send-news__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #ff0904;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  line-height: 1.5;
}

.onca-send-news__title {
  font-size: 41px;
  font-weight: 700;
  color: var(--color-custom-primary, #491804);
  line-height: 1.2;
  margin: 0;
}

.onca-send-news__desc {
  font-size: 16px;
  font-weight: 400;
  color: #676767;
  line-height: 1.5;
  margin: 0;
}

.onca-send-news__divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0;
}

.onca-send-news__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.onca-send-news__section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-custom-primary, #491804);
  margin: 0;
  line-height: 1.5;
}

.onca-send-news__section-title--danger {
  color: var(--color-custom-primary, #491804);
}

.onca-send-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.onca-send-news__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #676767;
  line-height: 1.5;
}

.onca-send-news__icon--check {
  color: #32AD36;
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.onca-send-news__icon--danger {
  color: #ff0904;
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.onca-send-news__tips {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.onca-send-news__tips p {
  font-size: 16px;
  font-weight: 400;
  color: #676767;
  line-height: 1.5;
  margin: 0;
}

.onca-send-news__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.onca-send-news__loc {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.onca-send-news__loc-city {
  font-weight: 700;
  font-size: 30px;
  color: var(--color-custom-primary, #491804);
  line-height: 1.2;
  margin: 0;
}

.onca-send-news__loc-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.onca-send-news__loc-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #232323 !important;
  text-decoration: none !important;
  line-height: 1.5;
}

.onca-send-news__loc-info a i {
  width: 20px;
  text-align: center;
  color: var(--color-custom-primary, #491804);
  font-size: 16px;
}

.onca-send-news__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: #32AD36;
  color: #fff !important;
  border-radius: 90px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none !important;
  line-height: 1.5;
  transition: background-color 0.3s ease;
}

.onca-send-news__cta:hover {
  background: #2a9530;
}

.onca-send-news__cta i {
  font-size: 18px;
}

@media (max-width: 991.98px) {
  .onca-send-news {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .onca-send-news__title {
    font-size: 22px;
  }

  .onca-send-news__loc-city {
    font-size: 18px;
  }

  .onca-send-news__guidelines {
    padding: 24px 20px;
  }

  .onca-send-news__loc {
    padding: 24px 20px;
  }

  .onca-send-news__list li,
  .onca-send-news__tips p,
  .onca-send-news__desc {
    font-size: 14px;
  }

  .onca-send-news__section-title {
    font-size: 14px;
  }

  .onca-send-news__loc-info a {
    font-size: 14px;
  }

  .onca-send-news__cta {
    font-size: 14px;
    padding: 14px 20px;
  }

  .onca-send-news {
    margin-bottom: 24px;
  }
}


/* ===== MOBILE NAV DRAWER (Figma 9458:5583) ===== */
.onca-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1080;
  pointer-events: none;
  visibility: hidden;
}

.onca-mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

.onca-mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

.onca-mobile-nav.is-open .onca-mobile-nav__overlay {
  opacity: 1;
}

.onca-mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  max-width: calc(100% - 56px);
  background: #fff;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  overflow: hidden;
}

.onca-mobile-nav.is-open .onca-mobile-nav__panel {
  transform: translateX(0);
}

.onca-mobile-nav__stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #491804;
  z-index: 2;
}

.onca-mobile-nav__content {
  position: relative;
  z-index: 3;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.onca-mobile-nav__search {
  position: relative;
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
}

.onca-mobile-nav__search-input {
  width: 100%;
  height: 56px;
  border: 1px solid #a4a4a4;
  border-radius: 64px;
  padding: 0 48px 0 16px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #232323;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.onca-mobile-nav__search-input:focus {
  border-color: #491804;
}

.onca-mobile-nav__search-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: #491804;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.onca-mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 246px;
  max-width: 100%;
  flex-shrink: 0;
}

.onca-mobile-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
}

.onca-mobile-nav__group {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid #c3bbb8;
  padding: 8px 0;
}

.onca-mobile-nav__group:first-child {
  padding-top: 0;
}

.onca-mobile-nav__group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 12px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-custom-primary, #008001);
  -webkit-tap-highlight-color: transparent;
}

.onca-mobile-nav__group-toggle i {
  font-size: 14px;
  color: #676767;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.onca-mobile-nav__group.is-open .onca-mobile-nav__group-toggle i {
  transform: rotate(180deg);
}

.onca-mobile-nav__group-panel {
  display: none;
  padding: 4px 0 8px;
}

.onca-mobile-nav__group.is-open .onca-mobile-nav__group-panel {
  display: block;
}

.onca-mobile-nav__group-title {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-custom-primary, #008001);
}

.onca-mobile-nav__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.onca-mobile-nav__sublist li {
  list-style: none;
}

.onca-mobile-nav__sublink {
  display: block;
  padding: 10px 0;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #232323 !important;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
}

.onca-mobile-nav__sublink:hover,
.onca-mobile-nav__sublink:focus {
  color: var(--color-custom-primary, #008001) !important;
}

.onca-mobile-nav__link {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #232323 !important;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0;
}

.onca-mobile-nav__link:hover,
.onca-mobile-nav__link:focus {
  color: #232323 !important;
}

.onca-mobile-nav__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: #c3bbb8;
  border: 0;
}

.onca-mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 90px;
  background: #32ad36;
  color: #fff !important;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none !important;
  text-align: center;
  box-sizing: border-box;
  flex-shrink: 0;
}

.onca-mobile-nav__cta:hover {
  background: #2a9530;
  color: #fff !important;
}

body.onca-mobile-nav-open {
  overflow: hidden;
}

@media (min-width: 992px) {
  .onca-mobile-nav {
    display: none;
  }
}

/* ===== APCS HEADER/FOOTER - FIGMA ===== */
.apcs-site-header,
.apcs-footer {
  font-family: "Archivo", "Sora", sans-serif;
  color: #fff;
}
.apcs-site-header {
  position: relative;
  z-index: 1030;
  overflow: visible;
}
.apcs-header-container,
.apcs-footer-container {
  max-width: 1296px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
.apcs-header-container {
  width: calc(100% - 144px);
  height: 100%;
  align-items: center;
  overflow: visible;
}
.apcs-desktop-header {
  background: #e5e5e5;
  overflow: visible;
}
.apcs-topbar {
  height: 56px;
  background: var(--color-custom-primary-dark, #003800);
}
.apcs-topbar .apcs-header-container {
  justify-content: space-between;
}
.apcs-topbar-date,
.apcs-topbar-contacts a {
  color: #fff !important;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none !important;
  opacity: 0.8;
}
.apcs-topbar-date {
  font-size: 16px;
}
.apcs-topbar-contacts {
  display: flex;
  gap: 32px;
}
.apcs-topbar-contacts a,
.apcs-menu-item,
.apcs-header-actions,
.apcs-associate-btn,
.apcs-search-form__open,
.apcs-search-form__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.apcs-topbar-contacts a {
  font-size: 14px;
  white-space: nowrap;
}
.apcs-mainbar {
  height: 109px;
  background: var(--color-custom-primary, #008001);
  overflow: visible;
}
.apcs-mainbar .apcs-header-container {
  justify-content: flex-end;
  gap: 24px;
  padding-left: 240px;
}
.apcs-header-logo {
  position: absolute;
  left: 0;
  top: 11px;
  z-index: 2;
}
.apcs-header-logo,
.apcs-header-logo img {
  width: 148px;
  height: 148px;
  object-fit: contain;
}
.apcs-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-width: 0;
  overflow: visible;
}
.apcs-menu-item {
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
}
.apcs-menu-item i {
  font-size: 12px;
}
.apcs-menu-item:hover,
.apcs-menu-item.active {
  opacity: 0.86;
}
.apcs-menu-dropdown {
  position: relative;
  overflow: visible;
}
.apcs-menu-item--toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  color: #fff !important;
}
.apcs-menu-item--toggle i {
  transition: transform 0.2s ease;
}
.apcs-menu-dropdown.is-open .apcs-menu-item--toggle i {
  transform: rotate(180deg);
}
.apcs-menu-dropdown__panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  margin-top: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  padding: 8px 0;
  z-index: 1200;
}
.apcs-menu-dropdown.is-open .apcs-menu-dropdown__panel {
  display: block;
}
@media (min-width: 992px) {
  .apcs-menu-dropdown:hover .apcs-menu-item--toggle i {
    transform: rotate(180deg);
  }
  .apcs-menu-dropdown:hover .apcs-menu-dropdown__panel {
    display: block;
  }
  .apcs-menu-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
  }
}
.apcs-menu-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.apcs-menu-dropdown__list li {
  list-style: none;
}
.apcs-menu-dropdown__link {
  display: block;
  padding: 10px 20px;
  color: #232323 !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: none;
  text-decoration: none !important;
  white-space: nowrap;
}
.apcs-menu-dropdown__link:hover,
.apcs-menu-dropdown__link:focus,
.apcs-menu-dropdown__link.active {
  background: #f3f3f3;
  color: var(--color-custom-primary, #008001) !important;
}
.apcs-header-actions {
  gap: 24px;
  flex-shrink: 0;
}
.apcs-search-form {
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.apcs-search-form__open {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.apcs-search-form__panel {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 848px;
}
.apcs-search-form__panel[hidden] {
  display: none !important;
}
.apcs-search-form__panel:not([hidden]) {
  display: flex;
}
.apcs-search-form__field {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  max-width: 800px;
  height: 48px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid #fff;
  border-radius: 8px;
  box-sizing: border-box;
  cursor: text;
  clip-path: inset(0 100% 0 0 round 8px);
  transition: clip-path 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
}
.apcs-search-form__field i {
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.apcs-search-form__field input {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: #fff;
  font-family: "Archivo", "Sora", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  opacity: 1;
  pointer-events: auto;
}
.apcs-search-form__field input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.apcs-search-form__field input:focus {
  outline: none;
}
.apcs-search-form__close {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity 0.22s ease 0.14s, transform 0.22s ease 0.14s;
}
@media (min-width: 992px) {
  .apcs-menu {
    flex: 1 1 auto;
    min-width: 0;
    transition: opacity 0.18s ease, visibility 0.18s ease;
  }
  .apcs-mainbar.is-search-open .apcs-menu,
  .apcs-mainbar.is-search-closing .apcs-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    overflow: hidden;
  }
}
.apcs-mainbar.is-search-open .apcs-header-actions,
.apcs-mainbar.is-search-closing .apcs-header-actions {
  flex: 1 1 auto;
  min-width: 0;
}
.apcs-mainbar.is-search-open .apcs-search-form,
.apcs-mainbar.is-search-closing .apcs-search-form {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.apcs-mainbar.is-search-open .apcs-search-form__open,
.apcs-mainbar.is-search-closing .apcs-search-form__open {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  visibility: hidden;
  position: absolute;
}
.apcs-mainbar.is-search-open .apcs-search-form__field {
  clip-path: inset(0 0 0 0 round 8px);
}
.apcs-mainbar.is-search-open .apcs-search-form__close {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.apcs-mainbar.is-search-closing .apcs-search-form__close {
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
@media (prefers-reduced-motion: reduce) {
  .apcs-menu,
  .apcs-search-form__open,
  .apcs-search-form__field,
  .apcs-search-form__close {
    transition: none !important;
  }
  .apcs-mainbar.is-search-open .apcs-search-form__field {
    clip-path: inset(0 0 0 0 round 8px);
  }
}
.apcs-associate-btn {
  min-height: 56px;
  padding: 10px 24px;
  border-radius: 12px;
  background: #fff;
  color: #1b1b1b !important;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none !important;
  white-space: nowrap;
}
.apcs-associate-btn i {
  font-size: 18px;
}
.apcs-associate-btn:hover {
  background: #f5f5f5;
  color: #1b1b1b !important;
}
.apcs-footer-main {
  background: #0b2a1a;
  padding: 64px 72px;
}
.apcs-footer-container {
  gap: 24px;
  align-items: flex-start;
}
.apcs-footer-institutional {
  width: 416px;
  flex: 0 0 416px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.apcs-footer-logo,
.apcs-footer-logo img {
  width: 202px;
  height: 202px;
  object-fit: contain;
}
.apcs-footer-phones,
.apcs-footer-phones a,
.apcs-footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
}
.apcs-footer-phones {
  gap: 32px;
}
.apcs-footer-phones a,
.apcs-footer-address {
  color: #fff !important;
  font-size: 14px;
  line-height: normal;
  text-decoration: none !important;
}
.apcs-footer-phones i,
.apcs-footer-address i {
  width: 16px;
  flex: 0 0 16px;
  color: var(--color-custom-primary, #008001);
  font-size: 16px;
  text-align: center;
}
.apcs-footer-address {
  align-items: flex-start;
  max-width: 416px;
}
.apcs-footer-address span {
  max-width: 392px;
}
.apcs-footer-cols {
  display: contents;
}
.apcs-footer-col {
  width: 196px;
  flex: 0 0 196px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apcs-footer-col h4 {
  margin: 0;
  color: #ebeb00;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.apcs-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apcs-footer-col li {
  list-style: none;
}
.apcs-footer-col li::marker {
  content: none;
}
.apcs-footer-col a {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none !important;
  white-space: nowrap;
}
.apcs-footer-col a:hover {
  color: #fff !important;
}
.apcs-footer-copyright {
  background: var(--color-custom-primary, #008001);
  min-height: 56px;
}
.apcs-footer-copyright-container {
  width: calc(100% - 138px);
  max-width: 1299px;
  min-height: 56px;
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.apcs-footer-copyright span {
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}
.apcs-footer-copyright__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none !important;
}
.apcs-footer-copyright__brand:hover {
  opacity: 0.88;
}
.apcs-footer-copyright img {
  display: block;
  height: 18px;
  width: auto;
  max-width: 177px;
}
@media (max-width: 1320px) {
  .apcs-header-container {
    width: calc(100% - 48px);
  }
  .apcs-mainbar .apcs-header-container {
    gap: 18px;
    padding-left: 170px;
  }
  .apcs-menu {
    gap: 16px;
  }
  .apcs-menu-item,
  .apcs-associate-btn,
  .apcs-footer-col a,
  .apcs-footer-copyright span {
    font-size: 14px;
  }
  .apcs-footer-main {
    padding-left: 24px;
    padding-right: 24px;
  }
  .apcs-footer-container {
    gap: 18px;
  }
  .apcs-footer-institutional {
    width: 320px;
    flex-basis: 320px;
  }
  .apcs-footer-col {
    width: 170px;
    flex-basis: 170px;
  }
  .apcs-footer-col h4 {
    font-size: 21px;
  }
}
@media (max-width: 991.98px) {
  /* Header sempre fixo no topo no mobile */
  .mobile-sticky-anchor {
    
  }
  .mobile-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
  }
  /* Header mobile — faixa verde 69px; sem fundo branco abaixo (logo sobrepõe o conteúdo) */
  .header-mobile {
    background: transparent;
    border-bottom: 0;
    height: 128px;
  }
  .header-mobile .container {
    height: 69px;
    padding-top: 0;
    padding-bottom: 0;
    background: var(--color-custom-primary, #008001);
  }
  .header-mobile-bar {
    position: relative;
    height: 69px;
  }
  .header-mobile-menu,
  .header-mobile-user {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
  }
  .header-mobile-logo {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    flex: 0 0 auto;
    padding: 0;
    z-index: 3;
  }
  .header-mobile-logo img {
    width: 120px;
    height: 120px;
    max-height: none;
  }
  .onca-mobile-nav__stripe,
  .onca-mobile-nav__cta {
    background: var(--color-custom-primary, #008001);
  }
  .onca-mobile-nav__search-input:focus,
  .onca-mobile-nav__search-btn {
    border-color: var(--color-custom-primary, #008001);
    color: var(--color-custom-primary, #008001);
  }
  /* Footer mobile — Figma: logo + contatos centralizados, links em 2 colunas */
  .apcs-footer-main {
    padding: 32px 16px;
  }
  .apcs-footer-container {
    max-width: 328px;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .apcs-footer-institutional {
    width: 100%;
    flex-basis: auto;
    align-items: center;
    gap: 12px;
  }
  .apcs-footer-logo,
  .apcs-footer-logo img {
    width: 190px;
    height: 190px;
  }
  .apcs-footer-phones {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .apcs-footer-phones a,
  .apcs-footer-address {
    width: 100%;
    justify-content: flex-start;
    font-size: 12px;
  }
  .apcs-footer-address {
    align-items: flex-start;
  }
  .apcs-footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    column-gap: 24px;
    row-gap: 24px;
    width: 100%;
  }
  .apcs-footer-col {
    width: 100%;
    flex-basis: auto;
    gap: 6px;
  }
  .apcs-footer-col h4 {
    font-size: 18px;
    color: #ffff01;
  }
  .apcs-footer-col ul {
    gap: 6px;
  }
  .apcs-footer-col a {
    font-size: 14px;
    white-space: normal;
  }
  .apcs-footer-copyright span {
    font-size: 14px;
    white-space: normal;
  }
  .apcs-footer-copyright-container {
    width: calc(100% - 24px);
    min-height: 116px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }
}
/* ===== APCS HOME - FIGMA ===== */
.apcs-home {
  font-family: "Archivo", "Sora", sans-serif;
  background: #f3f3f3;
  color: #1b1b1b;
}
.apcs-home :where(h1, h2, h3, h4, h5, h6, a, p, span, strong, small, em) {
  font-family: "Archivo", "Sora", sans-serif !important;
}
.apcs-home-container {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
  box-sizing: border-box;
}
.apcs-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  padding: 64px 0 48px;
}
.apcs-hero-main {
  height: 540px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  color: #fff !important;
  text-decoration: none !important;
}
.apcs-hero-main img,
.apcs-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.apcs-hero-main img {
  display: block;
  margin: 0;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.apcs-hero-shade {
  display: block;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.08) 35%,
    rgba(0, 0, 0, 0.55) 68%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 1;
}
.apcs-hero-main > *:not(img):not(.apcs-hero-shade) {
  position: relative;
  z-index: 2;
}
.apcs-hero-main .apcs-meta {
  color: #fff !important;
}
.apcs-hero-main .apcs-meta i {
  background: #fff;
}
.apcs-hero-main strong {
  font-size: 48px;
  line-height: 1.2;
}
.apcs-hero-main small {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.85;
}
.apcs-hero-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apcs-mini-post {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #1b1b1b !important;
  text-decoration: none !important;
}
.apcs-mini-post img {
  object-fit: cover;
  border-radius: 8px;
}
@media (min-width: 992px) {
  .apcs-mini-post img {
    width: 160px;
    height: 88px;
    flex-shrink: 0;
  }
}
.apcs-mini-post span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  line-height: 1.2;
}
.apcs-mini-post__title {
  font-weight: 700;
}
.apcs-mini-post em,
.apcs-meta {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-custom-primary, #008001);
  line-height: 1.5;
}
.apcs-meta i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  margin: 0 8px;
}
.apcs-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.apcs-services a {
  background: var(--color-custom-primary, #008001);
  border-radius: 16px;
  color: #fff !important;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}
.apcs-services i {
  font-size: 48px;
  color: #ebeb00;
}
.apcs-services strong {
  font-size: 18px;
  line-height: 1.2;
}
.apcs-news-layout {
  display: grid;
  grid-template-columns: 1fr 306px;
  gap: 24px;
  margin-bottom: 80px;
}
.apcs-news-main h2,
.apcs-join h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 24px;
}
.apcs-news-row {
  display: flex;
  gap: 24px;
  align-items: center;
  color: #232323 !important;
  text-decoration: none !important;
  margin-bottom: 24px;
}
.apcs-news-row img {
  width: 306px;
  height: 184px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.apcs-news-row span {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.apcs-news-row strong {
  font-size: 24px;
  line-height: 1.2;
}
.apcs-news-row small,
.apcs-join p {
  font-size: 14px;
  line-height: 1.5;
  color: #676767;
}
.apcs-more-btn,
.apcs-join a {
  height: 56px;
  border-radius: 12px;
  background: var(--color-custom-primary, #008001);
  color: #fff !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
}
.apcs-more-btn {
  width: 100%;
}
.apcs-home-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.apcs-home-sidebar > div {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.apcs-home-sidebar h3 {
  background: var(--color-custom-primary, #008001);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  padding: 16px;
}
.apcs-home-sidebar a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 16px;
  color: #1b1b1b !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.apcs-home-sidebar em {
  font-style: normal;
  color: var(--color-custom-primary, #008001);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}
.apcs-sidebar-more {
  border: 1px solid var(--color-custom-primary, #008001);
  border-radius: 8px;
  align-items: center !important;
  color: var(--color-custom-primary, #008001) !important;
}
.apcs-join {
  display: grid;
  grid-template-columns: 1fr 636px;
  gap: 134px;
  align-items: center;
  margin-bottom: 80px;
}
.apcs-join p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.apcs-join img {
  width: 100%;
  height: 416px;
  object-fit: cover;
  border-radius: 32px;
}
@media (max-width: 1320px) {
  .apcs-home-container {
    width: calc(100% - 48px);
  }
  .apcs-hero-main strong,
  .apcs-news-main h2,
  .apcs-join h2 {
    font-size: 40px;
  }
  .apcs-join {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
@media (max-width: 991.98px) {
  .apcs-home-container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .apcs-hero,
  .apcs-news-layout,
  .apcs-join {
    grid-template-columns: 1fr;
  }
  .apcs-hero {
    padding-top: 32px;
  }
  .apcs-hero-main {
    height: 420px;
    padding: 24px;
  }
  .apcs-hero-main strong,
  .apcs-news-main h2,
  .apcs-join h2 {
    font-size: 32px;
  }
  .apcs-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 48px;
  }
  .apcs-services a {
    width: 100%;
    min-height: 120px;
    justify-content: center;
    padding: 20px 16px;
    box-sizing: border-box;
  }
  .apcs-services a:first-child {
    grid-column: 1 / -1;
  }
  .apcs-services i {
    font-size: 40px;
  }
  .apcs-services strong {
    font-size: 16px;
  }
  .apcs-mini-post img {
    width: 135px;
    height: 74px;
    min-width: 135px;
    max-width: 135px;
    flex: 0 0 135px;
    object-fit: cover;
    border-radius: 8px;
  }
  .apcs-mini-post {
    gap: 12px;
  }
  .apcs-mini-post em {
    font-size: 11px;
  }
  .apcs-mini-post__title,
  .apcs-news-card--grid strong,
  .apcs-hero-main strong {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .apcs-mini-post__title {
    font-size: 15px;
  }
  .apcs-hero-main small {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .apcs-join {
    gap: 24px;
  }
  .apcs-join img {
    height: 260px;
    order: -1;
  }
}
/* ===== APCS INSTITUCIONAL - FIGMA ===== */
.apcs-page {
  font-family: "Archivo", "Sora", sans-serif;
  background: #f3f3f3;
  color: #1b1b1b;
}
.apcs-page :where(h1, h2, h3, p, span, strong, small, em, a) {
  font-family: "Archivo", "Sora", sans-serif !important;
}
.apcs-institutional-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 64px 0 80px;
}
.apcs-institutional-hero h1 {
  color: var(--color-custom-primary, #008001);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}
.apcs-institutional-hero p,
.apcs-values p {
  color: #676767;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 16px;
}
.apcs-institutional-hero img {
  width: 100%;
  height: 725px;
  object-fit: cover;
  border-radius: 24px;
}
.apcs-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.apcs-values article {
  min-height: 482px;
  background: #fff;
  border: 1px solid rgba(221, 221, 221, 0.87);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apcs-values i {
  font-size: 64px;
  color: var(--color-custom-primary, #008001);
  margin-bottom: 16px;
}
.apcs-values h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #1b1b1b;
}
@media (max-width: 991.98px) {
  .apcs-institutional .apcs-institutional-hero,
  .apcs-institutional .apcs-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .apcs-institutional .apcs-home-container.apcs-institutional-hero {
    width: 100%;
    max-width: none;
    padding: 48px 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }

  .apcs-institutional .apcs-institutional-hero h1 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
  }

  .apcs-institutional .apcs-institutional-hero p {
    color: #1b1b1b;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 16px;
  }

  .apcs-institutional .apcs-institutional-hero p:last-child {
    margin-bottom: 0;
  }

  .apcs-institutional .apcs-institutional-hero img {
    order: 0;
    width: 100%;
    height: 240px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
  }

  .apcs-institutional .apcs-home-container.apcs-values {
    width: 100%;
    max-width: none;
    padding: 0 16px 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
  }

  .apcs-institutional .apcs-values article {
    min-height: 0;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .apcs-institutional .apcs-values i {
    font-size: 64px;
    margin: 0 0 20px;
    line-height: 1;
  }

  .apcs-institutional .apcs-values h2 {
    font-size: 24px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0 0 12px;
  }

  .apcs-institutional .apcs-values p {
    color: #1b1b1b;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
  }
}
/* ===== APCS CARTA AOS ASSOCIADOS - FIGMA ===== */
.apcs-letter-content {
  max-width: 1076px;
  padding: 64px 0 80px;
}
.apcs-letter-content h1 {
  color: var(--color-custom-primary, #008001);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px;
}
.apcs-letter-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #1b1b1b;
  font-size: 16px;
  line-height: 1.5;
}
.apcs-letter-body :where(p, blockquote) {
  margin: 0;
}
.apcs-letter-body p:first-of-type strong {
  font-weight: 700;
  color: #1b1b1b;
}
.apcs-letter-body .apcs-letter-quote,
.apcs-letter-body blockquote {
  border-left: 4px solid var(--color-custom-primary, #008001);
  padding: 24px 24px 24px 32px;
  color: #4b4b4b;
  background: #f3f3f3;
}
.apcs-letter-body .apcs-letter-signature {
  text-align: right;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .apcs-letter-content {
    padding: 32px 20px 48px;
  }
  .apcs-letter-content h1 {
    font-size: 36px;
  }
}
/* ===== APCS ESTATUTO SOCIAL - FIGMA ===== */
.apcs-statute-layout {
  display: block;
  max-width: 1076px;
  padding: 64px 0 80px;
}
.apcs-statute-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}
.apcs-statute-main > h1,
.apcs-statute-layout > h1 {
  color: var(--color-custom-primary, #008001);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.apcs-statute-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #232323;
  font-size: 16px;
  line-height: 1.5;
}
.apcs-statute-chapter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-margin-top: 180px;
}
.apcs-statute-chapter-title {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0;
}
.apcs-statute-chapter-bar {
  width: 2px;
  height: 24px;
  background: var(--color-custom-primary, #008001);
  flex-shrink: 0;
}
.apcs-statute-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apcs-statute-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-custom-primary, #008001);
  margin: 0;
  line-height: 1.5;
}
.apcs-statute-chapter :where(p, ul, ol) {
  margin: 0;
}
.apcs-statute-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  font-size: 14px;
  line-height: 1.5;
  color: #676767;
}
.apcs-statute-signatures {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.apcs-statute-signatures strong {
  display: block;
  color: #1b1b1b;
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .apcs-statute-layout {
    padding: 32px 20px 48px;
  }
  .apcs-statute-main > h1 {
    font-size: 36px;
  }
  .apcs-statute-chapter {
    scroll-margin-top: 120px;
  }
}
/* ===== APCS PLANO DE SAÚDE - FIGMA ===== */
.apcs-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 306px;
  gap: 24px;
  padding: 64px 0 80px;
  align-items: start;
}
.apcs-service-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}
.apcs-service-header h1 {
  color: var(--color-custom-primary, #008001);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.apcs-service-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #4b4b4b;
  font-size: 14px;
  line-height: 1.7;
}
.apcs-service-lead {
  font-size: 16px;
  line-height: 1.5;
  color: #313131;
  opacity: 0.9;
  margin: 0;
}
.apcs-service-banner {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}
.apcs-service-banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.apcs-viva-max-plan .apcs-service-banner {
  display: block;
  width: 100%;
}
.apcs-viva-max-plan .apcs-service-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 767.98px) {
  .apcs-dental-plan.apcs-page .apcs-home-container.apcs-service-layout {
    width: 100%;
    max-width: none;
    padding: 44px 0 48px;
  }

  .apcs-dental-plan .apcs-service-main {
    gap: 0;
  }

  .apcs-dental-plan .apcs-service-header {
    padding: 0 20px;
    margin-bottom: 8px;
  }

  .apcs-dental-plan .apcs-service-header h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .apcs-dental-plan .apcs-service-body {
    gap: 0;
    width: 100%;
  }

  .apcs-dental-plan .apcs-service-lead {
    padding: 0 20px 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .apcs-dental-plan .apcs-service-banner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .apcs-dental-plan .apcs-service-banner img {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
  }

  .apcs-dental-plan .apcs-service-body .apcs-service-banner:first-of-type img {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .apcs-dental-plan .apcs-service-body .apcs-service-banner:last-of-type img {
    height: clamp(240px, 86vw, 310px);
  }

  .apcs-dental-plan .apcs-service-contact {
    padding: 32px 20px 0;
    margin-top: 32px;
    gap: 12px;
  }

  .apcs-dental-plan .apcs-service-contact header h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .apcs-dental-plan .apcs-service-contact header p {
    font-size: 14px;
    line-height: 1.5;
    color: #676767;
  }

  .apcs-dental-plan .apcs-service-form-card {
    padding: 20px;
    border-radius: 12px;
  }

  .apcs-dental-plan .apcs-service-sidebar {
    margin: 32px 16px 0;
  }
}

.apcs-service-carencia {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apcs-service-carencia-title {
  font-size: 14px;
  font-weight: 700;
  color: #4b4b4b;
  margin: 0 0 8px;
}
.apcs-service-carencia :where(p, ul) {
  margin: 0;
}
.apcs-service-carencia ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apcs-service-sidebar {
  background: #fff;
  border: 1px solid rgba(221, 221, 221, 0.87);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 24px;
}
.apcs-service-sidebar h2 {
  background: var(--color-custom-primary, #008001);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  padding: 16px;
}
.apcs-service-sidebar nav {
  padding: 16px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apcs-service-sidebar a {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  border: 1px solid var(--color-custom-primary, #008001);
  border-radius: 12px;
  color: var(--color-custom-primary, #008001) !important;
  text-decoration: none !important;
  font-size: 16px;
  line-height: 1.5;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.apcs-service-sidebar a:hover,
.apcs-service-sidebar a:focus-visible {
  background: var(--color-custom-primary, #008001);
  border-color: var(--color-custom-primary, #008001);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 128, 1, 0.22);
  transform: translateY(-2px);
}
.apcs-service-sidebar a:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 128, 1, 0.18);
}
.apcs-service-sidebar a i {
  font-size: 18px;
  width: 24px;
  text-align: center;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}
.apcs-service-sidebar a:hover i,
.apcs-service-sidebar a:focus-visible i {
  color: #fff;
  transform: scale(1.1);
}
.apcs-service-contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.apcs-service-contact header h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0 0 12px;
}
.apcs-service-contact header p {
  font-size: 16px;
  line-height: 1.5;
  color: #676767;
  margin: 0;
}
.apcs-service-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.05);
  padding: 40px;
}
.apcs-service-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apcs-service-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apcs-service-field label {
  font-size: 14px;
  font-weight: 700;
  color: #1b1b1b;
}
.apcs-service-field :where(input, textarea, select) {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1b1b1b;
  background: #fff;
}
.apcs-service-field textarea {
  min-height: 120px;
  resize: vertical;
}
.apcs-service-submit {
  height: 56px;
  border: 0;
  border-radius: 8px;
  background: var(--color-custom-primary, #008001);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.apcs-service-alert {
  margin: 0;
}
@media (max-width: 991.98px) {
  .apcs-service-layout {
    grid-template-columns: 1fr;
    padding: 32px 0 48px;
  }
  .apcs-legal-assistance .apcs-service-layout {
    padding: 32px 20px 48px;
  }
  .apcs-health-plan .apcs-service-layout {
    padding: 32px 20px 48px;
  }
  .apcs-viva-max-plan .apcs-service-layout {
    padding: 32px 20px 48px;
  }
  .apcs-service-header h1 {
    font-size: 36px;
  }
  .apcs-service-sidebar {
    position: static;
    margin-top: 8px;
  }
  .apcs-service-contact header h2 {
    font-size: 32px;
  }
  .apcs-service-form-card {
    padding: 24px;
  }
}
/* ===== APCS ASSISTÊNCIA JURÍDICA - FIGMA ===== */
.apcs-legal-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.05);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apcs-legal-card__seal {
  margin: 0;
  width: 159px;
}
.apcs-legal-card__seal img {
  display: block;
  width: 159px;
  height: auto;
}
.apcs-legal-card__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #676767;
  font-size: 16px;
  line-height: 1.5;
}
.apcs-legal-card__text p {
  margin: 0 0 8px;
}
.apcs-team-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.apcs-team-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.apcs-team-header h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0;
}
.apcs-team-header p {
  font-size: 16px;
  line-height: 1.5;
  color: #4b4b4b;
  margin: 0;
  max-width: 760px;
}
.apcs-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.apcs-team-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 6px 9px rgba(0, 0, 0, 0.05);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  min-height: 100%;
}
.apcs-team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 48px;
  background: #eaeaea;
  display: block;
}
.apcs-team-card__avatar--photo {
  overflow: hidden;
  background: #eaeaea;
}
.apcs-team-card__avatar--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apcs-team-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0;
}
.apcs-team-card__id {
  font-size: 14px;
  line-height: 1.5;
  color: #676767;
  margin: 0;
}
.apcs-team-card__desc {
  font-size: 16px;
  line-height: 1.5;
  color: #4b4b4b;
  margin: 0;
}
@media (max-width: 991.98px) {
  .apcs-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apcs-legal-card {
    padding: 24px;
  }
}
@media (max-width: 575.98px) {
  .apcs-team-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== APCS FILIE-SE - FIGMA ===== */
.apcs-filie-se {
  background: #f3f3f3;
  padding: 48px 0 80px;
}
.apcs-filie-se__container {
  width: 100%;
  max-width: 1296px;
  padding-left: 72px;
  padding-right: 72px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.apcs-filie-se__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 348px;
  border-radius: 32px;
  overflow: hidden;
  padding: 80px 24px;
  text-align: center;
}
.apcs-filie-se__hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.apcs-filie-se__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apcs-filie-se__hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 56, 0, 0.7);
}
.apcs-filie-se__hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  color: #fff;
}
.apcs-filie-se__hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.apcs-filie-se__hero-content p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}
.apcs-filie-se__section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apcs-filie-se__section-head--center {
  text-align: center;
  align-items: center;
}
.apcs-filie-se__section-head h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-custom-primary, #008001);
  margin: 0;
}
.apcs-filie-se__section-head p {
  font-size: 16px;
  line-height: 1.5;
  color: #4b4b4b;
  margin: 0;
  max-width: 936px;
}
.apcs-filie-se__benefits {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.apcs-filie-se__benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.apcs-filie-se__benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 164px;
}
.apcs-filie-se__benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-custom-primary, #008001);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.apcs-filie-se__benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-custom-primary, #008001);
  margin: 0;
}
.apcs-filie-se__benefit-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #4b4b4b;
  margin: 0;
}
.apcs-filie-se__legal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.05);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apcs-filie-se__legal h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-custom-primary, #008001);
  text-align: center;
  margin: 0;
}
.apcs-filie-se__legal-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #676767;
  font-size: 16px;
  line-height: 1.5;
}
.apcs-filie-se__legal-text p {
  margin: 0 0 8px;
}
.apcs-filie-se__form-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.apcs-filie-se__alert {
  margin: 0;
}
.apcs-filie-se__form-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.apcs-filie-se__form-section-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apcs-filie-se__form-section-block fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.apcs-filie-se__form-section-block h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-custom-primary, #008001);
  margin: 0;
}
.apcs-filie-se__row {
  display: grid;
  gap: 24px;
}
.apcs-filie-se__row--2 {
  grid-template-columns: repeat(2, 1fr);
}
.apcs-filie-se__row--3 {
  grid-template-columns: repeat(3, 1fr);
}
.apcs-filie-se__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.apcs-filie-se__field--full {
  width: 100%;
}
.apcs-filie-se__field--half {
  max-width: calc(50% - 12px);
}
.apcs-filie-se__field--span-2 {
  grid-column: span 2;
}
.apcs-filie-se__field > label,
.apcs-filie-se__field legend,
.apcs-filie-se__table-label {
  font-size: 14px;
  font-weight: 700;
  color: #4b4b4b;
  margin: 0;
  padding: 0;
  border: 0;
}
.apcs-filie-se__field > label span,
.apcs-filie-se__field legend span {
  color: #fe0000;
}
.apcs-filie-se__field
  :where(input:not([type="radio"]):not([type="checkbox"]), select, textarea) {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: #1b1b1b;
  background: #f3f3f3;
  appearance: none;
}
.apcs-filie-se__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234b4b4b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}
.apcs-filie-se__field textarea {
  min-height: 160px;
  resize: vertical;
}
.apcs-filie-se__field :where(input, select, textarea)::placeholder {
  color: #a4a4a4;
}
.apcs-filie-se__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 6px;
}
.apcs-filie-se__radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #4b4b4b;
  cursor: pointer;
  margin: 0;
}
.apcs-filie-se__radio span {
  font-weight: 400;
  color: #4b4b4b;
}
.apcs-filie-se__radio input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: #fff;
  accent-color: var(--color-custom-primary, #008001);
  flex-shrink: 0;
  cursor: pointer;
}
.apcs-filie-se__table-label {
  font-size: 14px;
  font-weight: 700;
  color: #4b4b4b;
  margin: 0;
}
.apcs-filie-se__plans-table {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f3f3;
}
.apcs-filie-se__plans-head,
.apcs-filie-se__plans-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
}
.apcs-filie-se__plans-head {
  font-size: 14px;
  font-weight: 700;
  color: #4b4b4b;
  background: #f3f3f3;
}
.apcs-filie-se__plans-row {
  font-size: 16px;
  color: #4b4b4b;
  border-top: 1px solid #ddd;
  background: #fff;
}
.apcs-filie-se__plans-head span:not(:first-child),
.apcs-filie-se__plans-row span:not(:first-child) {
  text-align: center;
}
.apcs-filie-se__plan-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
}
.apcs-filie-se__plan-radio input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: #fff;
  accent-color: var(--color-custom-primary, #008001);
  cursor: pointer;
}
.apcs-filie-se__form-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
}
.apcs-filie-se__submit {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 12px;
  background: var(--color-custom-primary, #008001);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.apcs-filie-se__form-footer p {
  font-size: 14px;
  line-height: 1.5;
  color: #4b4b4b;
  text-align: center;
  margin: 0;
}
.apcs-filie-se__captcha {
  width: 100%;
}
@media (max-width: 1320px) {
  .apcs-filie-se__container {
    padding-left: 48px;
    padding-right: 48px;
  }
  .apcs-filie-se__hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 991.98px) {
  .apcs-filie-se {
    padding: 32px 0 48px;
  }
  .apcs-filie-se__container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    gap: 48px;
  }
  .apcs-filie-se__hero {
    min-height: 280px;
    padding: 48px 24px;
    border-radius: 24px;
  }
  .apcs-filie-se__hero-content h1 {
    font-size: 36px;
  }
  .apcs-filie-se__hero-content p {
    font-size: 18px;
  }
  .apcs-filie-se__section-head h2 {
    font-size: 32px;
  }
  .apcs-filie-se__benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apcs-filie-se__form-card {
    padding: 24px;
  }
  .apcs-filie-se__row--3,
  .apcs-filie-se__row--2 {
    grid-template-columns: 1fr;
  }
  .apcs-filie-se__field--span-2 {
    grid-column: auto;
  }
  .apcs-filie-se__field--half {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .apcs-filie-se__benefits-grid {
    grid-template-columns: 1fr;
  }
  .apcs-filie-se__legal {
    padding: 24px;
  }
  .apcs-filie-se__legal h2 {
    font-size: 24px;
  }
}
/* ===== APCS FALE CONOSCO - FIGMA ===== */
.apcs-contact-page {
  background: #f3f3f3;
  padding: 54px 0 80px;
}
.apcs-contact-page__container {
  width: 100%;
  max-width: 1296px;
  padding-left: 72px;
  padding-right: 72px;
  box-sizing: border-box;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.apcs-contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.apcs-contact-card__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-custom-primary, #008001);
  margin: 0;
}
.apcs-contact-alert {
  margin: 0;
}
.apcs-contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.apcs-contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.apcs-contact-field > label {
  font-size: 14px;
  font-weight: 700;
  color: #313131;
  margin: 0;
}
.apcs-contact-field > label span {
  color: #fe0000;
}
.apcs-contact-field
  :where(input:not([type="checkbox"]):not([type="file"]), select, textarea) {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: #1b1b1b;
  background: #f3f3f3;
}
.apcs-contact-field textarea {
  min-height: 140px;
  resize: vertical;
}
.apcs-contact-field :where(input, select, textarea)::placeholder {
  color: #a4a4a4;
}
.apcs-contact-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apcs-contact-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #4b4b4b;
  margin: 0;
  cursor: pointer;
}
.apcs-contact-checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-custom-primary, #008001);
}
.apcs-contact-submit {
  align-self: flex-start;
  border: 0;
  border-radius: 8px;
  background: var(--color-custom-primary, #008001);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 14px 32px;
  cursor: pointer;
}
.apcs-contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.apcs-contact-info-item--address {
  align-items: flex-start;
}
.apcs-contact-info-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-custom-primary, #008001);
  font-size: 16px;
  flex-shrink: 0;
}
.apcs-contact-info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-custom-primary, #008001);
}
.apcs-contact-info-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4b4b4b;
}
.apcs-contact-divider {
  border: 0;
  border-top: 1px solid #eaeaea;
  margin: 0;
  width: 100%;
}
.apcs-contact-map {
  flex: 1 1 auto;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: #eaeaea;
}
.apcs-contact-map iframe,
.apcs-contact-map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  object-fit: cover;
}
.apcs-contact-card--info {
  min-height: 717px;
}
.apcs-contact-captcha {
  width: 100%;
}
@media (max-width: 1320px) {
  .apcs-contact-page__container {
    padding-left: 48px;
    padding-right: 48px;
  }
  .apcs-contact-card__title {
    font-size: 36px;
  }
}
@media (max-width: 991.98px) {
  .apcs-contact-page {
    padding: 32px 0 48px;
  }
  .apcs-contact-page__container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    grid-template-columns: 1fr;
  }
  .apcs-contact-card {
    padding: 24px;
  }
  .apcs-contact-card__title {
    font-size: 32px;
  }
  .apcs-contact-card--info {
    min-height: auto;
  }
  .apcs-contact-map {
    min-height: 240px;
  }
  .apcs-contact-map iframe,
  .apcs-contact-map img {
    min-height: 240px;
  }
  .apcs-contact-submit {
    width: 100%;
  }
}
/* ===== APCS NOTÍCIAS - FIGMA ===== */
.apcs-news-page,
.apcs-news-detail {
  font-family: "Archivo", "Sora", sans-serif;
  background: #f3f3f3;
  color: #1b1b1b;
}
.apcs-news-page :where(h1, h2, h3, h4, h5, h6, a, p, span, strong, small, em),
.apcs-news-detail
  :where(h1, h2, h3, h4, h5, h6, a, p, span, strong, small, em) {
  font-family: "Archivo", "Sora", sans-serif !important;
}
.apcs-news-page__container {
  width: 100%;
  max-width: 1296px;
  padding: 62px 72px 80px;
  box-sizing: border-box;
  margin: 0 auto;
}
.apcs-news-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 306px;
  gap: 24px;
  align-items: start;
}
.apcs-news-page__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1b1b;
  margin: 0 0 24px;
}
.apcs-news-page__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.apcs-news-page__empty,
.apcs-news-page__pagination {
  margin-top: 8px;
}
.apcs-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-custom-primary, #008001);
  font-style: normal;
  text-transform: uppercase;
}
.apcs-meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #676767;
  display: inline-block;
  flex-shrink: 0;
}
.apcs-news-card {
  display: flex;
  color: #232323 !important;
  text-decoration: none !important;
}
.apcs-news-card--row {
  gap: 24px;
  align-items: center;
  border-radius: 16px;
}
.apcs-news-card--row img {
  width: 306px;
  height: 184px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.apcs-news-card--row .apcs-news-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.apcs-news-card--row strong {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
.apcs-news-card--row small {
  font-size: 14px;
  line-height: 1.5;
  color: #676767;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.apcs-news-card--grid {
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.apcs-news-card--grid img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  border-radius: 8px;
}
.apcs-news-card--grid .apcs-news-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apcs-news-card--grid strong {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}
.apcs-news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.apcs-news-sidebar__card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 32px;
}
.apcs-news-sidebar__title {
  background: var(--color-custom-primary, #008001);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  padding: 16px;
  width: 100%;
}
.apcs-news-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0 24px;
  margin-top: 16px;
}
.apcs-news-sidebar__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #4b4b4b !important;
  text-decoration: none !important;
}
.apcs-news-sidebar__item strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-custom-primary, #008001);
}
.apcs-news-sidebar__item span {
  font-size: 14px;
  line-height: 1.5;
  color: #4b4b4b;
  text-transform: uppercase;
}
.apcs-news-sidebar__divider {
  border: 0;
  border-top: 1px solid #c8c8c8;
  margin: 0;
  width: 100%;
}
.apcs-news-sidebar__button,
.apcs-news-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  margin: 16px 24px 0;
  border: 1px solid var(--color-custom-primary, #008001);
  border-radius: 12px;
  color: var(--color-custom-primary, #008001) !important;
  text-decoration: none !important;
  font-size: 16px;
  line-height: 1.5;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.apcs-news-sidebar__button:hover,
.apcs-news-sidebar__button:focus-visible,
.apcs-news-sidebar__link:hover,
.apcs-news-sidebar__link:focus-visible {
  background: var(--color-custom-primary, #008001);
  border-color: var(--color-custom-primary, #008001);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0, 128, 1, 0.22);
  transform: translateY(-2px);
}
.apcs-news-sidebar__button:active,
.apcs-news-sidebar__link:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 128, 1, 0.18);
}
.apcs-news-sidebar__button i,
.apcs-news-sidebar__link i {
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}
.apcs-news-sidebar__button:hover i,
.apcs-news-sidebar__button:focus-visible i,
.apcs-news-sidebar__link:hover i,
.apcs-news-sidebar__link:focus-visible i {
  color: #fff;
  transform: translateX(2px) scale(1.05);
}
.apcs-news-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 24px 32px;
  margin-top: 16px;
  align-items: stretch;
}
.apcs-news-sidebar__link {
  justify-content: flex-start;
  margin: 0;
  width: 100%;
  padding: 0 24px;
}
.apcs-news-sidebar__link span {
  transition: color 0.25s ease;
}
.apcs-news-sidebar__link:hover span,
.apcs-news-sidebar__link:focus-visible span {
  color: #fff !important;
}
.apcs-news-sidebar__link i {
  width: 24px;
  text-align: center;
  font-size: 18px;
}
.apcs-news-detail__article {
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-width: 0;
}
.apcs-news-detail__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apcs-news-detail__header h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #232323;
  margin: 0;
}
.apcs-news-detail__header > p,
.apcs-news-detail__lead {
  display: none !important;
}
.apcs-news-detail__figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}
.apcs-news-detail__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.apcs-news-detail__content {
  color: #676767;
  font-size: 16px;
  line-height: 1.5;
}
.apcs-news-detail__content :where(p, ul, ol, blockquote) {
  margin: 0 0 16px;
}
.apcs-news-detail__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.apcs-news-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid #c8c8c8;
}
.apcs-news-detail__tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c8c8c8;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #232323;
}
.apcs-news-detail__related {
  margin-top: 80px;
}
.apcs-news-detail__related h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-custom-primary, #008001);
  margin: 0 0 24px;
}
.apcs-news-detail__related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.apcs-agenda-detail__body {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.apcs-agenda-detail__meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}
.apcs-agenda-detail__meta-list li {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #676767;
}
.apcs-agenda-detail__meta-list strong {
  display: block;
  color: #232323;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.apcs-agenda-detail__body:not(:has(.apcs-agenda-detail__meta)) {
  grid-template-columns: minmax(0, 1fr);
}
@media (max-width: 991px) {
  .apcs-agenda-detail__body {
    grid-template-columns: minmax(0, 1fr);
  }
}
.apcs-news-page__pagination .pagination {
  margin: 0;
}
@media (max-width: 1320px) {
  .apcs-news-page__container {
    padding-left: 48px;
    padding-right: 48px;
  }
  .apcs-news-page__title,
  .apcs-news-detail__header h1 {
    font-size: 40px;
  }
}
@media (max-width: 991.98px) {
  .apcs-news-page__container {
    width: 100%;
    max-width: 100%;
    padding: 32px 16px 48px;
  }
  .apcs-news-page__layout {
    grid-template-columns: 1fr;
  }
  .apcs-news-page__title {
    font-size: 32px;
  }
  .apcs-news-card--row {
    align-items: flex-start;
  }
  .apcs-news-detail__header h1 {
    font-size: 32px;
  }
  .apcs-news-detail__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .apcs-news-detail__related {
    margin-top: 48px;
  }
}
@media (max-width: 575.98px) {
  .apcs-news-detail__related-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== APCS COMPOSIÇÃO - FIGMA ===== */
.apcs-composicao-page {
  background: #f3f3f3;
}
.apcs-composicao-quote {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 24px;
  text-align: center;
}
.apcs-composicao-quote__mark {
  margin: 0;
  color: var(--color-custom-primary, #008001);
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
}
.apcs-composicao-quote__text {
  margin: 0;
  max-width: 800px;
  color: #1b1b1b;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.apcs-composicao-quote__signature {
  margin: 0;
  color: var(--color-custom-primary, #008001);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.apcs-composicao-quote__divider {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--color-custom-primary, #008001);
}
.apcs-composicao-sections {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 64px 0 80px;
}
.apcs-composicao-page .apcs-team-card {
  box-shadow: none;
}
.apcs-composicao-team-card__role {
  margin: 0;
  color: var(--color-custom-primary, #008001);
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .apcs-composicao-quote {
    padding: 48px 24px;
  }
  .apcs-composicao-quote__mark {
    font-size: 64px;
  }
  .apcs-composicao-quote__text {
    font-size: 18px;
  }
  .apcs-composicao-sections {
    gap: 48px;
    padding: 32px 0 48px;
  }
}
/* ===== APCS ARQUIVOS - FIGMA ===== */
.apcs-arquivos-page {
  background: #f3f3f3;
}
.apcs-arquivos-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 0 80px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .apcs-arquivos-page > .apcs-home-container.apcs-arquivos-container,
  .apcs-links-uteis-page > .apcs-home-container.apcs-arquivos-container,
  .apcs-arquivos-page.apcs-parceiros-page > .apcs-home-container.apcs-arquivos-container {
    width: min(1296px, calc(100% - 144px));
    max-width: 1296px;
    margin-left: auto;
    margin-right: auto;
    padding: 48px 0 80px;
  }
}
.apcs-arquivos-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apcs-arquivos-header h1 {
  margin: 0;
  color: var(--color-custom-primary, #008001);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}
.apcs-arquivos-header p {
  margin: 0;
  color: #232323;
  font-size: 16px;
  line-height: 1.5;
}
.apcs-arquivos-nav {
  border-bottom: 1px solid #c8c8c8;
}
.apcs-arquivos-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-end;
  padding-bottom: 0;
}
.apcs-arquivos-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  color: #232323 !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}
.apcs-arquivos-nav__item span {
  display: block;
}
.apcs-arquivos-nav__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: transparent;
}
.apcs-arquivos-nav__item.is-active {
  color: var(--color-custom-primary, #008001) !important;
  font-weight: 700;
}
.apcs-arquivos-nav__item.is-active::after {
  height: 4px;
  background: var(--color-custom-primary, #008001);
}
.apcs-arquivos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.apcs-arquivos-card {
  width: 306px;
  max-width: 100%;
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 16px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.apcs-arquivos-card__title {
  margin: 0;
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.5;
  word-break: break-word;
}
.apcs-arquivos-card__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: #c8c8c8;
}
.apcs-arquivos-card__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-custom-primary, #008001) !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.apcs-arquivos-card__download.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.apcs-arquivos-empty {
  margin: 0;
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .apcs-arquivos-page > .apcs-home-container.apcs-arquivos-container,
  .apcs-links-uteis-page > .apcs-home-container.apcs-arquivos-container,
  .apcs-arquivos-page.apcs-parceiros-page > .apcs-home-container.apcs-arquivos-container {
    width: 100%;
    max-width: none;
    padding: 32px 20px 48px;
  }

  .apcs-arquivos-container {
    padding: 32px 0 48px;
  }
  .apcs-arquivos-header h1 {
    font-size: 40px;
  }
  .apcs-arquivos-nav {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(16px, calc(50vw - 50%));
    padding-right: max(16px, calc(50vw - 50%));
    overflow: hidden;
  }
  .apcs-arquivos-nav__list {
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    padding-bottom: 2px;
  }
  .apcs-arquivos-nav__list::-webkit-scrollbar {
    display: none;
  }
  .apcs-arquivos-nav__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .apcs-arquivos-card {
    padding: 24px 12px;
  }
}
@media (max-width: 575.98px) {
  .apcs-arquivos-header h1 {
    font-size: 32px;
  }
  .apcs-arquivos-card__title {
    font-size: 14px;
  }
  .apcs-arquivos-card__download {
    font-size: 14px;
  }
}
/* ===== APCS GALERIA - FIGMA ===== */
.apcs-galeria-page {
  background: #f3f3f3;
}
.apcs-galeria-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 0 80px;
}
.apcs-galeria-header h1,
.apcs-galeria-detail-header h1 {
  margin: 0;
  color: var(--color-custom-primary, #008001);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}
.apcs-galeria-detail-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apcs-galeria-detail-header p {
  margin: 0;
  color: #232323;
  font-size: 16px;
  line-height: 1.5;
  max-width: 1297px;
}
.apcs-galeria-grid,
.apcs-galeria-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.apcs-galeria-card {
  width: 306px;
  max-width: 100%;
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 16px;
  overflow: hidden;
}
.apcs-galeria-card__link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 0 0 32px;
  color: inherit !important;
  text-decoration: none !important;
}
.apcs-galeria-card__media {
  width: 100%;
  height: 180px;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}
.apcs-galeria-card__media img,
.apcs-galeria-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apcs-galeria-card__placeholder {
  background: #e8e8e8;
}
.apcs-galeria-card__title {
  margin: 0;
  padding: 0 16px;
  color: #4b4b4b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  word-break: break-word;
}
.apcs-galeria-card__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: #c8c8c8;
}
.apcs-galeria-card__action {
  padding: 0 16px;
  color: var(--color-custom-primary, #008001);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
.apcs-galeria-card__link:hover .apcs-galeria-card__action {
  text-decoration: underline;
}
.apcs-galeria-detail-photo {
  position: relative;
  width: calc(33.333% - 16px);
  min-width: 280px;
  max-width: 100%;
  height: 275px;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}
.apcs-galeria-detail-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.apcs-galeria-detail-photo__date {
  position: absolute;
  right: 16px;
  bottom: 16px;
  margin: 0;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  color: #ebeb00;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.apcs-galeria-empty,
.apcs-galeria-pagination {
  margin: 0;
  width: 100%;
}
.apcs-galeria-empty {
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.5;
}
.apcs-galeria-pagination .pagination {
  justify-content: center;
  margin-top: 8px;
}
.apcs-galeria-detail-photo__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.apcs-galeria-detail-photo__trigger:focus-visible {
  outline: 2px solid var(--color-custom-primary, #008001);
  outline-offset: 2px;
}
.apcs-galeria-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  box-sizing: border-box;
}
.apcs-galeria-lightbox[hidden] {
  display: none !important;
}
.apcs-galeria-lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 48px);
}
.apcs-galeria-lightbox__stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
.apcs-galeria-lightbox__caption {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.apcs-galeria-lightbox__close,
.apcs-galeria-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.apcs-galeria-lightbox__close:hover,
.apcs-galeria-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.apcs-galeria-lightbox__close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
}
.apcs-galeria-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
}
.apcs-galeria-lightbox__prev {
  left: 16px;
}
.apcs-galeria-lightbox__next {
  right: 16px;
}
body.apcs-galeria-lightbox-open {
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .apcs-galeria-page > .apcs-home-container.apcs-galeria-container {
    width: 100%;
    max-width: none;
    padding: 32px 20px 48px;
    box-sizing: border-box;
  }

  .apcs-galeria-header h1,
  .apcs-galeria-detail-header h1 {
    font-size: 40px;
  }
  .apcs-galeria-card {
    width: calc(50% - 12px);
  }
  .apcs-galeria-detail-photo {
    width: calc(50% - 12px);
  }
  .apcs-galeria-lightbox {
    padding: 16px;
  }
  .apcs-galeria-lightbox__prev {
    left: 8px;
  }
  .apcs-galeria-lightbox__next {
    right: 8px;
  }
  .apcs-galeria-lightbox__close {
    top: 12px;
    right: 12px;
  }
}
@media (max-width: 575.98px) {
  .apcs-galeria-header h1,
  .apcs-galeria-detail-header h1 {
    font-size: 32px;
  }
}

/* Mobile: cards com largura limitada e centralizados (reutilizável) */
@media (max-width: 575.98px) {
  .apcs-mobile-centered-cards {
    flex-direction: column;
    align-items: center;
  }

  .apcs-mobile-centered-cards > .apcs-galeria-card,
  .apcs-mobile-centered-cards > .apcs-galeria-detail-photo,
  .apcs-mobile-centered-cards > .apcs-videos-item {
    width: 100%;
    max-width: 306px;
    min-width: 0;
  }
}

/* Mobile/tablet: 2 colunas centralizadas, sem colar nas bordas (reutilizável) */
@media (max-width: 991.98px) {
  .apcs-mobile-grid-2-centered {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 628px;
    margin-left: auto;
    margin-right: auto;
  }

  .apcs-mobile-grid-2-centered > .apcs-arquivos-card {
    width: 100%;
    max-width: 306px;
    justify-self: center;
  }
}

/* Mobile/tablet: conteúdo textual centralizado, sem colar nas bordas (reutilizável) */
@media (max-width: 991.98px) {
  .apcs-mobile-content-centered {
    width: 100%;
    max-width: 628px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
}
/* ===== APCS VÍDEOS - FIGMA ===== */
.apcs-videos-page {
  background: #f3f3f3;
}
.apcs-videos-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 0 80px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .apcs-videos-page > .apcs-home-container.apcs-videos-container {
    width: min(1296px, calc(100% - 144px));
    max-width: 1296px;
    margin-left: auto;
    margin-right: auto;
    padding: 48px 0 80px;
  }
}
.apcs-videos-header h1 {
  margin: 0;
  color: var(--color-custom-primary, #008001);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}
.apcs-videos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.apcs-videos-item {
  width: calc(50% - 12px);
  max-width: 636px;
  min-width: 280px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.apcs-videos-item__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 636/357;
  background: #1b1b1b;
}
.apcs-videos-item__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.apcs-video-facade__trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #1b1b1b;
  cursor: pointer;
  display: block;
}
.apcs-video-facade__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.apcs-video-facade__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 128, 1, 0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.apcs-video-facade__play i {
  margin-left: 4px;
}
.apcs-video-facade.is-loaded .apcs-video-facade__trigger {
  display: none;
}
.apcs-videos-empty {
  margin: 0;
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .apcs-videos-page > .apcs-home-container.apcs-videos-container {
    width: 100%;
    max-width: none;
    padding: 32px 20px 48px;
  }

  .apcs-videos-container {
    padding: 32px 0 48px;
  }
  .apcs-videos-header h1 {
    font-size: 40px;
  }
  .apcs-videos-item {
    width: calc(50% - 12px);
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .apcs-videos-header h1 {
    font-size: 32px;
  }
}
/* ===== APCS PARCEIROS - FIGMA ===== */
.apcs-parceiros-page .apcs-arquivos-nav {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

@media (max-width: 991.98px) {
  .apcs-parceiros-page .apcs-arquivos-nav__list {
    gap: 12px 20px;
  }

  .apcs-parceiros-page .apcs-mobile-grid-2-centered {
    width: 100%;
    max-width: none;
  }
}

.apcs-parceiros-page .apcs-arquivos-nav__list {
  flex-wrap: wrap;
  overflow-x: visible;
  scroll-snap-type: none;
  gap: 16px 24px;
}

.apcs-parceiros-page .apcs-arquivos-nav__item {
  flex: 0 1 auto;
  scroll-snap-align: none;
}

.apcs-parceiros-page .apcs-arquivos-card {
  overflow: hidden;
}

.apcs-parceiros-page .apcs-parceiros-card__logo {
  width: auto;
  max-width: 139px;
  height: auto;
  max-height: 141px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
/* ===== APCS PRESTAÇÃO DE CONTAS - FIGMA ===== */
.apcs-prestacao-page {
  background: #f3f3f3;
}
.apcs-prestacao-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 416px;
  gap: 24px;
  align-items: start;
  padding: 88px 0 80px;
}
.apcs-prestacao-table-wrap {
  min-width: 0;
}
.apcs-prestacao-table {
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 16px;
  overflow: hidden;
}
.apcs-prestacao-table__head,
.apcs-prestacao-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 160px;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  min-height: 56px;
}
.apcs-prestacao-table__head {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  background: var(--color-custom-primary, #008001);
  border-bottom: 1px solid #c8c8c8;
}
.apcs-prestacao-table__head .apcs-prestacao-table__col--name {
  text-align: left;
}
.apcs-prestacao-table__head .apcs-prestacao-table__col--date {
  text-align: center;
}
.apcs-prestacao-table__head .apcs-prestacao-table__col--download {
  text-align: right;
}
.apcs-prestacao-table__year {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  background: #fff;
  color: var(--color-custom-primary, #008001);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #c8c8c8;
}
.apcs-prestacao-table__head + .apcs-prestacao-table__year {
  border-top: 0;
}
.apcs-prestacao-table__row {
  min-height: 48px;
  font-size: 14px;
  line-height: 1.5;
  color: #232323;
  background: #fff;
  border-bottom: 1px solid #c8c8c8;
}
.apcs-prestacao-table__row.is-alt {
  background: #f7f7f7;
}
.apcs-prestacao-table__row:last-child {
  border-bottom: 0;
}
.apcs-prestacao-table__info {
  display: contents;
}
.apcs-prestacao-table__download-label--mobile {
  display: none;
}
.apcs-prestacao-table__col--name {
  padding-right: 16px;
  text-align: left;
  text-transform: uppercase;
  word-break: break-word;
}
.apcs-prestacao-table__row .apcs-prestacao-table__col--date {
  text-align: center;
  color: #676767;
}
.apcs-prestacao-table__row .apcs-prestacao-table__col--download {
  text-align: right;
}
.apcs-prestacao-table__col--download a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--color-custom-primary, #008001) !important;
  text-decoration: none !important;
  font-weight: 700;
  transition: opacity 0.2s ease;
}
.apcs-prestacao-table__col--download a:hover {
  opacity: 0.75;
}
.apcs-prestacao-table__col--download .is-disabled {
  color: #676767;
  font-weight: 400;
  opacity: 0.6;
}
.apcs-prestacao-empty {
  margin: 0;
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.5;
}
.apcs-prestacao-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.apcs-prestacao-sidebar__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #232323;
  font-size: 16px;
  line-height: 1.5;
}
.apcs-prestacao-sidebar__content h2 {
  margin: 0;
  color: var(--color-custom-primary, #008001);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.apcs-prestacao-sidebar__content p {
  margin: 0;
}
.apcs-prestacao-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.apcs-prestacao-sidebar__list p {
  margin: 0;
}
@media (max-width: 1199.98px) {
  .apcs-prestacao-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991.98px) {
  .apcs-prestacao-layout {
    padding: 32px 0 48px;
  }
  .apcs-prestacao-table__head,
  .apcs-prestacao-table__row {
    grid-template-columns: minmax(0, 1fr) 120px 130px;
    padding: 0 16px;
  }
  .apcs-prestacao-sidebar__content h2 {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .apcs-prestacao-page .apcs-prestacao-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 44px 20px 48px;
  }

  .apcs-prestacao-page .apcs-home-container.apcs-prestacao-layout {
    width: 100%;
    max-width: none;
  }

  .apcs-prestacao-page .apcs-prestacao-sidebar {
    order: -1;
  }

  .apcs-prestacao-page .apcs-prestacao-sidebar__content {
    gap: 24px;
    font-size: 13px;
    line-height: 1.4;
    color: #676767;
  }

  .apcs-prestacao-page .apcs-prestacao-sidebar__content h2 {
    font-size: 28px;
    line-height: normal;
    color: var(--color-custom-primary, #008001);
  }

  .apcs-prestacao-page .apcs-prestacao-sidebar__list {
    gap: 0;
  }

  .apcs-prestacao-page .apcs-prestacao-table {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .apcs-prestacao-page .apcs-prestacao-table__head {
    display: none;
  }

  .apcs-prestacao-page .apcs-prestacao-table__year {
    justify-content: flex-start;
    min-height: 39px;
    padding: 10px 16px;
    background: var(--color-custom-primary, #008001);
    color: #fff;
    font-size: 16px;
    border-bottom: 0;
  }

  .apcs-prestacao-page .apcs-prestacao-table__info {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .apcs-prestacao-page .apcs-prestacao-table__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 60px;
    padding: 12px 16px;
    background: #fff;
  }

  .apcs-prestacao-page .apcs-prestacao-table__row.is-alt {
    background: #f7f7f7;
  }

  .apcs-prestacao-page .apcs-prestacao-table__col--name {
    padding-right: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    color: #1b1b1b;
    text-transform: uppercase;
  }

  .apcs-prestacao-page .apcs-prestacao-table__row .apcs-prestacao-table__col--date {
    text-align: left;
    font-size: 12px;
    line-height: normal;
    color: #676767;
  }

  .apcs-prestacao-page .apcs-prestacao-table__row .apcs-prestacao-table__col--download {
    flex-shrink: 0;
    text-align: right;
  }

  .apcs-prestacao-page .apcs-prestacao-table__col--download a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 4px;
    background: var(--color-custom-primary, #008001);
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .apcs-prestacao-page .apcs-prestacao-table__download-label--desktop {
    display: none;
  }

  .apcs-prestacao-page .apcs-prestacao-table__download-label--mobile {
    display: inline;
  }
}

/* ===== APCS AVISOS - FIGMA ===== */
.apcs-avisos-page {
  font-family: "Archivo", "Sora", sans-serif;
  background: #f3f3f3;
  color: #1b1b1b;
}

.apcs-avisos-page :where(h1, h2, h3, h4, h5, h6, a, p, span, strong, small, em) {
  font-family: "Archivo", "Sora", sans-serif !important;
}

.apcs-avisos-page__container {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
  padding: 62px 72px 80px;
  box-sizing: border-box;
}

.apcs-avisos-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 306px;
  gap: 24px;
  align-items: start;
  width: 100%;
  min-width: 0;
}

.apcs-avisos-page__main {
  min-width: 0;
  width: 100%;
}

.apcs-avisos-page__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}

.apcs-avisos-page__intro h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-custom-primary, #008001);
}

.apcs-avisos-page__intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #232323;
}

.apcs-avisos-page__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.apcs-avisos-page__empty,
.apcs-avisos-page__pagination {
  margin-top: 8px;
}

.apcs-aviso-card {
  background: #fff;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.apcs-aviso-card__link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
  padding: 32px 24px;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none !important;
}

.apcs-aviso-card__link:hover .apcs-aviso-card__cta,
.apcs-aviso-card__link:focus-visible .apcs-aviso-card__cta {
  text-decoration: underline;
}

.apcs-aviso-card__date {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.apcs-aviso-card__date strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-custom-primary, #008001);
}

.apcs-aviso-card__date span {
  font-size: 12px;
  line-height: normal;
  color: #676767;
}

.apcs-aviso-card__divider {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background: #eaeaea;
}

.apcs-aviso-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.apcs-aviso-card__body h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #1b1b1b;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.apcs-aviso-card__excerpt {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #676767 !important;
  overflow: hidden;
  max-height: 4.5em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.apcs-aviso-card__cta {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-custom-primary, #008001);
}

@media (max-width: 1320px) {
  .apcs-avisos-page__container {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 991.98px) {
  .apcs-avisos-page__container {
    width: 100%;
    max-width: 100%;
    padding: 48px 16px;
  }

  .apcs-avisos-page__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .apcs-avisos-page__intro {
    margin-bottom: 48px;
  }

  .apcs-avisos-page__intro h1 {
    font-size: 28px;
  }

  .apcs-avisos-page__intro p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .apcs-avisos-page .apcs-news-sidebar {
    gap: 32px;
    margin-top: 48px;
    width: 100%;
    min-width: 0;
  }

  .apcs-avisos-page .apcs-news-sidebar__card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}

/* Notícias — cards verticais no mobile (listagem + home) */
@media (max-width: 991.98px) {
  .apcs-news-page__list {
    gap: 32px;
  }

  .apcs-home .apcs-news-main .apcs-news-row {
    margin-bottom: 32px;
  }

  .apcs-news-page .apcs-news-card--row,
  .apcs-home .apcs-news-main .apcs-news-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .apcs-news-page .apcs-news-card--row img,
  .apcs-home .apcs-news-main .apcs-news-row > img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0;
  }

  .apcs-news-page .apcs-news-card--row .apcs-news-card__content,
  .apcs-home .apcs-news-main .apcs-news-row > span {
    gap: 8px;
  }

  .apcs-news-page .apcs-news-card--row .apcs-meta,
  .apcs-home .apcs-news-main .apcs-news-row .apcs-meta {
    font-size: 12px;
  }

  .apcs-news-page .apcs-news-card--row strong,
  .apcs-home .apcs-news-main .apcs-news-row strong {
    font-size: 20px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .apcs-news-page .apcs-news-card--row small,
  .apcs-home .apcs-news-main .apcs-news-row small {
    display: none !important;
  }
}
