:root {
    --brand: #32A9D8;
    --brand-dark: #2890b8;
    --brand-light: #e8f6fc;
    --white: #ffffff;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(50, 169, 216, 0.08);
    --shadow-hover: 0 8px 32px rgba(50, 169, 216, 0.15);
    --radius: 8px;
    --container: 1200px;
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-dark); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 160;
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.site-header-shell,
.site-header-bar,
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
    flex-wrap: nowrap;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    flex: 0 1 auto;
}

.site-logo {
    height: 96px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
}

.site-brand-text { display: none; }

.site-brand-fallback {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.site-nav { flex: 1 1 auto; min-width: 0; display: flex; justify-content: flex-end; }

.site-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: .1rem;
}

.site-nav-item { position: relative; }

.site-nav-item > a:not(.site-nav-cta),
.site-nav-trigger {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .65rem .75rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: color .2s;
}

.site-nav-item > a:not(.site-nav-cta):hover,
.site-nav-trigger:hover,
.site-nav-item.is-open .site-nav-trigger {
    color: var(--brand);
}

.site-nav-item--cta {
    margin-left: .25rem;
}

.site-nav-item--cta > .site-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .6rem 1.15rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    background: var(--brand);
    border: 2px solid var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color .2s, border-color .2s, box-shadow .2s, transform .2s;
    box-shadow: 0 4px 14px rgba(50, 169, 216, .28);
}

.site-nav-item--cta > .site-nav-cta:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(50, 169, 216, .34);
}

.site-nav-caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform .2s;
}

.site-nav-item.is-open .site-nav-caret { transform: rotate(180deg); }

.site-submenu {
    list-style: none;
    margin: 0;
    padding: .5rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 200;
}

.site-nav-item.has-submenu:hover .site-submenu,
.site-nav-item.is-open .site-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-submenu a {
    display: block;
    padding: .6rem 1rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
}

.site-submenu a:hover {
    background: var(--brand-light);
    color: var(--brand-dark);
}

.site-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: background-color .2s, border-color .2s, color .2s;
    position: relative;
    z-index: 170;
}

.site-nav-toggle:hover {
    border-color: rgba(50, 169, 216, .45);
    color: var(--brand);
    background: var(--brand-light);
}

.site-nav-toggle i {
    font-size: 1.15rem;
    line-height: 1;
}

.site-header-help-chat {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
    padding: .55rem 1rem;
    border: 2px solid var(--brand);
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: .8125rem;
    font-weight: 700;
    font-family: inherit;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}

.site-header-help-chat:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(50, 169, 216, .28);
}

.site-header-help-chat i {
    font-size: .95rem;
}

.site-header-actions {
    display: contents;
}

.site-nav-cta--help {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.site-nav-item--help-chat {
    display: none;
}

.site-nav__head {
    display: none;
}

.site-nav-close {
    display: none;
}

.site-nav-backdrop {
    display: none;
}

.site-nav__inner {
    display: contents;
}

.site-nav__title {
    display: none;
}

body.nav-locked {
    overflow: hidden;
}

/* Main */
main { min-height: 50vh; }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--brand) 0%, #2a8eb8 100%);
    color: var(--white);
    padding: 4rem 0 5rem;
    margin-bottom: 0;
}

.hero-cover {
    position: relative;
    min-height: 380px;
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-cover--fallback {
    background: linear-gradient(135deg, var(--brand) 0%, #2a8eb8 100%);
    min-height: auto;
    padding: 4rem 0 5rem;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: var(--brand);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide .hero-cover-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide .hero-cover-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    min-width: 0;
    box-sizing: border-box;
}

.hero-slide--align-right {
    justify-content: center;
}

.hero-slide--align-right .hero-cover-overlay {
    background: linear-gradient(270deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .45) 100%);
}

.hero-slide--align-right .hero-cover-content {
    text-align: right;
}

.hero-slide--align-left .hero-cover-content,
.hero-slide:not([class*="hero-slide--align-"]) .hero-cover-content {
    text-align: left;
}

.hero-slide--align-right .hero-cover-content h2,
.hero-slide--align-right .hero-cover-content p,
.hero-slide--align-right .hero-slide-link {
    margin-inline-start: auto;
    margin-inline-end: 0;
}

.hero-slide--align-left .hero-cover-content h2,
.hero-slide--align-left .hero-cover-content p,
.hero-slide--align-left .hero-slide-link,
.hero-slide:not([class*="hero-slide--align-"]) .hero-cover-content h2,
.hero-slide:not([class*="hero-slide--align-"]) .hero-cover-content p,
.hero-slide:not([class*="hero-slide--align-"]) .hero-slide-link {
    margin-inline-start: 0;
    margin-inline-end: auto;
}

.hero-slide-link {
    display: inline-block;
    margin-top: 1.25rem;
}

.hero-slide--clickable {
    cursor: pointer;
}

.hero-slide-badge {
    display: inline-block;
    margin: 0 0 .85rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(50, 169, 216, .92);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-slide-apac {
    margin: 0 0 .55rem !important;
    font-size: .92rem !important;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    opacity: .95 !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
}

/* Slides de crowdfunding (contribuicao.fbac.com.br) — textos longos */
.hero-slide--crowdfunding {
    align-items: center;
    justify-content: flex-start;
}

.hero-slide--crowdfunding .hero-cover-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-height: 100%;
    padding-block: 1.35rem 3.25rem;
    overflow: hidden;
}

.hero-slide--crowdfunding .hero-slide-badge {
    align-self: flex-start;
    width: fit-content;
    max-width: 100%;
    margin-bottom: .45rem;
    padding: .28rem .6rem;
    font-size: .7rem;
}

.hero-slide--crowdfunding .hero-slide-apac {
    margin-bottom: .3rem !important;
    font-size: .78rem !important;
    line-height: 1.25;
    text-transform: none;
    letter-spacing: .01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    -webkit-line-clamp: unset !important;
}

.hero-slide--crowdfunding .hero-cover-content h2 {
    margin-inline: 0 auto;
    margin-bottom: .55rem;
    font-size: clamp(1.05rem, 2.8vw, 1.85rem);
    line-height: 1.2;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.hero-slide--crowdfunding .hero-cover-content p {
    margin-inline: 0 auto;
    font-size: clamp(.82rem, 2vw, .98rem);
    line-height: 1.45;
    text-align: left;
    -webkit-line-clamp: 2;
}

.hero-slide--crowdfunding .hero-slide-link {
    align-self: flex-start;
    margin-top: .75rem;
    margin-inline: 0 auto;
    padding: .5rem 1rem;
    font-size: .88rem;
}

.hero-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .45) 100%);
    z-index: 1;
}

.hero-cover-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    min-width: 0;
    padding-block: 2.5rem;
    box-sizing: border-box;
}

.hero-cover-content h2,
.hero-cover-content p {
    max-width: min(36rem, 100%);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.hero-cover-content h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.hero-cover-content p {
    margin: 0;
    font-size: clamp(.95rem, 2.5vw, 1.125rem);
    opacity: .95;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.hero-cover__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, .85);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
    opacity: .75;
    transition: background .2s, color .2s, opacity .2s, transform .2s;
}

.hero-cover__nav i {
    font-size: 1.15rem;
    line-height: 1;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .45));
}

.hero-cover__nav:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    opacity: 1;
}

.hero-cover__nav--prev {
    left: .75rem;
}

.hero-cover__nav--next {
    right: .75rem;
}

.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: .5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    padding: 0;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s, background .2s;
}

.hero-dot.active,
.hero-dot:hover {
    opacity: 1;
    background: var(--white);
}

.hero-cover--fallback .container {
    max-width: var(--container);
    text-align: left;
}

.hero .container { max-width: 900px; text-align: center; }

.hero h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.hero p {
    margin: 0 auto;
    font-size: 1.125rem;
    opacity: .95;
    max-width: 640px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: .75rem 1.5rem;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--white);
    color: var(--brand);
    border-color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,.15);
    color: var(--white);
}

.btn-brand {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}

.btn-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border-color: rgba(50, 169, 216, .35);
}

.btn-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.apac-page-notices {
    padding-top: 0;
}

.apac-page-intro--notice .apac-page-intro__lead,
.apac-page-intro--notice .notice-detail__head-text {
    max-width: none;
}

.apac-page-notices .notice-cards {
    grid-template-columns: 1fr;
}

.apac-page-notice-detail__content {
    width: 100%;
    max-width: none;
    margin: 0;
}

.apac-page-notice-detail .notice-dates-bar {
    width: 100%;
}

.notices-search {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2.5rem;
    align-items: center;
}

.notices-search input[type="search"] {
    flex: 1 1 280px;
    min-width: 0;
    padding: .85rem 1rem;
    border: 2px solid rgba(50, 169, 216, .2);
    border-radius: 12px;
    font-size: .95rem;
    font-family: inherit;
}

.notices-search input[type="search"]:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(50, 169, 216, .15);
}

.notices-section-header {
    margin-bottom: 1.5rem;
}

.notices-empty {
    margin: 0;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    border: 2px dashed rgba(50, 169, 216, .25);
    border-radius: 14px;
}

.notices-pagination-note {
    margin: 0;
    font-size: .95rem;
    color: var(--text-muted);
}

.notices-pagination-note a {
    font-weight: 600;
    color: var(--brand-dark);
}

.notice-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.notice-card {
    height: 100%;
}

.notice-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.35rem 1.4rem;
    background: linear-gradient(135deg, #fff 0%, #f8fcfe 100%);
    border: 2px solid rgba(50, 169, 216, .16);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.notice-card__link:hover {
    border-color: rgba(50, 169, 216, .45);
    box-shadow: 0 12px 32px rgba(15, 52, 96, .1);
    transform: translateY(-2px);
}

.notice-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-bottom: .85rem;
}

.notice-badge {
    display: inline-block;
    padding: .2rem .65rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.notice-badge--open {
    background: rgba(34, 197, 94, .14);
    color: #15803d;
}

.notice-badge--closed {
    background: rgba(100, 116, 139, .14);
    color: #475569;
}

.notice-badge--archived {
    background: rgba(148, 163, 184, .18);
    color: #64748b;
}

.notice-card__type {
    font-size: .75rem;
    font-weight: 600;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.notice-card__number {
    margin: 0 0 .5rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: .03em;
}

.notice-card__title {
    margin: 0 0 .75rem;
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--text);
}

.notice-card__unit {
    margin: 0 0 .85rem;
    font-size: .88rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: .45rem;
}

.notice-card__unit i {
    color: var(--brand);
    margin-top: .15rem;
}

.notice-card__dates {
    list-style: none;
    margin: 0 0 .85rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1rem;
}

.notice-card__dates li {
    font-size: .8rem;
    color: var(--text-muted);
}

.notice-card__dates span {
    display: block;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .1rem;
}

.notice-card__dates strong {
    color: var(--text);
    font-weight: 600;
}

.notice-card__summary {
    margin: 0 0 1rem;
    font-size: .9rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.notice-card__cta {
    margin-top: auto;
    font-size: .875rem;
    font-weight: 700;
    color: var(--brand);
}

.apac-page-intro--notice .notice-detail__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
}

.notice-detail__number {
    margin: 0 0 .5rem;
    font-size: .95rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.notice-detail__unit {
    margin: 0 0 1rem;
    font-size: .95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.notice-detail__unit i {
    color: var(--brand);
}

.notice-dates-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8fcfe 0%, #eef9fd 100%);
    border: 2px solid rgba(50, 169, 216, .16);
    border-radius: 14px;
}

.notice-dates-bar__label {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--brand-dark);
    margin-bottom: .25rem;
}

.notice-dates-bar__item strong {
    font-size: 1rem;
    color: var(--text);
}

.apac-page-notice-detail {
    padding-top: 0;
}

.section.apac-page-notice-detail {
    padding-top: .75rem;
    padding-bottom: 4rem;
}

.apac-page-intro--notice {
    padding-bottom: .75rem;
}

.apac-page-intro--notice .apac-page-intro__lead {
    margin-bottom: 0;
}

.apac-page-intro--notice .notice-detail__unit {
    margin-bottom: .5rem;
}

.notice-content {
    max-width: none;
    width: 100%;
}

.notice-detail__back {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(50, 169, 216, .15);
}

.notice-downloads {
    list-style: none;
    margin: 1.25rem 0 2rem;
    padding: 0;
    display: grid;
    gap: .75rem;
}

.notice-downloads li a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    border: 2px solid rgba(50, 169, 216, .16);
    border-left: 4px solid var(--brand);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: border-color .2s, box-shadow .2s;
}

.notice-downloads li a::before {
    content: "\f1c1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--brand);
}

.notice-downloads li a:hover {
    border-color: rgba(50, 169, 216, .45);
    box-shadow: 0 8px 24px rgba(15, 52, 96, .08);
}

.notice-documents-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(50, 169, 216, .15);
}

.notice-documents-section .apac-page-section__title {
    margin-bottom: 1rem;
    text-align: left;
}

.notice-documents-section .notice-downloads {
    margin-bottom: 0;
}

.notice-disclaimer {
    margin-top: 2rem;
    color: var(--text-muted);
}

.apac-page-notices--closed {
    padding-top: 2.5rem;
}

@media (max-width: 768px) {
    .notices-search .btn {
        width: 100%;
        text-align: center;
    }
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--brand-light);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    margin: 0 0 .5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.02em;
}

.section-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin-inline: auto;
}

.section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title-row h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.link-arrow {
    font-size: .9rem;
    font-weight: 600;
    color: var(--brand);
}

.link-arrow:hover { text-decoration: underline; }

/* Home — Impact in Action (notícias) */
.impact-action {
    --impact-nav-size: 0px;
    padding: 2.5rem 0 4rem;
    background: var(--white);
}

.impact-action--has-nav {
    --impact-nav-size: 42px;
}

.impact-action__header {
    display: grid;
    grid-template-columns: var(--impact-nav-size) 1fr;
    gap: .75rem;
    align-items: end;
    margin-bottom: .75rem;
}

.impact-action__header-spacer {
    width: var(--impact-nav-size);
    min-width: 0;
}

.impact-action__header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    min-width: 0;
}

.impact-action__carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: minmax(0, auto);
    align-items: center;
    gap: .75rem;
    margin-bottom: 2rem;
}

.impact-action__title {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--brand);
}

.impact-action__view-all {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: .7rem 1.25rem;
    border: 2px solid rgba(50, 169, 216, .35);
    border-radius: 999px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s, border-color .2s;
}

.impact-action__view-all:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.impact-action__viewport {
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
    min-width: 0;
}

.impact-action__nav i,
.home-testimonials__nav i {
    font-size: .9rem;
    line-height: 1;
}

.impact-action__track {
    display: flex;
    gap: 1.25rem;
    transition: transform .45s ease;
    will-change: transform;
}

.impact-action__card {
    flex: 0 0 calc(25% - .94rem);
    min-width: 0;
}

.impact-action__card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border: 2px solid rgba(50, 169, 216, .22);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(90deg, #f8fcfe 0%, #eef9fd 50%, #f8fcfe 100%);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.impact-action__card-link:hover {
    transform: translateY(-4px);
    border-color: rgba(50, 169, 216, .45);
    box-shadow: 0 12px 28px rgba(30, 41, 59, .1);
}

.impact-action__card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--brand-light);
}

.impact-action__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.impact-action__card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-light) 0%, #d4eff9 100%);
}

.impact-action__card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .5rem;
    padding: 1.15rem 1.2rem 1.25rem;
}

.impact-action__card-meta {
    margin: 0;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.impact-action__card-body h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text);
}

.impact-action__card-link:hover h3 {
    color: var(--brand);
}

.impact-action__card-excerpt {
    margin: 0;
    font-size: .9rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.impact-action__card-cta {
    margin-top: auto;
    padding-top: .35rem;
    font-size: .875rem;
    font-weight: 700;
    color: var(--brand);
}

.impact-action__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(50, 169, 216, .35);
    border-radius: 50%;
    background: var(--white);
    color: var(--brand);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, opacity .2s;
}

.impact-action__nav--prev {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
}

.impact-action__nav--next {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
}

.impact-action__nav:hover:not(:disabled) {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.impact-action__nav:disabled {
    opacity: .35;
    cursor: default;
}

.impact-action__dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem;
}

.impact-action__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(50, 169, 216, .25);
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.impact-action__dot.active,
.impact-action__dot:hover {
    background: var(--brand);
    transform: scale(1.1);
}

/* Home — introdução APAC (About Us) */
.home-about {
    padding: 2rem 0 3.5rem;
    background: var(--white);
}

.home-about--with-bg {
    position: relative;
    padding: 3.5rem 0 4.5rem;
    overflow: hidden;
    background: #0f172a;
}

.home-about__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-about__backdrop-media,
.home-about__backdrop-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.home-about__backdrop-media img {
    object-fit: cover;
    object-position: 72% center;
    pointer-events: none;
}

.home-about__backdrop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15, 23, 42, .82) 0%,
        rgba(15, 23, 42, .62) 52%,
        rgba(15, 23, 42, .45) 100%
    );
    pointer-events: none;
}

.home-about__translate-surface {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
}

.home-about--with-bg .home-about__container {
    position: relative;
    z-index: 2;
}

.home-about--with-bg .home-about__content {
    max-width: 40rem;
}

.home-about--with-bg .home-about__eyebrow {
    color: #9fe3f7;
}

.home-about--with-bg .home-about__headline {
    color: var(--white);
}

.home-about--with-bg .home-about__text p {
    color: rgba(255, 255, 255, .9);
}

.home-about--with-bg .home-about__text em {
    color: var(--white);
}

.home-about--classic {
    background: var(--white);
}

.home-about--classic .home-about__container {
    align-items: center;
}

@media (min-width: 1024px) {
    .home-about--classic .home-about__container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .home-about--classic .home-about__content {
        flex: 1;
        max-width: 30rem;
        text-align: left;
    }

    .home-about--classic .home-about__media {
        flex-shrink: 0;
    }
}

.home-about__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.home-about__media {
    position: relative;
    width: min(100%, 20rem);
    aspect-ratio: 314 / 312;
    flex-shrink: 0;
}

.home-about__main,
.home-about__overlay {
    display: block;
}

.home-about__main {
    position: absolute;
    top: 0;
    left: 0;
    width: 74.8%;
    height: 79.6%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.home-about__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 59.3%;
    height: 60.4%;
    border: 5px solid var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .18);
}

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

.home-about__content {
    width: 100%;
    max-width: 36rem;
    text-align: center;
}

.home-about__eyebrow {
    margin: 0 0 .75rem;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand);
}

.home-about__headline {
    margin: 0 0 1.15rem;
    font-size: clamp(1.65rem, 4.5vw, 2.15rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: var(--text);
}

.home-about__text {
    margin: 0 0 1.5rem;
}

.home-about__text p {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.home-about__text p:last-child {
    margin-bottom: 0;
}

.home-about__text em {
    font-style: normal;
    font-weight: 600;
    color: var(--text);
}

.home-about__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(100%, 18rem);
}

@media (max-width: 767px) {
    .home-about--classic .home-about__media {
        order: -1;
    }
}

@media (min-width: 768px) {
    .home-about {
        padding: 2.25rem 0 3rem;
    }

    .home-about--with-bg {
        padding: 4.5rem 0 5rem;
    }

    .home-about__media {
        width: min(100%, 20rem);
    }

    .home-about__content {
        max-width: 42rem;
    }

    .home-about__text p {
        font-size: 1.05rem;
    }
}

@media (min-width: 1024px) {
    .home-about {
        padding: 2.75rem 0 4rem;
    }

    .home-about--with-bg {
        padding: 5.5rem 0 6rem;
    }

    .home-about--with-bg .home-about__container {
        justify-content: flex-start;
    }

    .home-about--with-bg .home-about__content {
        max-width: 34rem;
        text-align: left;
    }

    .home-about__container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 3.5rem;
    }

    .home-about__media {
        width: min(42vw, 30rem);
        aspect-ratio: 593 / 589;
    }

    .home-about__main {
        border-radius: 12px;
    }

    .home-about__overlay {
        border-width: 7px;
        border-radius: 14px;
    }

    .home-about__content {
        flex: 1;
        max-width: 30rem;
        text-align: left;
    }

    .home-about__headline {
        font-size: clamp(1.75rem, 2.2vw, 2rem);
        margin-bottom: 1rem;
    }

    .home-about__text {
        margin-bottom: 1.75rem;
    }
}

@media (min-width: 1280px) {
    .home-about__container {
        gap: 4.5rem;
    }

    .home-about__media {
        width: 37rem;
    }

    .home-about__content {
        max-width: 32rem;
        padding-top: 1.5rem;
    }

    .home-about__overlay {
        border-width: 8px;
        border-radius: 16px;
    }
}

/* Home — destaques abaixo das notícias */
.home-highlights {
    padding: 0 0 3rem;
    background: var(--white);
}

.home-highlights__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.highlight-box {
    border-radius: 14px;
    padding: 1.5rem 1.6rem;
    border: 2px solid rgba(50, 169, 216, .2);
    background: linear-gradient(135deg, #f8fcfe 0%, #eef9fd 100%);
    min-height: 0;
}

.highlight-box--impact {
    border-left: 4px solid var(--brand);
}

.highlight-box--apac {
    background: linear-gradient(135deg, #fff 0%, #f0f9fc 100%);
}

.highlight-box__label {
    margin: 0 0 .75rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
}

.highlight-box__quote {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--text);
    font-style: normal;
}

.highlight-box__quote::before {
    content: "“";
    display: block;
    margin-bottom: .35rem;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--brand);
    font-weight: 700;
}

.highlight-box__text {
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.highlight-box__link {
    display: inline-block;
    margin-top: .85rem;
    font-size: .875rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.highlight-box__link:hover {
    text-decoration: underline;
}

/* Home — barra de estatísticas APAC */
.apac-stats-bar {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.apac-stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.apac-stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .85rem;
}

.apac-stats-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border: 2px solid #AC120D;
    border-radius: 50%;
    background: #f3f4f6;
    color: #AC120D;
}

.apac-stats-bar__icon i {
    font-size: 2.5rem;
    line-height: 1;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

.apac-stats-bar__text {
    margin: 0;
    max-width: 11rem;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.35;
    color: #AC120D;
}

@media (max-width: 1023px) {
    .impact-action__card {
        flex: 0 0 calc(50% - .625rem);
    }

    .apac-stats-bar__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .home-highlights__grid {
        grid-template-columns: 1fr;
    }

    .apac-stats-bar__grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 1rem;
    }

    .apac-stats-bar__item {
        flex: 0 0 calc(50% - .5rem);
        max-width: calc(50% - .5rem);
    }

    .apac-stats-bar__icon {
        width: 80px;
        height: 80px;
    }

    .apac-stats-bar__icon i {
        font-size: 2rem;
    }

    .apac-stats-bar__text {
        font-size: .875rem;
        max-width: 10rem;
    }
}

/* Página O que é APAC — layout alinhado à home */
.apac-page-intro {
    padding: 2.5rem 0 1.5rem;
    background: var(--white);
}

.apac-page-intro__title {
    margin: 0 0 .75rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
}

.apac-page-intro__lead {
    margin: 0;
    max-width: 46rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.apac-page-section__header {
    margin-bottom: 2rem;
    text-align: center;
}

.apac-page-section__title {
    margin: 0 0 .65rem;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--text);
}

.apac-page-section__subtitle {
    margin: 0 auto;
    max-width: 40rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.apac-page-story__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: start;
}

.apac-page-story__content p {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}

.apac-page-story__content p:last-child {
    margin-bottom: 0;
}

.apac-page-story__content--centered {
    max-width: 48rem;
    margin: 2rem auto 0;
    text-align: center;
}

.apac-page-story__media {
    margin: 0;
}

.apac-page-story__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.apac-page-story__media figcaption {
    margin-top: .75rem;
    font-size: .875rem;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.apac-page-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.apac-page-gallery__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 0;
}

.apac-page-gallery__item {
    margin: 0;
}

.apac-page-gallery__item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.apac-page-gallery__item figcaption {
    margin-top: .75rem;
    font-size: .875rem;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.apac-page-testimonials .testimonials-grid {
    margin: 0;
}

.apac-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.apac-testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    min-height: 100%;
    margin: 0;
    padding: 1.65rem 1.7rem;
    border-radius: 14px;
    border: 2px solid rgba(50, 169, 216, .2);
    background: linear-gradient(135deg, #fff 0%, #f0f9fc 100%);
    box-shadow: 0 4px 18px rgba(15, 23, 42, .04);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.apac-testimonial-card:hover {
    border-color: rgba(50, 169, 216, .42);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.apac-testimonial-card__quote {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.65;
    color: var(--text);
    font-style: normal;
}

.apac-testimonial-card__quote::before {
    content: "\201C";
    display: block;
    margin-bottom: .45rem;
    font-size: 1.85rem;
    line-height: 1;
    color: var(--brand);
    font-weight: 700;
}

.apac-testimonial-card__footer {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(50, 169, 216, .16);
}

.apac-testimonial-card__name {
    font-size: .98rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.apac-testimonial-card__role {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--brand);
}

@media (max-width: 767px) {
    .apac-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

.apac-page-elements .elements-banner {
    margin: 0;
}

.apac-page-elements .elements-banner h2 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.apac-page-elements .elements-intro {
    margin: 0 auto 2.25rem;
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: .95;
    text-align: center;
}

.apac-page-elements .elements-cta {
    margin-top: 2rem;
}

.apac-elements-index.elements-banner h2 {
    margin: 0 0 .75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.apac-elements-index .elements-intro {
    margin: 0 auto 2rem;
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: .95;
    text-align: center;
}

.elements-grid--links {
    list-style: none;
}

.elements-grid__link {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.elements-grid__link:hover {
    color: inherit;
}

.apac-page-elements-detail__content {
    max-width: none;
}

.apac-page-elements-detail__content .verse-quote,
.apac-page-elements-detail__verse {
    margin: 0 0 2rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(90deg, #f8fcfe 0%, #eef9fd 50%, #f8fcfe 100%);
    border: 2px solid rgba(50, 169, 216, .22);
    border-left: 4px solid var(--brand);
    border-radius: 14px;
    font-style: italic;
}

.apac-page-elements-detail__content .element-detail {
    scroll-margin-top: 6rem;
    margin-bottom: 1.25rem;
    padding: 1.75rem 2rem;
    background: var(--white);
    border: 2px solid rgba(50, 169, 216, .18);
    border-left: 4px solid var(--brand);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(30, 41, 59, .05);
}

.apac-page-elements-detail__content .element-detail:last-child {
    margin-bottom: 0;
}

.apac-page-elements-detail__content .element-detail h2 {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
}

.apac-implant-index.elements-banner {
    margin: 0;
}

.apac-implant-index.elements-banner h2 {
    margin: 0 0 .75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.apac-implant-index .elements-intro {
    margin: 0 auto 2rem;
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: .95;
    text-align: center;
}

.implant-blocks-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    text-align: left;
}

.implant-blocks-grid li {
    display: flex;
    min-height: 100%;
}

.implant-blocks-grid__link {
    flex-direction: row;
    align-items: center;
    gap: .75rem;
    width: 100%;
    height: 100%;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    transition: background .2s, transform .2s;
}

.implant-blocks-grid__link:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.implant-blocks-grid__num {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    font-size: .8rem;
}

.implant-blocks-grid__text {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    line-height: 1.4;
}

.implant-blocks-grid__text strong {
    font-size: .92rem;
    font-weight: 600;
}

.implant-blocks-grid__text small {
    font-size: .8rem;
    opacity: .88;
}

.apac-page-implant-detail__content {
    max-width: none;
}

.apac-page-implant-detail__content .implant-intro {
    margin-bottom: 2rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(90deg, #f8fcfe 0%, #eef9fd 50%, #f8fcfe 100%);
    border: 2px solid rgba(50, 169, 216, .22);
    border-left: 4px solid var(--brand);
    border-radius: 14px;
}

.apac-page-implant-detail__content .implant-block {
    scroll-margin-top: 6rem;
    margin-bottom: 2rem;
}

.apac-page-implant-detail__content .implant-block:last-child {
    margin-bottom: 0;
}

.apac-page-implant-detail__content .implant-block-title {
    border-radius: 14px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.apac-page-implant-detail__content .implant-step {
    border-radius: 14px;
    border: 2px solid rgba(50, 169, 216, .16);
    box-shadow: 0 4px 20px rgba(30, 41, 59, .05);
}

.apac-page-affiliation-detail__content {
    max-width: none;
}

.home-highlights:has(+ .apac-page-affiliation-detail) {
    padding-bottom: 1.25rem;
}

.section.apac-page-affiliation-detail {
    padding-top: 1rem;
    padding-bottom: 4rem;
}

.affiliation-intro {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(90deg, #f8fcfe 0%, #eef9fd 50%, #f8fcfe 100%);
    border: 2px solid rgba(50, 169, 216, .22);
    border-left: 4px solid var(--brand);
    border-radius: 14px;
}

.affiliation-intro p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.affiliation-docs {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.affiliation-doc {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    background: var(--white);
    border: 2px solid rgba(50, 169, 216, .18);
    border-left: 4px solid var(--brand);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(30, 41, 59, .05);
}

.affiliation-doc__num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1;
}

.affiliation-doc__content {
    min-width: 0;
}

.affiliation-doc__content p {
    margin: 0;
    line-height: 1.65;
}

.affiliation-doc__content a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.affiliation-contact {
    padding: 1.75rem 2rem;
    background: var(--brand-light);
    border-radius: 14px;
    border: 2px solid rgba(50, 169, 216, .2);
}

.affiliation-contact h2 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.affiliation-contact p {
    margin: 0 0 .35rem;
    line-height: 1.6;
}

.affiliation-contact p:last-child {
    margin-bottom: 0;
}

.apac-page-transfer-detail__content {
    max-width: none;
}

.home-highlights:has(+ .apac-page-transfer-detail) {
    padding-bottom: 1.25rem;
}

.section.apac-page-transfer-detail {
    padding-top: 1rem;
    padding-bottom: 4rem;
}

.transfer-detail {
    padding: 1.75rem 2rem;
    background: var(--white);
    border: 2px solid rgba(50, 169, 216, .18);
    border-left: 4px solid var(--brand);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(30, 41, 59, .05);
}

.transfer-detail h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 800;
    color: var(--brand-dark);
}

.transfer-detail p {
    margin: 0 0 1rem;
    line-height: 1.7;
}

.transfer-detail p:last-child {
    margin-bottom: 0;
}

.transfer-detail__action {
    margin-top: 1.25rem;
}

.transfer-detail__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.25rem;
    border-radius: 999px;
    background: var(--brand);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: background-color .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(50, 169, 216, .28);
}

.transfer-detail__link:hover {
    background: var(--brand-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.section:has(+ .apac-page-nav) {
    padding-bottom: 2rem;
}

.apac-page-nav {
    padding: 1rem 0 3rem;
}

.apac-page-nav__header {
    margin-bottom: 1.25rem;
}

.apac-page-nav__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.apac-page-nav__card {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: 1.35rem 1.4rem;
    border-radius: 14px;
    border: 2px solid rgba(50, 169, 216, .2);
    background: linear-gradient(135deg, #f8fcfe 0%, #eef9fd 100%);
    text-decoration: none;
    color: var(--text);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}

.apac-page-nav__card:hover {
    border-color: rgba(50, 169, 216, .45);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.apac-page-nav__card strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.apac-page-nav__label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand);
}

.apac-page-nav__arrow {
    margin-top: .35rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand);
}

@media (max-width: 900px) {
    .apac-page-story__grid,
    .apac-page-gallery__grid,
    .apac-page-pillars__grid,
    .apac-page-nav__grid {
        grid-template-columns: 1fr;
    }
}

/* Home — como apoiar */
.home-support-cta {
    padding: 3rem 0 3.5rem;
}

.home-support-cta__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(150px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.home-support-cta__intro {
    position: relative;
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background-color: #1e293b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow);
}

.home-support-cta__intro-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .58);
}

.home-support-cta__intro-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 100%;
    height: 100%;
    padding: 1.35rem 1.5rem;
}

.home-support-cta__title {
    margin: 0;
    width: 92%;
    max-width: none;
    font-size: clamp(1.45rem, 3.2vw, 2.15rem);
    font-weight: 700;
    line-height: 1.15;
    color: rgba(255, 255, 255, .82);
    text-align: right;
    font-style: normal;
}

.home-support-cta__card {
    position: relative;
    display: block;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background-color: #1e293b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

a.home-support-cta__card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

a.home-support-cta__card:hover .home-support-cta__card-overlay {
    background: rgba(0, 0, 0, .48);
}

.home-support-cta__card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .58);
    transition: background .2s;
}

.home-support-cta__card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 100%;
    height: 100%;
    padding: 1rem 1.1rem;
    gap: .85rem;
}

.home-support-cta__card-label {
    width: 100%;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: rgba(255, 255, 255, .82);
    text-align: right;
}

.home-support-cta__card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .48rem .9rem;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .94);
    white-space: nowrap;
    transition: background-color .2s, border-color .2s, transform .2s;
}

a.home-support-cta__card:hover .home-support-cta__card-button {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .72);
    transform: translateY(-1px);
}

.home-support-cta__card--1 {
    grid-column: 2;
    grid-row: 1;
}

.home-support-cta__card--2 {
    grid-column: 2;
    grid-row: 2;
}

.home-support-cta__card--3 {
    grid-column: 3;
    grid-row: 1;
}

.home-support-cta__card--4 {
    grid-column: 3;
    grid-row: 2;
}

@media (max-width: 1023px) {
    .home-support-cta__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .home-support-cta__intro {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 220px;
    }

    .home-support-cta__intro-content {
        padding: 1.25rem 1.35rem;
    }

    .home-support-cta__title {
        width: 100%;
        font-size: clamp(1.3rem, 5vw, 1.75rem);
    }

    .home-support-cta__card--1,
    .home-support-cta__card--2,
    .home-support-cta__card--3,
    .home-support-cta__card--4 {
        grid-column: auto;
        grid-row: auto;
        min-height: 140px;
    }
}

@media (max-width: 767px) {
    .home-support-cta__grid {
        grid-template-columns: 1fr;
    }
}

/* Home — CTA perguntas frequentes */
.home-faq-cta {
    padding: 2.5rem 0;
    background: var(--white);
}

.home-faq-cta__banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(50, 169, 216, .28);
    background:
        linear-gradient(120deg, rgba(50, 169, 216, .12) 0%, rgba(232, 246, 252, .95) 42%, #fff 100%),
        linear-gradient(135deg, #e8f6fc 0%, #fff 100%);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-faq-cta__banner:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    box-shadow: var(--shadow-hover);
    color: inherit;
}

.home-faq-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin: 0 0 .55rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand);
}

.home-faq-cta__title {
    margin: 0 0 .4rem;
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text);
    line-height: 1.2;
}

.home-faq-cta__text {
    margin: 0;
    max-width: 40rem;
    font-size: .98rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.home-faq-cta__button {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    flex-shrink: 0;
    padding: .85rem 1.25rem;
    border-radius: 999px;
    background: var(--brand);
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(50, 169, 216, .28);
    transition: background .2s ease;
}

.home-faq-cta__banner:hover .home-faq-cta__button {
    background: var(--brand-dark);
}

@media (max-width: 740px) {
    .home-faq-cta__banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem 1.35rem;
    }

    .home-faq-cta__button {
        width: 100%;
        justify-content: center;
    }
}

/* Página Seja parceiro */
.home-highlights + .section.apac-page-partner {
    padding-top: 2.75rem;
}

.apac-page-partner .apac-page-section__header {
    margin-bottom: 1.75rem;
}

.apac-page-partner__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .85rem;
}

.apac-page-partner__list li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 1.15rem 1rem 2.75rem;
    border: 1px solid rgba(50, 169, 216, .18);
    border-radius: 12px;
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    color: var(--text);
    line-height: 1.55;
}

.apac-page-partner__list li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: .7rem;
    height: .7rem;
    border-radius: 50%;
    background: var(--brand);
}

.apac-page-partner__list--compact {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.apac-page-partner__results .activity-card__head {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}

.apac-page-partner__results .activity-card__num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: .35rem .45rem;
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1;
    text-align: center;
    box-shadow: 0 6px 16px rgba(50, 169, 216, .28);
}

.apac-page-partner__results .activity-card__text {
    text-align: left;
    flex: 1;
    min-width: 0;
    margin: 0;
    padding-top: 0;
}

.apac-page-partner__steps {
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
    counter-reset: partner-step;
}

.apac-page-partner__steps li {
    counter-increment: partner-step;
    display: grid;
    grid-template-columns: 2.75rem 1fr;
    gap: .85rem 1rem;
    align-items: start;
    padding: 1.15rem 1.25rem;
    border-radius: 14px;
    border: 2px solid rgba(50, 169, 216, .18);
    background: #fff;
}

.apac-page-partner__steps li::before {
    content: counter(partner-step);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    grid-row: 1 / span 2;
}

.apac-page-partner__steps strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text);
}

.apac-page-partner__steps span {
    color: var(--text-muted);
    line-height: 1.55;
}

.apac-page-partner__instruments {
    padding: 1.75rem 1.75rem 1.85rem;
    border-radius: 16px;
    border: 2px solid rgba(50, 169, 216, .35);
    background:
        linear-gradient(135deg, rgba(50, 169, 216, .14) 0%, rgba(232, 246, 252, .95) 45%, #fff 100%);
    box-shadow: var(--shadow);
}

.apac-page-partner__instruments h3 {
    margin: 0 0 1.15rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--brand-dark);
}

.apac-page-partner__instruments ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.apac-page-partner__instruments li {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin: 0;
    padding: .9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(50, 169, 216, .22);
    background: rgba(255, 255, 255, .92);
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 4px 14px rgba(30, 41, 59, .04);
}

.apac-page-partner__instruments li::before {
    content: '';
    width: .65rem;
    height: .65rem;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .apac-page-partner__instruments ul {
        grid-template-columns: 1fr;
    }
}

.apac-page-partner__detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.apac-page-partner__detail-card {
    position: relative;
    padding: 1.6rem 1.65rem 1.7rem;
    border-radius: 16px;
    border: 2px solid rgba(50, 169, 216, .28);
    background:
        linear-gradient(145deg, rgba(50, 169, 216, .1) 0%, rgba(232, 246, 252, .9) 38%, #fff 100%);
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.apac-page-partner__detail-card:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    box-shadow: var(--shadow-hover);
}

.apac-page-partner__detail-card h3 {
    margin: 0 0 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid rgba(50, 169, 216, .2);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--brand-dark);
}

.apac-page-partner__detail-card p,
.apac-page-partner__detail-card li {
    color: var(--text);
    line-height: 1.6;
}

.apac-page-partner__detail-card p {
    margin: 0 0 .85rem;
    color: var(--text-muted);
}

.apac-page-partner__detail-card ul {
    margin: 0 0 1rem;
    padding-left: 1.15rem;
}

.apac-page-partner__detail-card li::marker {
    color: var(--brand);
}

.apac-page-partner__contact {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(50, 169, 216, .25);
    background: linear-gradient(120deg, rgba(50, 169, 216, .12) 0%, #fff 55%);
    box-shadow: var(--shadow);
}

.apac-page-partner__contact-info {
    min-width: 0;
}

.apac-page-partner__contact-label {
    margin: 0 0 .45rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand);
}

.apac-page-partner__contact .apac-page-section__title {
    margin: 0 0 .55rem;
}

.apac-page-partner__contact-text {
    margin: 0 0 1rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.apac-page-partner__contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .65rem;
}

.apac-page-partner__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: var(--text);
}

.apac-page-partner__contact-list i {
    margin-top: .2rem;
    color: var(--brand);
}

.apac-page-partner__contact-form-card {
    min-width: 0;
    padding: 1.5rem 1.5rem 1.6rem;
    border-radius: 14px;
    border: 2px solid rgba(50, 169, 216, .22);
    background: #fff;
    box-shadow: var(--shadow);
}

.apac-page-partner__contact-form-title {
    margin: 0 0 .4rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.apac-page-partner__contact-form-lead {
    margin: 0 0 1.15rem;
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.apac-page-partner__form .apac-page-contact__field-row.apac-page-partner__field-row {
    grid-template-columns: 1fr 1fr;
}

.apac-page-partner__form .apac-page-contact__submit {
    width: auto;
    margin-top: .25rem;
}

.section.apac-page-partner--contact,
.section.apac-page-partner--contact:has(+ .apac-page-nav) {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (max-width: 900px) {
    .apac-page-partner__detail-grid {
        grid-template-columns: 1fr;
    }

    .apac-page-partner__contact {
        padding: 1.4rem 1.35rem;
    }

    .apac-page-partner__form .apac-page-contact__field-row.apac-page-partner__field-row {
        grid-template-columns: 1fr;
    }

    .apac-page-partner__form .apac-page-contact__submit {
        width: 100%;
        justify-content: center;
    }
}

/* Página Seja parceiro — fim */
.home-partners {
    padding: 3rem 0 4rem;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.home-partners .section-header {
    margin-bottom: 2rem;
}

.home-partners .section-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--brand);
}

.home-partners__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.home-partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 6 * 1rem) / 7);
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 0.35rem;
    background: var(--white);
    border: 2px solid rgba(50, 169, 216, .15);
    border-radius: 14px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.home-partners__item:hover {
    border-color: rgba(50, 169, 216, .45);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.home-partners__item img {
    display: block;
    width: auto;
    height: auto;
    max-width: 92%;
    max-height: 92%;
    margin: auto;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1023px) {
    .home-partners__item {
        width: calc((100% - 3 * 1rem) / 4);
    }
}

@media (max-width: 767px) {
    .home-partners__item {
        width: calc((100% - 1rem) / 2);
        padding: 0.3rem;
    }
}

/* Cards */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: box-shadow .2s, transform .2s;
}

.card:hover {
    box-shadow: var(--shadow-hover);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.card-link:hover h3 { color: var(--brand); }

.card h3 {
    margin: 0 0 .5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    transition: color .2s;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
    margin-bottom: 1rem;
}

.grid-3 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-2 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Home — o que fazemos */
.home-what-we-do__header {
    margin-bottom: 2.5rem;
}

.home-what-we-do__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--brand);
    text-align: center;
}

.home-what-we-do__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.home-what-we-do__card {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    min-height: 100%;
    padding: 1.35rem 1.15rem;
    background: var(--white);
    border: 2px solid rgba(50, 169, 216, .22);
    border-radius: 14px;
    border-top: 4px solid var(--brand);
    box-shadow: var(--shadow);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.home-what-we-do__card:hover {
    border-color: rgba(50, 169, 216, .45);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.home-what-we-do__card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--brand);
}

.home-what-we-do__card-text {
    margin: 0;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text);
}

@media (max-width: 1023px) {
    .home-what-we-do__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .home-what-we-do__grid {
        grid-template-columns: 1fr;
    }
}

/* Home — depoimentos */
.home-testimonials {
    padding: 3.5rem 0 4rem;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.home-testimonials__layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.home-testimonials__story {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    margin: 0;
    padding: 2rem 1.85rem;
}

.home-testimonials__story-title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--text);
}

.home-testimonials__story-text {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    font-weight: 500;
    line-height: 1.65;
    color: var(--text-muted);
}

.home-testimonials__videos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.home-testimonials__videos-label {
    margin: 0;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
}

.home-testimonials__carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    column-gap: .75rem;
    row-gap: .5rem;
    align-items: center;
    width: 100%;
}

.home-testimonials__viewport {
    grid-column: 2;
    grid-row: 2;
    overflow: hidden;
    border-radius: 14px;
    background: #0f172a;
    box-shadow: var(--shadow);
    min-width: 0;
}

.home-testimonials__swipe-layer {
    display: none;
}

.home-testimonials__nav--prev {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
}

.home-testimonials__nav--next {
    grid-column: 3;
    grid-row: 2;
    align-self: center;
}

.home-testimonials__track {
    display: flex;
    transition: transform .45s ease;
}

.home-testimonials__slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.home-testimonials__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.home-testimonials__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-testimonials__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(50, 169, 216, .35);
    border-radius: 50%;
    background: var(--white);
    color: var(--brand);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color .2s, border-color .2s, color .2s, transform .2s;
}

.home-testimonials__nav:hover:not(:disabled) {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
    transform: translateY(-1px);
}

.home-testimonials__nav:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.home-testimonials__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

.home-testimonials__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(50, 169, 216, .25);
    cursor: pointer;
    transition: background-color .2s, transform .2s;
}

.home-testimonials__dot.is-active,
.home-testimonials__dot:hover {
    background: var(--brand);
    transform: scale(1.1);
}

@media (max-width: 1023px) {
    .home-testimonials__layout {
        grid-template-columns: 1fr;
    }

    .home-testimonials__story {
        padding: 1.65rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .impact-action__header {
        grid-template-columns: 1fr;
        gap: .75rem;
        margin-bottom: .75rem;
    }

    .impact-action__header-spacer {
        display: none;
    }

    .impact-action__header-main {
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
    }

    .impact-action__carousel {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        grid-template-areas: "media";
        gap: 0;
    }

    .impact-action__viewport {
        grid-area: media;
        grid-column: 1;
        grid-row: 1;
        width: 100%;
    }

    .impact-action__nav--prev,
    .impact-action__nav--next {
        grid-area: media;
        grid-row: 1;
        align-self: center;
        z-index: 2;
        box-shadow: 0 2px 14px rgba(15, 23, 42, .16);
        background: rgba(255, 255, 255, .94);
    }

    .impact-action__nav--prev {
        justify-self: start;
        margin-left: .4rem;
    }

    .impact-action__nav--next {
        justify-self: end;
        margin-right: .4rem;
    }

    .home-testimonials__carousel {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        grid-template-areas:
            "label"
            "media";
        gap: .5rem;
    }

    .home-testimonials__videos-label {
        grid-area: label;
        grid-column: 1;
        grid-row: 1;
    }

    .home-testimonials__viewport {
        grid-area: media;
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        position: relative;
    }

    .home-testimonials__swipe-layer {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .home-testimonials__nav--prev,
    .home-testimonials__nav--next {
        grid-area: media;
        grid-row: 2;
        align-self: center;
        z-index: 2;
        box-shadow: 0 2px 14px rgba(15, 23, 42, .16);
        background: rgba(255, 255, 255, .94);
    }

    .home-testimonials__nav--prev {
        justify-self: start;
        margin-left: .4rem;
    }

    .home-testimonials__nav--next {
        justify-self: end;
        margin-right: .4rem;
    }
}

/* Pillars / institutional blocks */
.pillar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: all .2s;
}

.pillar-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow);
}

.pillar-card h3 {
    margin: 0 0 .75rem;
    font-size: 1.15rem;
    color: var(--brand);
}

.pillar-card p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    font-size: .95rem;
}

/* Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.data-table th,
.data-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    background: var(--brand-light);
    font-weight: 600;
    color: var(--text);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.data-table tr:hover td { background: rgba(50,169,216,.04); }

.table-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

/* Badges */
.badge {
    display: inline-block;
    padding: .2rem .65rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    background: var(--brand-light);
    color: var(--brand-dark);
}

.badge-active {
    background: var(--brand);
    color: var(--white);
}

/* Filters */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.filter-pill {
    padding: .4rem 1rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 500;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    transition: all .2s;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

/* Prose / content pages */
.page-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    margin: 0 0 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
}

.page-content .lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.page-content .prose img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.article-hero {
    margin: 0 0 1.5rem;
}

.article-hero img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
}

.news-content .content-figure {
    margin: 1.75rem 0;
    text-align: center;
}

.news-content .content-figure img {
    width: 100%;
    height: auto;
    margin: 0;
}

.news-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--brand);
    background: var(--brand-light, #e8f6fc);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text);
}

.news-content blockquote p {
    margin: 0;
}

.news-content blockquote p + p {
    margin-top: .75rem;
}

.news-content hr,
.prose hr {
    border: 0;
    height: 0;
    margin: 1.75rem auto;
    border-top: 1px solid var(--border);
    width: 100%;
}

.news-content hr.fbac-divider,
.prose hr.fbac-divider {
    border: 0;
    height: 0;
    margin: 1.75rem auto;
    border-top: 3px solid var(--brand);
    width: 100%;
}

/* Página de notícias */
.apac-page-news {
    padding-top: 0;
}

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

.news-cards .impact-action__card {
    flex: none;
}

.apac-page-intro--news .apac-page-intro__lead,
.apac-page-intro--news .news-detail__head {
    max-width: none;
}

.news-detail__category {
    margin: 0 0 .65rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--brand);
}

.news-detail__meta {
    margin: 0 0 1rem;
    font-size: .9rem;
    color: var(--text-muted);
}

.news-detail__meta-sep {
    margin: 0 .35rem;
}

.apac-page-news-detail {
    padding-top: 0;
}

.apac-page-news-detail__content {
    width: 100%;
    max-width: none;
    margin: 0;
}

.news-detail__hero {
    margin: 0 0 2rem;
}

.news-detail__hero img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 2px solid rgba(50, 169, 216, .22);
}

.news-detail__back {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(50, 169, 216, .15);
}

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

@media (max-width: 640px) {
    .news-cards {
        grid-template-columns: 1fr;
    }
}

.page-content--wide {
    max-width: none;
}

.apac-page-vmv .vmv-grid,
.apac-page-values .values-banner {
    margin: 0;
}

.home-highlights:has(+ .apac-page-story--about) {
    padding-bottom: 1.75rem;
}

.apac-page-story--about {
    padding: 0 0 3.5rem;
}

.apac-page-story--about .apac-page-section__title {
    margin-bottom: 1.5rem;
    text-align: left;
}

.apac-page-story--about .apac-page-story__content {
    max-width: none;
    margin: 0;
    text-align: left;
}

.apac-page-story--about .apac-page-story__content p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.apac-page-directors__empty {
    margin: 0;
    padding: 1.5rem 1.6rem;
    border: 2px dashed rgba(50, 169, 216, .28);
    border-radius: 14px;
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    color: var(--text-muted);
    text-align: center;
}

.apac-page-directors__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.director-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, .06);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.director-card:hover {
    border-color: var(--brand);
    box-shadow: 0 12px 32px rgba(50, 169, 216, .14);
    transform: translateY(-2px);
}

.director-card__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(160deg, #e8f6fc 0%, #d4eff9 100%);
}

.director-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.director-card__media-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--brand);
    font-size: 3rem;
}

.director-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 1.35rem 1.25rem 1.5rem;
    text-align: center;
}

.director-card__role {
    margin: 0 0 .45rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand);
}

.director-card__name {
    margin: 0 0 .75rem;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1e293b;
}

.director-card__bio {
    margin: 0 0 1.15rem;
    font-size: .92rem;
    line-height: 1.55;
    color: #64748b;
}

.director-card__social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem;
    margin-top: auto;
}

.director-card__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border: 1px solid rgba(15, 23, 42, .18);
    border-radius: 3px;
    color: #334155;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}

.director-card__social-link:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-light);
}

.director-card__social-link i {
    font-size: .9rem;
    line-height: 1;
}

.home-highlights:has(+ .apac-page-activities-intro) {
    padding-bottom: 1.75rem;
}

.apac-page-activities-intro {
    padding: 0 0 1.25rem;
}

.apac-page-activities-intro .apac-page-section__title {
    margin-bottom: 1.25rem;
    text-align: left;
}

.section.apac-page-activities {
    padding-top: 1.25rem;
    padding-bottom: 4rem;
}

.apac-page-activities .apac-page-section__header {
    margin-bottom: 2rem;
}

.activity-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
}

.activity-card {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    min-height: 100%;
    padding: 1.4rem 1.45rem 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    border: 2px solid rgba(50, 169, 216, .18);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(30, 41, 59, .05);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.activity-card:hover {
    border-color: rgba(50, 169, 216, .42);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.activity-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.activity-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.activity-card__num {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: rgba(50, 169, 216, .55);
}

.activity-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--brand-dark, var(--brand));
}

.activity-card__text {
    margin: 0;
    font-size: .98rem;
    line-height: 1.65;
    color: var(--text-muted);
}

@media (max-width: 767px) {
    .activity-cards {
        grid-template-columns: 1fr;
    }
}

.apac-page-pfi-detail {
    padding-top: 0;
}

.apac-page-pfi-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.apac-page-pfi-logo img {
    width: auto;
    max-width: min(100%, 360px);
    height: auto;
    display: block;
}

.apac-page-intro--ccbs .apac-page-intro__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
    gap: 2rem;
    align-items: center;
}

.apac-page-intro--ccbs .apac-page-intro__head-text {
    min-width: 0;
}

.apac-page-seguindo-detail {
    padding-top: 0;
}

.apac-page-downloads {
    padding-top: 0;
}

.apac-page-downloads__intro {
    margin: 0 0 2.5rem;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.apac-page-downloads__group + .apac-page-downloads__group {
    margin-top: 2.75rem;
}

.apac-page-downloads__group .apac-page-section__title {
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 100%;
    padding: 1.15rem 1.25rem;
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    border: 2px solid rgba(50, 169, 216, .18);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(30, 41, 59, .05);
    color: var(--text);
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.download-card:hover {
    border-color: rgba(50, 169, 216, .42);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
    color: var(--text);
}

.download-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.download-card__label {
    flex: 1;
    font-weight: 600;
    line-height: 1.45;
}

.download-card__arrow {
    color: var(--brand);
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .download-cards {
        grid-template-columns: 1fr;
    }
}

.apac-page-ccbs-detail {
    padding-top: 0;
}

.apac-page-ccbs-video .apac-page-section__header {
    margin-bottom: 1.5rem;
}

.apac-page-ccbs-video__embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: #0f172a;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.apac-page-ccbs-video__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .apac-page-ccbs-video__embed {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        border-radius: 0;
        box-shadow: none;
    }
}

.apac-page-ccbs-logo {
    margin: 0;
    flex-shrink: 0;
    justify-self: end;
}

.apac-page-ccbs-logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
}

.apac-page-mas-alla-banner {
    padding-top: 0;
    padding-bottom: 0;
}

.mas-alla-banner {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 52, 96, .12);
}

.mas-alla-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 320px;
}

.mas-alla-profile-grid {
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: 2rem;
    align-items: start;
}

.mas-alla-profile-text {
    min-width: 0;
}

.mas-alla-portrait {
    margin: 0;
    max-width: none;
}

.mas-alla-portrait img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(15, 52, 96, .14);
}

.mas-alla-quote {
    margin: 0;
    padding: 0;
    border: 0;
    font-style: italic;
    color: var(--text-muted);
}

.mas-alla-quote p + p {
    margin-top: 1rem;
}

.apac-page-mas-alla-partners .mas-alla-countries {
    margin-bottom: 2.5rem;
}

.mas-alla-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mas-alla-mission-card {
    border-radius: 14px;
    padding: 1.5rem 1.6rem;
    border: 2px solid rgba(50, 169, 216, .2);
    border-left: 4px solid var(--brand);
    background: linear-gradient(135deg, #f8fcfe 0%, #eef9fd 100%);
    height: 100%;
}

.mas-alla-mission-quote {
    margin: 0;
    padding: 0;
    border: 0;
}

.mas-alla-mission-quote p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
}

.mas-alla-mission-quote p::before {
    content: "“";
    display: block;
    margin-bottom: .35rem;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--brand);
    font-weight: 700;
    font-style: normal;
}

.mas-alla-mission-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mas-alla-mission-quote cite a {
    color: var(--brand);
    text-decoration: none;
}

.mas-alla-mission-quote cite a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mas-alla-mission-grid {
        grid-template-columns: 1fr;
    }

    .mas-alla-profile-grid {
        grid-template-columns: 1fr;
    }

    .mas-alla-portrait {
        max-width: 340px;
        margin: 0 auto;
    }

    .apac-page-intro--ccbs .apac-page-intro__head {
        grid-template-columns: 1fr;
    }

    .apac-page-ccbs-logo {
        justify-self: center;
        max-width: 220px;
        margin: 0 auto;
    }
}

.apac-page-ccbs-phases .viagem-partners {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 2.5rem;
}

.apac-page-ccbs-sessions__header {
    margin-top: 1rem;
}

.apac-page-ccbs-sessions__header .apac-page-section__title {
    font-size: 1.35rem;
}

@media (max-width: 900px) {
    .apac-page-ccbs-phases .viagem-partners {
        grid-template-columns: 1fr;
    }
}

.apac-page-pfi-detail__content {
    max-width: none;
}

.apac-page-pfi-detail__content p {
    margin: 0 0 1.25rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text);
}

.apac-page-pfi-detail__content p:last-child {
    margin-bottom: 0;
}

.apac-page-campaign-detail {
    padding-top: 0;
}

.apac-page-campaign-detail__content {
    max-width: 820px;
}

.apac-page-campaign-detail__content .campaign-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
    gap: 1.75rem;
    align-items: start;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(50, 169, 216, .16);
}

.apac-page-campaign-detail__content .campaign-intro h2 {
    margin-top: 0;
    clear: none;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    line-height: 1.35;
}

.apac-page-campaign-detail__content .campaign-intro-text {
    min-width: 0;
}

.apac-page-campaign-detail__content .campaign-poster {
    margin: 0;
}

.apac-page-campaign-detail__content .campaign-poster img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    display: block;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.apac-page-viagem-intro {
    padding-top: 0;
}

.apac-page-viagem__content {
    width: 100%;
    max-width: none;
    text-align: left;
}

.apac-page-viagem__content .apac-page-section__title {
    margin-bottom: 1.25rem;
}

.apac-page-viagem-intro .viagem-questions {
    list-style: none;
    margin: 1.25rem 0 1.5rem;
    padding: 0;
    display: grid;
    gap: .75rem;
}

.apac-page-viagem-intro .viagem-questions li {
    margin: 0;
    padding: .9rem 1.1rem;
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    border: 2px solid rgba(50, 169, 216, .16);
    border-left: 4px solid var(--brand);
    border-radius: 12px;
    font-size: 1rem;
}

.apac-stats-bar--viagem {
    background: linear-gradient(180deg, #f0f9fd 0%, #e8f6fc 100%);
}

.apac-stats-bar__grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.apac-page-viagem-facilitator .viagem-facilitator-intro {
    max-width: 760px;
    margin: 0 auto 1.75rem;
    text-align: center;
    color: var(--text-muted);
    line-height: 1.7;
}

.activity-cards--profile .activity-card__num {
    font-size: .95rem;
    text-transform: lowercase;
}

.viagem-partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
}

.viagem-partner-card {
    padding: 1.5rem 1.6rem;
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    border: 2px solid rgba(50, 169, 216, .18);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(30, 41, 59, .05);
}

.viagem-partner-card__title {
    margin: 0 0 .85rem;
    font-size: 1.05rem;
    color: var(--brand-dark);
}

.viagem-partner-card p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-muted);
}

.viagem-contact-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    border: 2px solid rgba(50, 169, 216, .2);
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.viagem-contact-card .apac-page-section__title {
    margin-bottom: 1rem;
}

.viagem-contact-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: .85rem;
    text-align: left;
}

.viagem-contact-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1rem;
}

.viagem-contact-list i {
    width: 1.25rem;
    color: var(--brand);
    text-align: center;
}

.viagem-contact-email {
    margin: 1.25rem 0 0;
    text-align: center;
    font-size: 1.05rem;
}

.viagem-contact-email a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
}

.viagem-contact-email a:hover {
    text-decoration: underline;
}

.viagem-blog-banner {
    margin: 2.5rem auto 0;
    max-width: 420px;
    text-align: center;
}

.viagem-blog-banner img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

@media (max-width: 900px) {
    .apac-stats-bar__grid--4,
    .viagem-partners {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .apac-stats-bar__grid--4 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 1rem;
    }

    .apac-stats-bar__grid--4 .apac-stats-bar__item {
        flex: 0 0 calc(50% - .5rem);
        max-width: calc(50% - .5rem);
    }

    .viagem-partners {
        grid-template-columns: 1fr;
    }

    .viagem-contact-card {
        padding: 1.5rem 1.25rem;
    }
}

/* Página — Fale conosco */
.apac-page-contact {
    padding-top: 0;
}

.apac-page-contact__denuncia {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(90deg, #fff8f8 0%, #fff1f1 50%, #fff8f8 100%);
    border: 2px solid rgba(172, 18, 13, .2);
    border-left: 4px solid #AC120D;
    border-radius: 14px;
}

.apac-page-contact__denuncia-label {
    margin: 0 0 .35rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #AC120D;
}

.apac-page-contact__denuncia-content p:last-child {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.apac-page-contact__denuncia-btn {
    flex-shrink: 0;
}

.apac-page-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 1.5rem;
    align-items: start;
}

.apac-page-contact__grid--volunteer {
    grid-template-columns: 1fr;
}

.apac-page-contact__grid--volunteer .apac-page-contact__field-row {
    grid-template-columns: 1fr 7rem;
}

.apac-page-contact__grid--volunteer .apac-page-contact__submit {
    width: auto;
}

.apac-page-contact__field-row {
    display: grid;
    grid-template-columns: 1fr 7rem;
    gap: 1rem;
}

.apac-page-contact__card,
.apac-page-contact__form-card {
    padding: 1.75rem 1.85rem;
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    border: 2px solid rgba(50, 169, 216, .18);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.apac-page-contact__card .apac-page-section__title,
.apac-page-contact__form-card .apac-page-section__title {
    margin: 0 0 1rem;
    text-align: left;
}

.apac-page-contact__intro {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.apac-page-contact__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.15rem;
}

.apac-page-contact__list li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}

.apac-page-contact__list i {
    width: 1.25rem;
    margin-top: .2rem;
    color: var(--brand);
    text-align: center;
    flex-shrink: 0;
}

.apac-page-contact__list strong {
    display: block;
    margin-bottom: .25rem;
    color: var(--text);
}

.apac-page-contact__list p {
    margin: 0;
    line-height: 1.55;
    color: var(--text-muted);
}

.apac-page-contact__address {
    white-space: pre-line;
}

.apac-page-contact__link {
    display: inline-block;
    margin-top: .45rem;
    font-size: .875rem;
    font-weight: 700;
}

.apac-page-contact__map-wrap {
    margin-top: 1.25rem;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(50, 169, 216, .16);
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 10;
    background: var(--brand-light);
}

.apac-page-contact__map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.apac-page-contact__form {
    display: grid;
    gap: 1rem;
}

.apac-page-contact__field label {
    display: block;
    margin-bottom: .4rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
}

.apac-page-contact__field label > span[aria-hidden="true"] {
    color: #AC120D;
}

.apac-page-contact__check {
    display: flex !important;
    align-items: flex-start;
    gap: .65rem;
    margin: 0 !important;
    font-weight: 500 !important;
    color: var(--text);
    cursor: pointer;
    line-height: 1.45;
}

.apac-page-contact__check input[type="checkbox"] {
    width: 1.1rem !important;
    min-width: 1.1rem;
    height: 1.1rem;
    margin: .15rem 0 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    accent-color: var(--brand);
}

.apac-page-contact__check span {
    color: var(--text) !important;
    flex: 1;
    min-width: 0;
}

.apac-page-contact__field input:not([type="checkbox"]):not([type="radio"]),
.apac-page-contact__field textarea,
.apac-page-contact__field select {
    width: 100%;
    padding: .7rem .85rem;
    border: 2px solid rgba(50, 169, 216, .22);
    border-radius: 10px;
    font: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}

.apac-page-contact__field input:not([type="checkbox"]):not([type="radio"]):focus,
.apac-page-contact__field textarea:focus,
.apac-page-contact__field select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(50, 169, 216, .15);
}

.apac-page-contact__field input:not([type="checkbox"]):not([type="radio"]).is-invalid,
.apac-page-contact__field textarea.is-invalid,
.apac-page-contact__field select.is-invalid {
    border-color: #AC120D;
}

.apac-page-contact__field textarea {
    resize: vertical;
    min-height: 7rem;
}

.apac-page-contact__hint {
    margin: .35rem 0 0;
    font-size: .8rem;
    color: var(--text-muted);
}

.apac-page-contact__error {
    margin: .35rem 0 0;
    font-size: .8rem;
    color: #AC120D;
}

.apac-page-contact__submit {
    justify-self: start;
    min-width: 12rem;
}

.apac-page-contact__alert {
    margin-bottom: 1rem;
    padding: .85rem 1rem;
    border-radius: 10px;
    font-size: .925rem;
    line-height: 1.5;
}

.apac-page-contact__alert--success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.apac-page-contact__alert--error {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #9f1239;
}

@media (max-width: 900px) {
    .apac-page-contact__grid,
    .apac-page-contact__grid--volunteer {
        grid-template-columns: 1fr;
    }

    .apac-page-contact__field-row {
        grid-template-columns: 1fr;
    }

    .apac-page-contact__grid--volunteer .apac-page-contact__submit {
        width: 100%;
        justify-content: center;
    }

    .apac-page-contact__denuncia {
        flex-direction: column;
        align-items: stretch;
    }

    .apac-page-contact__denuncia-btn {
        width: 100%;
        justify-content: center;
    }
}

.apac-page-bio-detail {
    padding-top: 0;
}

.apac-page-bio-detail__content {
    max-width: none;
}

.apac-page-bio-detail__content.prose .page-photo {
    float: right;
    margin: 0 0 1.5rem 1.75rem;
    text-align: center;
}

.apac-page-bio-detail__content.prose .page-photo img {
    width: auto;
    max-width: 240px;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.apac-page-bio-detail__content.prose .verse-quote:first-of-type {
    margin-top: 0;
}

.apac-page-bio-detail__content .bio-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 300px);
    gap: 1.75rem;
    align-items: start;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(50, 169, 216, .16);
}

.apac-page-bio-detail__content .bio-intro .page-photo {
    float: none;
    margin: 0;
    order: 2;
}

.apac-page-bio-detail__content .bio-intro .page-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.apac-page-bio-detail__content .bio-intro-text {
    min-width: 0;
}

.apac-page-bio-detail__content .bio-intro .verse-quote {
    margin-top: 0;
}

.apac-page-bio-detail__content .bio-intro h2 {
    margin-top: 1.25rem;
    clear: none;
}

.apac-page-bio-detail__content .bio-intro h3 {
    margin-top: .5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand);
    text-transform: none;
    letter-spacing: 0;
}

.apac-page-bio-detail__content .honors-list,
.apac-page-seguindo-values .honors-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .85rem;
    counter-reset: honors;
}

.apac-page-bio-detail__content .honors-list li,
.apac-page-seguindo-values .honors-list li {
    position: relative;
    margin: 0;
    padding: 1rem 1.15rem 1rem 3rem;
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    border: 2px solid rgba(50, 169, 216, .16);
    border-radius: 12px;
    font-size: .98rem;
    line-height: 1.65;
    counter-increment: honors;
}

.apac-page-bio-detail__content .honors-list li::before,
.apac-page-seguindo-values .honors-list li::before {
    content: counter(honors);
    position: absolute;
    left: 1rem;
    top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
    line-height: 1;
}

.apac-page-bio-detail__content .topic-grid {
    gap: 1.15rem;
}

.apac-page-bio-detail__content .topic-card {
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    border: 2px solid rgba(50, 169, 216, .18);
    border-left: 4px solid var(--brand);
    border-radius: 14px;
    padding: 1.35rem 1.4rem;
    box-shadow: 0 4px 18px rgba(30, 41, 59, .04);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.apac-page-bio-detail__content .topic-card:hover {
    border-color: rgba(50, 169, 216, .42);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .apac-page-bio-detail__content.prose .page-photo {
        float: none;
        margin: 0 auto 1.5rem;
        max-width: 280px;
    }

    .apac-page-bio-detail__content .bio-intro {
        grid-template-columns: 1fr;
    }

    .apac-page-bio-detail__content .bio-intro .page-photo {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
}

.apac-page-bio-detail__content .timeline--vertical {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 1.5rem 0 2.5rem;
    padding: 0;
}

.apac-page-bio-detail__content .timeline--vertical::before {
    content: "";
    position: absolute;
    left: 1.18rem;
    top: .85rem;
    bottom: .85rem;
    width: 2px;
    background: linear-gradient(180deg, var(--brand) 0%, rgba(50, 169, 216, .28) 100%);
}

.apac-page-bio-detail__content .timeline--vertical .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: .55rem;
    margin: 0 0 1rem;
    padding: 1.2rem 1.35rem 1.25rem 3.35rem;
    background: linear-gradient(135deg, #fff 0%, #f5fbfe 100%);
    border: 2px solid rgba(50, 169, 216, .16);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(30, 41, 59, .04);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.apac-page-bio-detail__content .timeline--vertical .timeline-item:hover {
    border-color: rgba(50, 169, 216, .38);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.apac-page-bio-detail__content .timeline--vertical .timeline-item::before {
    content: "";
    position: absolute;
    left: .72rem;
    top: 1.45rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px rgba(50, 169, 216, .35);
    z-index: 1;
}

.apac-page-bio-detail__content .timeline--vertical .timeline-item:last-child {
    margin-bottom: 0;
}

.apac-page-bio-detail__content .timeline--vertical .timeline-item--milestone {
    border-color: rgba(172, 18, 13, .22);
    background: linear-gradient(135deg, #fff 0%, #fff7f7 100%);
}

.apac-page-bio-detail__content .timeline--vertical .timeline-item--milestone::before {
    background: #ac120d;
    box-shadow: 0 0 0 2px rgba(172, 18, 13, .28);
}

.apac-page-bio-detail__content .timeline--vertical .timeline-item dt {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: rgba(50, 169, 216, .12);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--brand);
    line-height: 1.3;
}

.apac-page-bio-detail__content .timeline--vertical .timeline-item--milestone dt {
    background: rgba(172, 18, 13, .1);
    color: #ac120d;
}

.apac-page-bio-detail__content .timeline--vertical .timeline-item dd {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
}

@media (max-width: 700px) {
    .apac-page-bio-detail__content .timeline--vertical::before {
        left: .95rem;
    }

    .apac-page-bio-detail__content .timeline--vertical .timeline-item {
        padding-left: 2.85rem;
    }

    .apac-page-bio-detail__content .timeline--vertical .timeline-item::before {
        left: .5rem;
    }
}

/* Quem somos — Visão, Missão e Valores */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}

.vmv-box {
    background: var(--brand-light, #e8f6fc);
    border: 1px solid rgba(50, 169, 216, .25);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
}

.vmv-box h3 {
    margin: 0 0 .75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .03em;
}

.vmv-box p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
    color: var(--text);
}

.values-banner {
    background: var(--brand);
    color: var(--white);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    margin: 2rem 0;
    text-align: center;
}

.values-banner h3 {
    margin: 0 0 .75rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.values-banner > p {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    opacity: .95;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.values-list li {
    font-size: 1.125rem;
    font-weight: 700;
    padding: .65rem 1.35rem;
    background: rgba(255, 255, 255, .15);
    border-radius: 999px;
    white-space: nowrap;
}

.values-list li:not(:last-child)::after {
    content: none;
}

@media (max-width: 900px) {
    .vmv-grid {
        grid-template-columns: 1fr;
    }
}

/* Nossas Atividades */
.page-hero-image {
    margin: 0 0 2rem;
}

.page-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

.page-logo {
    text-align: center;
    margin: 0 0 2rem;
}

.page-logo img {
    width: auto;
    height: auto;
    max-width: none;
    display: inline-block;
}

.page-photo {
    float: right;
    margin: 0 0 1rem 1.5rem;
    text-align: center;
}

.bio-intro {
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.campaign-intro {
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.campaign-intro h2 {
    margin-top: 0;
    clear: none;
}

.campaign-poster {
    margin: 0;
}

.page-content .prose .campaign-intro .campaign-poster img,
.page-content .prose .campaign-poster img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    display: block;
    border-radius: var(--radius);
}

.campaign-poster--center {
    max-width: 420px;
    margin: 0 auto 2rem;
}

.content-figure {
    margin: 2rem 0;
    text-align: center;
    clear: both;
}

.page-content .prose .content-figure img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius);
}

.content-figure figcaption {
    margin-top: .75rem;
    font-size: .9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

.content-figure--wide img {
    width: 100%;
}

.content-figure--right {
    float: right;
    max-width: 240px;
    margin: 0 0 1rem 1.5rem;
    clear: right;
    text-align: center;
}

.elements-banner {
    background: linear-gradient(135deg, var(--brand) 0%, #1a8ab8 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.prose .elements-banner h2 {
    margin: 0 0 .75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .04em;
    clear: none;
}

.prose .elements-banner .elements-intro {
    margin: 0 auto 2rem;
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: .95;
    text-align: center;
}

.elements-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: left;
}

.elements-grid li {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.45;
    transition: background .2s, transform .2s;
}

.elements-grid li:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.elements-num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--white);
    color: var(--brand);
    border-radius: 50%;
    font-size: .85rem;
    font-weight: 700;
}

.elements-cta {
    margin: 1.5rem 0 0;
    text-align: center;
}

.elements-cta a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.elements-cta a:hover {
    opacity: .9;
}

.method-quote {
    margin-top: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 0 0 2.5rem;
}

.testimonial-card {
    margin: 0;
    padding: 1.5rem;
    background: var(--brand-light);
    border-left: 4px solid var(--brand);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.testimonial-card p {
    margin: 0 0 1rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--text);
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.testimonial-card footer strong {
    font-size: .95rem;
    color: var(--brand);
}

.testimonial-card footer span {
    font-size: .85rem;
    color: var(--text-muted);
}

.element-detail {
    margin: 0 0 1.5rem;
    padding: 1.75rem 2rem;
    background: var(--brand-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--brand);
}

.element-detail h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1.25rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand);
    text-transform: none;
    letter-spacing: 0;
    clear: none;
}

.element-detail h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.element-detail p {
    margin: 0 0 1rem;
    line-height: 1.7;
}

.element-detail p:last-child {
    margin-bottom: 0;
}

.element-num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
}

.implant-intro {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: var(--brand-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--brand);
}

.implant-intro h2 {
    margin: 0 0 .75rem;
    font-size: 1.35rem;
    color: var(--brand);
    clear: none;
}

.implant-intro p {
    margin: 0;
    line-height: 1.7;
}

.implant-block {
    margin-bottom: 2.5rem;
}

.implant-block-title {
    margin: 0 0 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--brand);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    clear: none;
}

.prose .implant-block-title {
    color: var(--white);
}

.implant-step {
    margin: 0 0 1.25rem;
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    border-left: 4px solid var(--brand);
}

.implant-step h3 {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}

.implant-step-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 .5rem;
    background: var(--brand);
    color: var(--white);
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 700;
}

.implant-step p {
    margin: 0 0 1rem;
    line-height: 1.7;
}

.implant-step p:last-child {
    margin-bottom: 0;
}

.implant-step ul,
.implant-step ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
    line-height: 1.7;
}

.implant-step li {
    margin-bottom: .5rem;
}

.implant-step li:last-child {
    margin-bottom: 0;
}

.bio-intro .page-photo {
    float: none;
    margin: 0;
    order: 2;
}

.bio-intro-text {
    order: 1;
    min-width: 0;
}

.bio-intro .verse-quote {
    margin-top: 0;
}

.bio-intro h2 {
    margin-top: 0;
    clear: none;
}

.bio-intro h3 {
    clear: none;
}

.page-content .prose .bio-intro .page-photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    display: block;
    border-radius: var(--radius);
}

.page-content .prose .page-photo img {
    width: auto;
    height: auto;
    max-width: 160px;
    margin: 0;
    display: block;
    border-radius: var(--radius);
}

.prose h2 {
    margin: 2.5rem 0 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: .03em;
    clear: both;
}

.prose h2:first-of-type {
    margin-top: 0;
}

.prose h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
}

.prose p {
    margin: 0 0 1rem;
    line-height: 1.7;
}

.verse-quote,
.prayer-quote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--brand-light);
    border-left: 4px solid var(--brand);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.verse-quote p,
.prayer-quote p {
    margin: 0 0 .75rem;
}

.verse-quote p:last-child,
.prayer-quote p:last-child {
    margin-bottom: 0;
}

.verse-quote cite,
.prayer-quote cite {
    display: block;
    margin-top: .75rem;
    font-style: normal;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.timeline {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 11rem 1fr;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--brand-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--brand);
}

.timeline-item dt {
    margin: 0;
    font-weight: 700;
    font-size: .9rem;
    color: var(--brand);
}

.timeline-item dd {
    margin: 0;
    line-height: 1.6;
    font-size: .95rem;
}

.meta-note {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem !important;
}

.honors-list {
    margin: 0;
    padding-left: 1.5rem;
    display: grid;
    gap: .5rem;
}

.honors-list li {
    line-height: 1.6;
    font-size: .95rem;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.topic-card {
    background: var(--brand-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--brand);
    padding: 1.25rem;
}

.topic-card h3 {
    margin: 0 0 .5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand);
}

.topic-card p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .elements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .elements-banner {
        padding: 1.75rem 1.25rem;
    }

    .elements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .bio-intro,
    .campaign-intro,
    .apac-page-campaign-detail__content .campaign-intro {
        grid-template-columns: 1fr;
    }

    .apac-page-campaign-detail__content .campaign-poster {
        max-width: 280px;
        margin: 0 auto;
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .bio-intro .page-photo {
        order: -1;
        max-width: 280px;
        margin: 0 auto;
    }

    .page-photo {
        float: none;
        margin: 0 auto 1.5rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: .35rem;
    }

    .content-figure--right {
        float: none;
        max-width: 280px;
        margin: 0 auto 1.5rem;
    }
}

.activities-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .75rem;
}

.activities-list li {
    position: relative;
    padding: 1rem 1.25rem 1rem 2.5rem;
    background: var(--brand-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--brand);
    line-height: 1.6;
    font-size: .95rem;
}

.activities-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.35rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
}

.breadcrumb {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.breadcrumb a { color: var(--brand); }

.muted { color: var(--text-muted); font-size: .9rem; }

/* Chat — tire suas dúvidas */
.help-chat {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 200;
}

.help-chat__launcher {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1.2rem;
    border: none;
    border-radius: 999px;
    background: var(--brand);
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(50, 169, 216, .4);
    transition: background-color .2s, transform .2s, box-shadow .2s;
}

.help-chat__launcher:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(50, 169, 216, .45);
}

.help-chat__launcher i {
    font-size: 1.15rem;
}

.help-chat__panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + .85rem);
    width: min(26rem, calc(100vw - 2rem));
    height: min(38rem, calc(100dvh - 5.5rem));
    max-height: min(38rem, calc(100dvh - 5.5rem));
    display: none;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(15, 23, 42, .18);
}

.help-chat.is-open .help-chat__panel {
    display: flex;
}

.help-chat.is-expanded .help-chat__panel {
    width: min(44rem, calc(100vw - 2rem));
    height: min(44rem, calc(100dvh - 4.5rem));
    max-height: min(44rem, calc(100dvh - 4.5rem));
}

.help-chat__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex: 0 0 auto;
    padding: .9rem 1rem;
    background: linear-gradient(135deg, var(--brand) 0%, #2a8eb8 100%);
    color: var(--white);
}

.help-chat.has-conversation .help-chat__header {
    padding: .7rem 1rem;
}

.help-chat.has-conversation .help-chat__subtitle {
    display: none;
}

.help-chat__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
}

.help-chat__subtitle {
    margin: .25rem 0 0;
    font-size: .8rem;
    opacity: .92;
}

.help-chat__header-actions {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    flex-shrink: 0;
}

.help-chat__expand,
.help-chat__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: var(--white);
    cursor: pointer;
    transition: background-color .2s;
}

.help-chat__expand:hover,
.help-chat__close:hover {
    background: rgba(255, 255, 255, .3);
}

.help-chat__messages {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem;
    background: #f8fafc;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.help-chat__message {
    max-width: 94%;
    margin-bottom: .85rem;
    padding: .85rem 1rem;
    border-radius: 12px;
    font-size: .9375rem;
    line-height: 1.6;
}

.help-chat__message p {
    margin: 0;
}

.help-chat__message p + p {
    margin-top: .5rem;
}

.help-chat__message--assistant {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.help-chat__message--user {
    margin-left: auto;
    background: var(--brand);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.help-chat__suggestions {
    flex: 0 0 auto;
    padding: .65rem 1rem .75rem;
    border-top: 1px solid var(--border);
    background: var(--white);
    max-height: 7.5rem;
    overflow-y: auto;
}

.help-chat.has-conversation .help-chat__suggestions {
    display: none;
}

.help-chat__suggestions-label {
    margin: 0 0 .45rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.help-chat__suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 0;
}

.help-chat__suggestion {
    padding: .45rem .7rem;
    border: 1px solid rgba(50, 169, 216, .35);
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: .78rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color .2s, border-color .2s;
}

.help-chat__suggestion:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.help-chat__composer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .55rem;
    align-items: end;
    flex: 0 0 auto;
    padding: .7rem 1rem;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.help-chat__input {
    width: 100%;
    min-height: 2.75rem;
    max-height: 6rem;
    resize: none;
    padding: .7rem .8rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: .9rem;
    font-family: inherit;
    line-height: 1.4;
}

.help-chat__input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(50, 169, 216, .15);
}

.help-chat__send {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    min-height: 2.75rem;
    padding: .6rem .95rem;
    white-space: nowrap;
}

.help-chat__links,
.help-chat__contact {
    margin-top: .75rem;
    font-size: .85rem;
}

.help-chat__links ul,
.help-chat__contact ul {
    margin: .35rem 0 0;
    padding-left: 1.1rem;
}

.help-chat__links a,
.help-chat__contact a {
    color: var(--brand);
    font-weight: 600;
}

.help-chat__feedback {
    margin-top: .85rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(50, 169, 216, .18);
}

.help-chat__feedback-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
}

.help-chat__feedback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: .45rem .9rem;
    border: 1px solid rgba(50, 169, 216, .35);
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: .8rem;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: auto;
}

.help-chat__feedback-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.help-chat__message .help-chat__feedback-btn {
    margin: 0;
}

.help-chat__footer-note {
    margin: 0;
    flex: 0 0 auto;
    padding: .45rem 1rem .65rem;
    font-size: .68rem;
    line-height: 1.35;
    color: var(--text-muted);
    background: var(--white);
}

.help-chat.has-conversation .help-chat__footer-note {
    display: none;
}

.help-chat__footer-note a {
    font-weight: 700;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.help-chat.is-open .help-chat__launcher {
    background: var(--brand-dark);
}

/* Footer */
.site-footer {
    background: var(--text);
    color: rgba(255, 255, 255, .82);
    padding: 1.75rem 0 1.5rem;
    font-size: .875rem;
    margin-top: 0;
}

.site-footer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    flex-wrap: wrap;
    padding-bottom: 1.15rem;
    margin-bottom: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-footer__address {
    display: inline-flex;
    align-items: flex-start;
    gap: .65rem;
    max-width: 42rem;
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    line-height: 1.45;
    transition: color .2s;
}

.site-footer__address i {
    margin-top: .15rem;
    color: var(--brand);
    font-size: 1rem;
    flex-shrink: 0;
}

.site-footer__address:hover {
    color: var(--white);
}

.site-footer__links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.site-footer__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.site-footer__links a {
    display: inline-flex;
    align-items: center;
    padding: .45rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(50, 169, 216, .45);
    background: rgba(50, 169, 216, .12);
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
    transition: background-color .2s, border-color .2s, color .2s;
}

.site-footer__links a:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    border: 1px solid rgba(50, 169, 216, .45);
    background: rgba(50, 169, 216, .12);
    color: var(--brand);
    text-decoration: none;
    font-size: 1rem;
    transition: background-color .2s, border-color .2s, color .2s;
}

.site-footer__social-link:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}

.site-footer__copy {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: .8rem;
    text-align: center;
}

.site-footer a { color: var(--brand); }

/* Pagination */
.pagination { margin-top: 2rem; }
.pagination nav { display: flex; gap: .5rem; flex-wrap: wrap; }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

/* Meta row */
.meta {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: .75rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--brand-light);
    border-radius: var(--radius);
}

.info-grid strong {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--brand-dark);
    margin-bottom: .25rem;
}

@media (min-width: 769px) {
    .site-nav {
        position: static;
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        justify-content: flex-end;
        background: transparent;
        border: none;
        box-shadow: none;
        overflow: visible;
        transform: none;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav-list {
        flex-wrap: nowrap;
    }

    .site-nav-item > a:not(.site-nav-cta),
    .site-nav-trigger {
        padding: .6rem .55rem;
        font-size: .9375rem;
    }

    .site-nav-item--cta > .site-nav-cta {
        font-size: .9rem;
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .site-logo {
        height: 80px;
        max-width: 220px;
    }

    .site-nav-item > a:not(.site-nav-cta),
    .site-nav-trigger {
        padding: .55rem .45rem;
        font-size: .875rem;
    }

    .site-nav-item--cta > .site-nav-cta {
        font-size: .875rem;
    }
}

@media (max-width: 768px) {
    .site-header-shell {
        padding: .65rem 0;
        gap: .65rem;
    }

    .site-header-actions {
        display: flex;
        align-items: center;
        gap: .45rem;
        flex-shrink: 0;
        margin-left: auto;
    }

    .site-header-help-chat {
        display: inline-flex;
        padding: .5rem .7rem;
        font-size: .72rem;
    }

    .site-header-help-chat span {
        max-width: 6.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-logo {
        height: 56px;
        max-width: min(200px, 58vw);
    }

    .site-nav-toggle {
        display: inline-flex;
    }

    .site-header.is-nav-open .site-nav-toggle {
        visibility: hidden;
        pointer-events: none;
    }

    .site-nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, .45);
        z-index: 140;
    }

    .site-header.is-nav-open .site-nav-backdrop {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 150;
        width: min(88vw, 22rem);
        max-width: 100%;
        height: 100dvh;
        margin: 0;
        padding: 0;
        flex: none;
        display: block;
        justify-content: flex-start;
        background: var(--white);
        border-left: 1px solid var(--border);
        box-shadow: -12px 0 40px rgba(15, 23, 42, .12);
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .28s ease;
        visibility: hidden;
        pointer-events: none;
    }

    .site-header.is-nav-open .site-nav {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav__inner {
        display: block;
        padding: 1rem 1rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .site-nav__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: .85rem;
        padding-bottom: .85rem;
        border-bottom: 1px solid var(--border);
    }

    .site-nav__title {
        display: block;
        margin: 0;
        padding: 0;
        font-size: .75rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--brand);
    }

    .site-nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        flex-shrink: 0;
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: var(--white);
        color: var(--text);
        cursor: pointer;
        transition: background-color .2s, border-color .2s, color .2s;
    }

    .site-nav-close:hover {
        border-color: rgba(50, 169, 216, .45);
        color: var(--brand);
        background: var(--brand-light);
    }

    .site-nav-close i {
        font-size: 1.1rem;
        line-height: 1;
    }

    .site-nav-list {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        gap: .25rem;
    }

    .site-nav-item {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .site-nav-item > a:not(.site-nav-cta),
    .site-nav-trigger {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: space-between;
        padding: .85rem .9rem;
        font-size: .95rem;
        border-radius: 10px;
        white-space: normal;
        text-align: left;
        line-height: 1.35;
    }

    .site-nav-item > a:not(.site-nav-cta):active,
    .site-nav-trigger:active,
    .site-nav-item.is-open .site-nav-trigger {
        background: var(--brand-light);
    }

    .site-nav-item--cta {
        margin-left: 0;
        margin-top: .35rem;
    }

    .site-nav-cta {
        width: 100%;
    }

    .site-submenu {
        position: static;
        top: auto;
        left: auto;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--brand);
        margin: .15rem 0 .35rem .5rem;
        padding: 0;
        display: none;
        background: transparent;
        overflow: hidden;
    }

    .site-submenu li {
        width: 100%;
        max-width: 100%;
    }

    .site-submenu a {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        padding: .7rem .85rem;
        border-radius: 8px;
    }

    .site-nav-item.is-open .site-submenu,
    .site-nav-item.has-submenu.is-open .site-submenu {
        display: block;
    }

    .site-nav-item.has-submenu:hover .site-submenu {
        display: none;
    }

    .site-nav-item.has-submenu.is-open:hover .site-submenu {
        display: block;
    }

    .hero { padding: 3rem 0 4rem; }
    .hero-cover { min-height: 340px; }
    .hero-cover-content {
        padding-block: 1.75rem 2.5rem;
    }

    .hero-slide--crowdfunding .hero-cover-content {
        padding-block: 1rem 2.75rem;
    }

    .hero-slide--crowdfunding .hero-cover-content h2 {
        font-size: clamp(.98rem, 4.2vw, 1.35rem);
        -webkit-line-clamp: 3;
    }

    .hero-slide--crowdfunding .hero-cover-content p {
        font-size: .82rem;
        -webkit-line-clamp: 3;
    }

    .hero-slide--crowdfunding .hero-slide-link {
        margin-top: .6rem;
        padding: .45rem .85rem;
        font-size: .82rem;
    }

    .hero-cover__nav {
        width: 38px;
        height: 38px;
    }

    .hero-cover__nav--prev {
        left: .5rem;
    }

    .hero-cover__nav--next {
        right: .5rem;
    }

    .hero-dots {
        bottom: 1rem;
    }
    .section { padding: 3rem 0; }
    .impact-action { padding: 2.5rem 0 3rem; }
    .impact-action__card {
        flex: 0 0 100%;
    }
    .page-content { padding: 1.5rem; }
    .site-footer__bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-footer__actions {
        width: 100%;
        margin-left: 0;
    }
    .site-footer__links {
        width: 100%;
    }
    .site-footer__links a {
        flex: 1 1 auto;
        justify-content: center;
    }
    .site-footer__social {
        margin-left: 0;
    }
    .help-chat {
        right: .85rem;
        bottom: .85rem;
    }
    .help-chat__launcher span {
        display: none;
    }
    .help-chat__launcher {
        width: 3.5rem;
        height: 3.5rem;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .help-chat__panel {
        width: calc(100vw - 1rem);
        right: 0;
        height: min(34rem, calc(100dvh - 4.75rem));
        max-height: min(34rem, calc(100dvh - 4.75rem));
    }

    .help-chat.has-conversation .help-chat__panel {
        height: calc(100dvh - 4.75rem);
        max-height: calc(100dvh - 4.75rem);
    }

    .site-nav-item--help-chat {
        display: block;
    }

    .help-chat.is-expanded .help-chat__panel {
        width: calc(100vw - 1rem);
        height: calc(100dvh - 3.5rem);
        max-height: calc(100dvh - 3.5rem);
    }

    .help-chat__message {
        font-size: .9rem;
    }
}

.visitor-audience[hidden] {
    display: none !important;
}

body.visitor-audience-open {
    overflow: hidden;
}

.visitor-audience {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.visitor-audience__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .62);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.visitor-audience__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 34rem);
    max-height: calc(100dvh - 2rem);
    overflow: auto;
    padding: 1.5rem 1.5rem 1.35rem;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .22);
}

.visitor-audience__close {
    position: absolute;
    top: .85rem;
    right: .85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color .2s, color .2s, background-color .2s;
}

.visitor-audience__close:hover {
    border-color: rgba(50, 169, 216, .45);
    color: var(--brand);
    background: var(--brand-light);
}

.visitor-audience__eyebrow {
    margin: 0 0 .5rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand);
}

.visitor-audience__title {
    margin: 0 0 .65rem;
    padding-right: 2rem;
    font-size: clamp(1.45rem, 4vw, 1.9rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
}

.visitor-audience__description {
    margin: 0 0 1.15rem;
    font-size: .98rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.visitor-audience__options {
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
}

.visitor-audience__option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3rem;
    padding: .8rem 1rem;
    border: 1px solid rgba(50, 169, 216, .28);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(240, 250, 255, .9) 100%);
    color: var(--text);
    font: inherit;
    font-size: .96rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: transform .2s, border-color .2s, box-shadow .2s, background-color .2s;
}

.visitor-audience__option:hover {
    transform: translateY(-1px);
    border-color: rgba(50, 169, 216, .55);
    box-shadow: 0 8px 20px rgba(50, 169, 216, .14);
}

.visitor-audience__option:disabled {
    opacity: .7;
    cursor: wait;
}

@media (min-width: 640px) {
    .visitor-audience__options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .visitor-audience {
        padding: .75rem;
    }

    .visitor-audience__dialog {
        padding: 1.2rem 1rem 1rem;
        border-radius: 16px;
    }

    .visitor-audience__option {
        min-height: 2.85rem;
        font-size: .92rem;
    }
}

.apac-page-intro:has(+ .agenda-page) {
    padding-bottom: .75rem;
}

.section.agenda-page {
    padding-top: .75rem;
    padding-bottom: 4rem;
}

.agenda-page .container {
    max-width: 1280px;
}

.agenda-page__alert {
    margin-bottom: 1.25rem;
    padding: .9rem 1rem;
    border: 1px solid #fecaca;
    border-radius: 10px;
    background: #fef2f2;
    color: #991b1b;
}

.agenda-calendar {
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.agenda-calendar__toolbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.agenda-calendar__toolbar-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}

.agenda-calendar__month {
    margin: 0;
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 800;
    color: var(--text);
}

.agenda-calendar__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: border-color .2s, color .2s, background-color .2s;
}

.agenda-calendar__nav:hover {
    border-color: rgba(50, 169, 216, .45);
    color: var(--brand);
    background: var(--brand-light);
}

.agenda-calendar__layout {
    display: block;
}

.agenda-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .45rem;
    align-items: stretch;
}

@media (min-width: 901px) {
    .agenda-calendar {
        padding: 2rem;
    }

    .agenda-calendar__month {
        font-size: 1.85rem;
    }

    .agenda-calendar__weekdays,
    .agenda-calendar__days {
        gap: .75rem;
    }

    .agenda-calendar__weekdays {
        font-size: .9rem;
    }

    .agenda-calendar__day {
        min-height: 8.5rem;
        padding: .7rem;
    }

    .agenda-calendar__day-number {
        font-size: 1.05rem;
        margin-bottom: .45rem;
    }

    .agenda-calendar__day-event {
        font-size: .78rem;
    }

    .agenda-calendar__day-event-time {
        font-size: .68rem;
    }
}

.agenda-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .45rem;
    margin-bottom: .45rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
}

.agenda-calendar__day {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 3.4rem;
    padding: .45rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    color: #94a3b8;
    font: inherit;
    transition: border-color .2s, background-color .2s, color .2s;
}

.agenda-calendar__day--empty {
    background: transparent;
    border: none;
}

.agenda-calendar__day:not(.agenda-calendar__day--empty):not(.has-events) {
    color: var(--text-muted);
}

.agenda-calendar__day.has-events--upcoming {
    background: #dff3fb;
    border-color: #7ec8e8;
    color: #0f5f7f;
    font-weight: 700;
}

.agenda-calendar__day.has-events--upcoming:hover {
    background: #c9ebf8;
    border-color: var(--brand);
}

.agenda-calendar__day.has-events--past {
    background: #eef2ff;
    border-color: #a5b4fc;
    color: #4338ca;
}

.agenda-calendar__day.has-events--past:hover {
    background: #e0e7ff;
    border-color: #818cf8;
}

.agenda-calendar__day.has-events--multiple {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
}

.agenda-calendar__day.has-events--upcoming.has-events--multiple {
    background: linear-gradient(135deg, #dff3fb 0%, #b8e8f6 100%);
    border-color: #32A9D8;
}

.agenda-calendar__day.has-events--past.has-events--multiple {
    background: linear-gradient(135deg, #eef2ff 0%, #ddd6fe 100%);
    border-color: #7c3aed;
}

.agenda-calendar__day.is-today {
    box-shadow: 0 0 0 2px rgba(50, 169, 216, .35);
}

.agenda-calendar__day.is-today.has-events--upcoming {
    box-shadow: 0 0 0 2px var(--brand);
}

.agenda-calendar__day-number {
    display: block;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.1;
}

.agenda-calendar__day-events {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: .35rem;
    min-height: 0;
}

.agenda-calendar__day-event {
    display: block;
    padding: .35rem .4rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, .72);
    line-height: 1.35;
    text-align: left;
    word-break: break-word;
}

.agenda-calendar__day.has-events--past .agenda-calendar__day-event {
    background: rgba(255, 255, 255, .55);
}

.agenda-calendar__day-event-time {
    display: block;
    margin-bottom: .15rem;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    opacity: .85;
}

.agenda-calendar__day-event-title {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    white-space: normal;
}

.agenda-calendar__legend {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.agenda-calendar__legend-item {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    color: var(--text-muted);
}

.agenda-calendar__legend-item::before {
    content: '';
    width: .95rem;
    height: .95rem;
    border-radius: 4px;
    border: 1px solid transparent;
}

.agenda-calendar__legend-item--upcoming::before {
    background: #dff3fb;
    border-color: #7ec8e8;
}

.agenda-calendar__legend-item--past::before {
    background: #eef2ff;
    border-color: #a5b4fc;
}

.agenda-calendar__legend-item--multiple::before {
    background: linear-gradient(135deg, #dff3fb 0%, #b8e8f6 100%);
    border-color: #32A9D8;
}

@media (max-width: 900px) {
    .agenda-calendar__day {
        min-height: 4.5rem;
    }
}

@media (max-width: 600px) {
    .agenda-calendar {
        padding: 1rem;
    }

    .agenda-calendar__day {
        min-height: 2.8rem;
        padding: .35rem;
    }

    .agenda-calendar__toolbar-main {
        justify-content: space-between;
        width: 100%;
    }
}

.section.faq-page {
    padding-top: .75rem;
    padding-bottom: 4rem;
}

.apac-page-intro--faq {
    padding-bottom: .75rem;
}

.apac-page-intro--faq .apac-page-intro__lead {
    margin-bottom: 0;
}

.faq-page__toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.faq-page__groups {
    display: grid;
    gap: 2.25rem;
}

.faq-group__title {
    margin: 0 0 1rem;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--text);
}

.faq-accordion {
    display: grid;
    gap: .75rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.2rem;
    cursor: pointer;
    list-style: none;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text);
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question i {
    color: var(--brand);
    transition: transform .2s ease;
}

.faq-item[open] .faq-item__question i {
    transform: rotate(180deg);
}

.faq-item[open] .faq-item__question {
    border-bottom: 1px solid var(--border);
    background: var(--brand-light);
}

.faq-item__answer {
    padding: 1.1rem 1.2rem 1.25rem;
}

.faq-item__answer p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item__link {
    display: inline-block;
    margin-top: .9rem;
    font-weight: 700;
}

.faq-page__empty {
    text-align: center;
    padding: 2.5rem 1rem;
    border: 1px dashed var(--border);
    border-radius: 16px;
    background: #f8fafc;
}

.faq-page__empty p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .faq-page__toolbar {
        justify-content: stretch;
    }

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