.fp-page {
    --fp-guinda: #5f001f;
    --fp-guinda-dark: #3f0014;
    --fp-dorado: #b78a2f;
    --fp-dorado-soft: #d7bb73;
    --fp-text: #252525;
    --fp-muted: #666666;
    --fp-bg: #f7f4ee;
    --fp-card: #ffffff;
    --fp-border: rgba(183, 138, 47, 0.28);
    font-family: inherit;
    color: var(--fp-text);
    background: #fff;
    overflow: hidden;
}

.fp-page * {
    box-sizing: border-box;
}

.fp-container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.fp-hero {
    position: relative;
    isolation: isolate;
    padding: 76px 0 68px;
    background:
        radial-gradient(circle at 86% 18%, rgba(183, 138, 47, 0.16), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #ffffff 48%, var(--fp-bg) 100%);
}

.fp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.24;
    background-image:
        linear-gradient(120deg, transparent 0 62%, rgba(95, 0, 31, 0.08) 62% 72%, transparent 72%),
        repeating-linear-gradient(90deg, rgba(95, 0, 31, 0.08) 0 1px, transparent 1px 52px);
}

.fp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 34px;
    align-items: center;
}

.fp-logo {
    display: block;
    width: min(320px, 72vw);
    height: auto;
    margin: 0 0 34px;
}

.fp-kicker {
    margin: 0 0 12px;
    color: var(--fp-dorado);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.fp-hero h1,
.fp-section h2,
.fp-hero__panel h2 {
    color: var(--fp-guinda);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin: 0;
}

.fp-hero h1 {
    max-width: 820px;
    font-size: clamp(2.35rem, 6vw, 5rem);
}

.fp-hero__text {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--fp-muted);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.7;
}

.fp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid var(--fp-border);
    color: var(--fp-guinda);
    text-decoration: none;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fp-btn:hover,
.fp-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(63, 0, 20, 0.14);
}

.fp-btn--primary {
    color: #fff;
    background: var(--fp-guinda);
    border-color: var(--fp-guinda);
}

.fp-btn--secondary {
    color: var(--fp-guinda);
    background: #fff;
}

.fp-btn--ghost {
    color: var(--fp-guinda);
    background: rgba(255, 255, 255, 0.64);
}

.fp-hero__panel {
    position: relative;
    padding: 34px;
    border-radius: 28px;
    border: 1px solid var(--fp-border);
    background:
        linear-gradient(145deg, rgba(95, 0, 31, 0.96), rgba(63, 0, 20, 0.95)),
        #5f001f;
    color: #fff;
    box-shadow: 0 24px 60px rgba(63, 0, 20, 0.22);
    overflow: hidden;
}

.fp-hero__panel::after {
    content: '';
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 190px;
    height: 190px;
    border: 26px solid rgba(215, 187, 115, 0.22);
    border-radius: 999px;
}

.fp-panel__label {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--fp-dorado-soft);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
}

.fp-hero__panel h2 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.fp-hero__panel p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.82);
    margin: 18px 0 0;
    line-height: 1.7;
}

.fp-section {
    padding: 72px 0;
}

.fp-section--quick,
.fp-memory {
    background: #fff;
}

.fp-section__head {
    max-width: 760px;
    margin-bottom: 32px;
}

.fp-section__head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.fp-section h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.fp-section__head p:not(.fp-kicker) {
    margin: 14px 0 0;
    color: var(--fp-muted);
    line-height: 1.7;
}

.fp-card-grid {
    display: grid;
    gap: 18px;
}

.fp-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fp-card,
.fp-mini-card,
.fp-report,
.fp-metric {
    border: 1px solid rgba(95, 0, 31, 0.08);
    border-radius: 24px;
    background: var(--fp-card);
    box-shadow: 0 14px 34px rgba(63, 0, 20, 0.08);
}

.fp-card {
    min-height: 230px;
    padding: 26px;
}

.fp-card--link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.fp-card--link:hover,
.fp-card--link:focus,
.fp-report:hover,
.fp-report:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(63, 0, 20, 0.13);
}

.fp-card h3,
.fp-mini-card h3 {
    margin: 18px 0 10px;
    color: var(--fp-guinda);
    font-size: 1.18rem;
    line-height: 1.2;
}

.fp-card p,
.fp-mini-card p {
    margin: 0;
    color: var(--fp-muted);
    line-height: 1.62;
}

.fp-icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(95, 0, 31, 0.06);
    border: 1px solid rgba(183, 138, 47, 0.32);
    position: relative;
}

.fp-icon::before,
.fp-icon::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 2px solid var(--fp-guinda);
    border-radius: 6px;
}

.fp-icon--shield::before,
.fp-icon--transparency::before {
    border-radius: 50% 50% 45% 45%;
    transform: rotate(45deg);
}

.fp-icon--news::before {
    border-radius: 2px;
}

.fp-icon--news::after {
    inset: 24px 17px auto 17px;
    height: 2px;
    border: 0;
    background: var(--fp-guinda);
    box-shadow: 0 7px 0 var(--fp-guinda);
}

.fp-icon--contact::before,
.fp-icon--community::before {
    border-radius: 999px;
}

.fp-icon--contact::after,
.fp-icon--community::after {
    inset: 29px 12px 13px;
    border-radius: 999px 999px 8px 8px;
}

.fp-icon--growth::before {
    inset: 25px 14px 13px;
    border-width: 0 0 2px 2px;
    border-radius: 0;
    transform: skew(-18deg);
}

.fp-icon--growth::after {
    inset: 14px 14px auto auto;
    width: 16px;
    height: 16px;
    border-width: 2px 2px 0 0;
    border-radius: 0;
    transform: rotate(45deg);
}

.fp-icon--building::before {
    inset: 13px 17px;
    border-radius: 2px;
}

.fp-icon--building::after {
    inset: auto 12px 13px;
    height: 2px;
    border: 0;
    background: var(--fp-guinda);
}

.fp-icon--graduation::before {
    inset: 18px 10px auto;
    height: 18px;
    border-radius: 2px;
    transform: rotate(45deg);
}

.fp-icon--document::after,
.fp-icon--graduation::after {
    display: none;
}

.fp-trust {
    background:
        linear-gradient(135deg, rgba(95, 0, 31, 0.96), rgba(63, 0, 20, 0.96)),
        var(--fp-guinda);
    color: #fff;
}

.fp-trust__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: center;
}

.fp-trust h2,
.fp-trust .fp-kicker {
    color: #fff;
}

.fp-trust .fp-kicker {
    color: var(--fp-dorado-soft);
}

.fp-trust p {
    max-width: 780px;
    margin: 18px 0 26px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
    font-size: 1.08rem;
}

.fp-trust__badge {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(215, 187, 115, 0.45);
}

.fp-trust__badge span,
.fp-trust__badge small {
    color: rgba(255, 255, 255, 0.78);
}

.fp-trust__badge strong {
    display: block;
    color: var(--fp-dorado-soft);
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    line-height: 1;
    margin: 8px 0 14px;
}

.fp-impact,
.fp-reports {
    background: var(--fp-bg);
}

.fp-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.fp-metric {
    padding: 28px;
    text-align: center;
}

.fp-metric strong {
    display: block;
    color: var(--fp-guinda);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1;
    margin-bottom: 12px;
}

.fp-metric span {
    display: block;
    color: var(--fp-muted);
    line-height: 1.45;
}

.fp-metric__source {
    display: inline-flex;
    margin-top: 14px;
    color: var(--fp-dorado);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.fp-metric__source:hover {
    color: var(--fp-guinda);
}

.fp-report-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.fp-report {
    display: flex;
    min-height: 148px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 18px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fp-report span {
    color: var(--fp-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fp-report strong {
    color: var(--fp-guinda);
    font-size: 2.2rem;
    margin: 5px 0 8px;
}

.fp-report em {
    color: var(--fp-dorado);
    font-style: normal;
    font-weight: 800;
    font-size: 0.88rem;
}

.fp-participation {
    padding-bottom: 86px;
    background: #fff;
}

.fp-participation__box {
    padding: clamp(28px, 5vw, 54px);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(95, 0, 31, 0.04), rgba(183, 138, 47, 0.08)),
        #fff;
    border: 1px solid var(--fp-border);
}

.fp-mini-card {
    min-height: 150px;
    padding: 22px;
}

.fp-mini-card h3 {
    margin-top: 0;
}

@media (max-width: 1024px) {
    .fp-hero__grid,
    .fp-trust__grid {
        grid-template-columns: 1fr;
    }

    .fp-card-grid--four,
    .fp-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 640px) {
    .fp-container {
        width: min(100% - 24px, 1180px);
    }

    .fp-hero {
        padding: 48px 0;
    }

    .fp-section {
        padding: 52px 0;
    }

    .fp-card-grid--four,
    .fp-metrics,
    .fp-report-grid {
        grid-template-columns: 1fr;
    }

    .fp-actions {
        flex-direction: column;
    }

    .fp-btn {
        width: 100%;
    }

    .fp-card {
        min-height: auto;
    }
}


.fp-subhero {
    position: relative;
    isolation: isolate;
    padding: 70px 0 62px;
    background:
        radial-gradient(circle at 86% 18%, rgba(183, 138, 47, 0.16), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #ffffff 50%, var(--fp-bg) 100%);
}

.fp-subhero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 34px;
    align-items: center;
}

.fp-subhero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--fp-guinda);
    font-size: clamp(2.25rem, 5vw, 4.35rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.fp-logo--small {
    width: min(260px, 68vw);
    margin-bottom: 28px;
}

.fp-hero__panel--light {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 238, 0.95)),
        #ffffff;
    color: var(--fp-text);
}

.fp-hero__panel--light h2 {
    color: var(--fp-guinda);
}

.fp-hero__panel--light p {
    color: var(--fp-muted);
}

.fp-hero__panel--light .fp-panel__label {
    color: var(--fp-dorado);
}

.fp-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fp-card__cta {
    display: inline-flex;
    margin-top: 16px;
    color: var(--fp-dorado);
    font-style: normal;
    font-weight: 800;
}

.fp-transparency-docs,
.fp-transparency-principles {
    background: #fff;
}

.fp-transparency-impact .fp-metric strong {
    font-size: clamp(1.7rem, 3vw, 2.55rem);
}

@media (max-width: 1024px) {
    .fp-subhero__grid {
        grid-template-columns: 1fr;
    }

    .fp-card-grid--three {
        grid-template-columns: 1fr;
    }
}

.fp-convocations-list {
    background: var(--fp-bg);
}

.fp-timeline {
    display: grid;
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.fp-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 170px 180px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(95, 0, 31, 0.08);
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(63, 0, 20, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fp-timeline__item:hover,
.fp-timeline__item:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(63, 0, 20, 0.13);
}

.fp-timeline__item--featured {
    border-color: var(--fp-border);
}

.fp-timeline__date {
    color: var(--fp-guinda);
    font-weight: 900;
    line-height: 1.25;
}

.fp-timeline__type {
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(183, 138, 47, 0.12);
    color: var(--fp-dorado);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fp-timeline__item strong {
    display: block;
    color: var(--fp-guinda);
    font-size: 1.2rem;
    line-height: 1.25;
}

.fp-timeline__item p {
    grid-column: 3;
    margin: -4px 0 0;
    color: var(--fp-muted);
    line-height: 1.6;
}

.fp-timeline__item em {
    grid-column: 3;
    color: var(--fp-dorado);
    font-style: normal;
    font-weight: 900;
}

.fp-convocations-principles {
    background: #fff;
}

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

    .fp-timeline__item p,
    .fp-timeline__item em {
        grid-column: auto;
        margin-top: 0;
    }
}

.fp-contact-main {
    background: #fff;
}

.fp-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 18px;
    align-items: stretch;
}

.fp-contact-panel {
    padding: clamp(26px, 4vw, 42px);
    border-radius: 28px;
    background: var(--fp-card);
    border: 1px solid rgba(95, 0, 31, 0.08);
    box-shadow: 0 14px 34px rgba(63, 0, 20, 0.08);
}

.fp-contact-panel--primary {
    background:
        linear-gradient(135deg, rgba(95, 0, 31, 0.96), rgba(63, 0, 20, 0.96)),
        var(--fp-guinda);
    color: #fff;
}

.fp-contact-panel--primary .fp-kicker {
    color: var(--fp-dorado-soft);
}

.fp-contact-panel--primary h2,
.fp-contact-panel--primary p {
    color: #fff;
}

.fp-contact-panel h2,
.fp-contact-panel h3 {
    margin: 0;
    color: var(--fp-guinda);
    line-height: 1.12;
}

.fp-contact-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    word-break: break-word;
}

.fp-contact-panel--primary h2 {
    color: #fff;
    font-size: clamp(1.45rem, 2.35vw, 2.2rem);
}

.fp-contact-panel--primary p {
    color: #fff;
}

.fp-contact-panel h3 {
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.fp-contact-panel p {
    margin: 18px 0 0;
    color: var(--fp-muted);
    line-height: 1.7;
}

.fp-contact-panel--primary p {
    color: #fff;
}

.fp-contact-panel .fp-btn {
    margin-top: 24px;
}

.fp-contact-panel--wide {
    grid-column: 1 / -1;
}

.fp-phone-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.fp-phone-list a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(95, 0, 31, 0.05);
    border: 1px solid var(--fp-border);
    color: var(--fp-guinda);
    font-weight: 900;
    text-decoration: none;
}

.fp-phone-list a:hover,
.fp-phone-list a:focus {
    background: rgba(183, 138, 47, 0.12);
}

.fp-contact-routes .fp-card {
    min-height: 190px;
}

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

.fp-icon--donation::before {
    inset: 14px 18px 24px;
    border-radius: 999px 999px 4px 4px;
    transform: rotate(-45deg);
}

.fp-icon--donation::after {
    inset: 28px 13px 14px;
    border-radius: 12px 12px 7px 7px;
}

.fp-icon--business::before {
    inset: 21px 12px 14px;
    border-radius: 4px;
}

.fp-icon--business::after {
    inset: 14px 21px auto;
    height: 10px;
    border-radius: 4px 4px 0 0;
}

.fp-participation-routes .fp-card {
    min-height: 290px;
}

.fp-mini-card--large {
    min-height: 210px;
    padding: clamp(24px, 3vw, 34px);
}

.fp-step-card {
    min-height: 230px;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 26px;
    border: 1px solid rgba(95, 0, 31, 0.08);
    background: #fff;
    box-shadow: 0 14px 34px rgba(63, 0, 20, 0.08);
}

.fp-step-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(183, 138, 47, 0.12);
    color: var(--fp-dorado);
    font-weight: 900;
    margin-bottom: 20px;
}

.fp-step-card h3 {
    margin: 0 0 12px;
    color: var(--fp-guinda);
    font-size: 1.25rem;
    line-height: 1.2;
}

.fp-step-card p {
    margin: 0;
    color: var(--fp-muted);
    line-height: 1.65;
}

.fp-participation-steps {
    background: #fff;
}

/* Hero editorial renovado */
.fp-hero--home {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 90px 0 82px;
    background:
        radial-gradient(circle at 80% 20%, rgba(183, 138, 47, 0.18), transparent 28%),
        radial-gradient(circle at 8% 82%, rgba(95, 0, 31, 0.10), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #fbfaf7 46%, #f3eee5 100%);
}

.fp-hero--home .fp-hero__bg {
    opacity: 1;
    background-image:
        linear-gradient(135deg, transparent 0 58%, rgba(95, 0, 31, 0.06) 58% 70%, transparent 70%),
        radial-gradient(circle at 76% 30%, rgba(95, 0, 31, 0.08) 0 1px, transparent 1px),
        repeating-linear-gradient(90deg, rgba(95, 0, 31, 0.045) 0 1px, transparent 1px 58px),
        repeating-linear-gradient(0deg, rgba(183, 138, 47, 0.04) 0 1px, transparent 1px 58px);
    background-size: auto, 24px 24px, auto, auto;
}

.fp-hero--home .fp-hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: clamp(36px, 7vw, 84px);
}

.fp-logo--hero {
    width: min(260px, 62vw);
    margin-bottom: 36px;
    filter: drop-shadow(0 18px 28px rgba(63, 0, 20, 0.08));
}

.fp-hero--home .fp-hero__content {
    position: relative;
    z-index: 2;
}

.fp-hero--home h1 {
    max-width: 780px;
    font-size: clamp(2.75rem, 6vw, 5.85rem);
    letter-spacing: -0.055em;
}

.fp-hero--home .fp-hero__text {
    max-width: 720px;
    font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.fp-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.fp-hero__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--fp-guinda);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: none;
}

.fp-hero__chips a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border: 1px solid rgba(183, 138, 47, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--fp-guinda);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(63, 0, 20, 0.05);
}

.fp-hero-visual {
    position: relative;
    min-height: 520px;
    border-radius: 40px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(95, 0, 31, 0.96), rgba(63, 0, 20, 0.98)),
        var(--fp-guinda);
    box-shadow: 0 34px 80px rgba(63, 0, 20, 0.22);
    border: 1px solid rgba(183, 138, 47, 0.34);
}

.fp-hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 0 62%, rgba(215, 187, 115, 0.20) 62% 63%, transparent 63%),
        radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.16), transparent 22%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 42px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 42px);
}

.fp-hero-visual::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    border: 34px solid rgba(215, 187, 115, 0.22);
    border-radius: 50%;
}

.fp-hero-visual__orb {
    position: absolute;
    left: 44px;
    top: 40px;
    width: 118px;
    height: 118px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(215, 187, 115, 0.95), rgba(183, 138, 47, 0.95));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.fp-hero-visual__orb::before,
.fp-hero-visual__orb::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.78);
}

.fp-hero-visual__orb::before {
    width: 58px;
    height: 42px;
    left: 29px;
    top: 39px;
    border-radius: 8px;
}

.fp-hero-visual__orb::after {
    width: 34px;
    height: 2px;
    left: 41px;
    top: 60px;
    box-shadow: 0 12px 0 rgba(255, 255, 255, 0.78), 0 -12px 0 rgba(255, 255, 255, 0.78);
}

.fp-hero-visual__card,
.fp-hero-visual__document {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--fp-text);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.20);
}

.fp-hero-visual__card {
    padding: 24px;
}

.fp-hero-visual__card span {
    display: block;
    margin-bottom: 10px;
    color: var(--fp-dorado);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.fp-hero-visual__card strong {
    display: block;
    color: var(--fp-guinda);
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 1;
}

.fp-hero-visual__card small {
    display: block;
    margin-top: 12px;
    color: var(--fp-muted);
    font-weight: 700;
    line-height: 1.45;
}

.fp-hero-visual__card--main {
    left: 46px;
    right: 46px;
    top: 178px;
    min-height: 160px;
}

.fp-hero-visual__card--badge {
    right: 38px;
    top: 52px;
    width: 220px;
}

.fp-hero-visual__card--metric {
    left: 54px;
    bottom: 48px;
    width: 265px;
}

.fp-hero-visual__document {
    width: 132px;
    height: 168px;
    right: 64px;
    bottom: 52px;
    transform: rotate(6deg);
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(145deg, rgba(183, 138, 47, 0.45), rgba(95, 0, 31, 0.18)) border-box;
}

.fp-hero-visual__document::before {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    top: 34px;
    height: 7px;
    border-radius: 999px;
    background: rgba(95, 0, 31, 0.18);
    box-shadow: 0 24px 0 rgba(95, 0, 31, 0.13), 0 48px 0 rgba(95, 0, 31, 0.10), 0 72px 0 rgba(183, 138, 47, 0.20);
}

.fp-hero-visual__document--two {
    right: 150px;
    bottom: 28px;
    transform: rotate(-8deg);
    opacity: 0.72;
    z-index: 1;
}

@media (max-width: 980px) {
    .fp-hero--home {
        min-height: auto;
        padding: 58px 0 60px;
    }

    .fp-hero--home .fp-hero__grid {
        grid-template-columns: 1fr;
    }

    .fp-hero-visual {
        min-height: 460px;
    }
}

@media (max-width: 640px) {
    .fp-hero--home h1 {
        font-size: clamp(2.35rem, 14vw, 4rem);
    }

    .fp-hero-visual {
        min-height: 430px;
        border-radius: 30px;
    }

    .fp-hero-visual__card--main {
        left: 22px;
        right: 22px;
        top: 150px;
    }

    .fp-hero-visual__card--badge {
        right: 20px;
        top: 28px;
        width: 190px;
    }

    .fp-hero-visual__card--metric {
        left: 22px;
        bottom: 28px;
        width: 220px;
    }

    .fp-hero-visual__document {
        right: 24px;
        bottom: 38px;
        width: 108px;
        height: 142px;
    }

    .fp-hero-visual__document--two {
        display: none;
    }
}

/* Heroes editoriales para pantallas internas */
.fp-subhero--editorial {
    padding: 86px 0 78px;
    background:
        radial-gradient(circle at 78% 18%, rgba(183, 138, 47, 0.20), transparent 24%),
        radial-gradient(circle at 96% 86%, rgba(95, 0, 31, 0.12), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #ffffff 46%, #f7f4ee 100%);
}

.fp-subhero--editorial .fp-subhero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 48px;
}

.fp-subhero__content {
    position: relative;
    z-index: 2;
}

.fp-subhero--editorial h1 {
    max-width: 760px;
    font-size: clamp(2.55rem, 5.7vw, 5.1rem);
}

.fp-editorial-visual {
    position: relative;
    min-height: 430px;
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(95, 0, 31, 0.96), rgba(63, 0, 20, 0.98)),
        var(--fp-guinda);
    overflow: hidden;
    box-shadow: 0 30px 72px rgba(63, 0, 20, 0.22);
    border: 1px solid rgba(215, 187, 115, 0.32);
}

.fp-editorial-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.24;
    background-image:
        linear-gradient(115deg, transparent 0 50%, rgba(215, 187, 115, 0.16) 50% 51%, transparent 51%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 42px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px);
}

.fp-editorial-visual__halo {
    position: absolute;
    right: -86px;
    top: -70px;
    width: 250px;
    height: 250px;
    border-radius: 999px;
    border: 34px solid rgba(215, 187, 115, 0.20);
}

.fp-editorial-visual__halo::after {
    content: '';
    position: absolute;
    inset: 46px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.fp-editorial-visual__document {
    position: absolute;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--fp-text);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.fp-editorial-visual__document--front {
    left: 44px;
    top: 70px;
    width: min(340px, calc(100% - 88px));
    min-height: 230px;
    padding: 30px;
    z-index: 3;
}

.fp-editorial-visual__document--front::before,
.fp-editorial-visual__document--front::after {
    content: '';
    display: block;
    width: 100%;
    height: 10px;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(95, 0, 31, 0.10);
}

.fp-editorial-visual__document--front::after {
    width: 68%;
    margin-top: 12px;
}

.fp-editorial-visual__document--front span {
    display: block;
    margin-bottom: 14px;
    color: var(--fp-dorado);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.fp-editorial-visual__document--front strong {
    display: block;
    color: var(--fp-guinda);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.fp-editorial-visual__document--front small {
    display: block;
    max-width: 230px;
    margin-top: 16px;
    color: var(--fp-muted);
    line-height: 1.45;
    font-weight: 700;
}

.fp-editorial-visual__document--back {
    right: 44px;
    bottom: 54px;
    width: 190px;
    height: 240px;
    transform: rotate(7deg);
    opacity: 0.62;
    z-index: 1;
}

.fp-editorial-visual__document--back::before,
.fp-editorial-visual__document--back::after {
    content: '';
    position: absolute;
    left: 26px;
    right: 26px;
    height: 9px;
    border-radius: 999px;
    background: rgba(95, 0, 31, 0.14);
}

.fp-editorial-visual__document--back::before {
    top: 54px;
}

.fp-editorial-visual__document--back::after {
    top: 78px;
    right: 62px;
}

.fp-editorial-visual__seal {
    position: absolute;
    right: 42px;
    top: 132px;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 116px;
    height: 116px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(145deg, var(--fp-dorado), #8e661d);
    border: 8px solid rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.fp-editorial-visual__metric {
    position: absolute;
    left: 54px;
    bottom: 44px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 22px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

.fp-editorial-visual__metric strong {
    color: var(--fp-dorado-soft);
    font-size: 2.6rem;
    line-height: 1;
}

.fp-editorial-visual__metric span {
    max-width: 110px;
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
    .fp-subhero--editorial .fp-subhero__grid {
        grid-template-columns: 1fr;
    }

    .fp-editorial-visual {
        min-height: 390px;
    }
}

@media (max-width: 640px) {
    .fp-subhero--editorial {
        padding: 58px 0 54px;
    }

    .fp-editorial-visual {
        min-height: 430px;
        border-radius: 28px;
    }

    .fp-editorial-visual__document--front {
        left: 24px;
        top: 58px;
        width: calc(100% - 48px);
    }

    .fp-editorial-visual__seal {
        right: 24px;
        top: 238px;
        width: 96px;
        height: 96px;
    }

    .fp-editorial-visual__metric {
        left: 24px;
        right: 24px;
        bottom: 28px;
    }
}

/* Ajuste v1.6.4: hero home fotográfico con menor velo en desktop */
.fp-hero--home {
    min-height: 760px;
    padding: 92px 0 88px;
    overflow: hidden;
    background-color: #fbf7ef;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 24%, rgba(255,255,255,0.34) 39%, rgba(255,255,255,0.08) 56%, rgba(255,255,255,0) 74%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
        url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-home.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.fp-hero--home .fp-hero__bg {
    display: none;
}

.fp-hero--home .fp-container {
    width: min(1760px, calc(100% - 96px));
}

.fp-hero--home .fp-hero__grid {
    display: block;
}

.fp-hero--home .fp-hero__content {
    width: min(100%, 860px);
    padding: 0;
    position: static;
}

.fp-hero--home h1 {
    max-width: 860px;
    font-size: clamp(3rem, 4.9vw, 5.45rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.fp-hero--home .fp-hero__text {
    max-width: 600px;
    margin-top: 28px;
    color: #6c6561;
    font-size: 1.5rem;
    line-height: 1.74;
}

.fp-hero--home .fp-kicker {
    margin-bottom: 22px;
    font-size: 1rem;
}

.fp-hero--home .fp-hero__chips {
    position: absolute;
    z-index: 2;
    top: 420px;
    right: clamp(150px, 18vw, 360px);
    width: min(440px, 26vw);
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
}

.fp-hero--home .fp-hero__chips span,
.fp-hero--home .fp-hero__chips a {
    position: relative;
    min-height: 86px;
    padding: 22px 28px 22px 96px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: 0 22px 46px rgba(63, 0, 20, 0.16);
    color: var(--fp-guinda);
    font-size: clamp(1.05rem, 1.15vw, 1.28rem);
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.fp-hero--home .fp-hero__chips span::before,
.fp-hero--home .fp-hero__chips a::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--fp-dorado), #d7bb73);
    box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.22);
}

.fp-hero--home .fp-hero__chips span::after,
.fp-hero--home .fp-hero__chips a::after {
    display: none;
}

.fp-hero--home .fp-hero__chips span:nth-child(2),
.fp-hero--home .fp-hero__chips a:nth-child(2) {
    margin-left: 86px;
}

.fp-hero--home .fp-hero__chips span:nth-child(3),
.fp-hero--home .fp-hero__chips a:nth-child(3) {
    margin-left: 28px;
}

.fp-hero--home .fp-actions {
    margin-top: 34px;
    max-width: 690px;
}

.fp-hero--home .fp-btn {
    min-height: 50px;
    padding: 14px 24px;
    box-shadow: 0 16px 32px rgba(63, 0, 20, 0.08);
}

.fp-hero--home .fp-btn--secondary,
.fp-hero--home .fp-btn--ghost {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
}

.fp-hero--home .fp-hero-visual {
    display: none;
}

@media (max-width: 980px) {
    .fp-hero--home {
        min-height: auto;
        padding: 76px 0 72px;
        background-image:
            linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.90) 44%, rgba(255,255,255,0.56) 70%, rgba(255,255,255,0.30) 100%),
            linear-gradient(180deg, rgba(255,255,255,0.40), rgba(255,255,255,0.18)),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-home.png');
        background-position: 60% center;
    }

    .fp-hero--home .fp-hero__content {
        width: min(100%, 680px);
    }

    .fp-hero--home .fp-hero__chips {
        position: static;
        width: auto;
        max-width: 680px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 26px;
    }

    .fp-hero--home .fp-hero__chips span,
    .fp-hero--home .fp-hero__chips a {
        min-height: 0;
        margin-left: 0 !important;
        padding: 10px 14px;
        border-radius: 999px;
        font-size: 0.9rem;
        box-shadow: 0 12px 26px rgba(63, 0, 20, 0.07);
    }

    .fp-hero--home .fp-hero__chips span::before,
    .fp-hero--home .fp-hero__chips span::after,
    .fp-hero--home .fp-hero__chips a::before,
    .fp-hero--home .fp-hero__chips a::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .fp-hero--home {
        padding: 62px 0 64px;
        background-image:
            linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 56%, rgba(255,255,255,0.76) 100%),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-home.png');
        background-position: 63% center;
    }

    .fp-hero--home h1 {
        font-size: clamp(2.5rem, 13vw, 4.15rem);
    }
}


/* Ajuste v1.7.0: heros fotográficos para pantallas internas */
.fp-subhero--transparency,
.fp-subhero--convocations,
.fp-subhero--news,
.fp-subhero--participation,
.fp-subhero--contact {
    min-height: 760px;
    padding: 92px 0 88px;
    overflow: hidden;
    background-color: #fbf7ef;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.fp-subhero--transparency {
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 24%, rgba(255,255,255,0.34) 39%, rgba(255,255,255,0.08) 56%, rgba(255,255,255,0) 74%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
        url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Transparencia.png');
}

.fp-subhero--convocations {
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 24%, rgba(255,255,255,0.34) 39%, rgba(255,255,255,0.08) 56%, rgba(255,255,255,0) 74%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
        url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-ConvocatoriasAsambleas.png');
}

.fp-subhero--news {
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 24%, rgba(255,255,255,0.34) 39%, rgba(255,255,255,0.08) 56%, rgba(255,255,255,0) 74%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
        url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Noticias.png');
}

.fp-subhero--participation {
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 24%, rgba(255,255,255,0.34) 39%, rgba(255,255,255,0.08) 56%, rgba(255,255,255,0) 74%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
        url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Participacion.png');
}

.fp-subhero--contact {
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 24%, rgba(255,255,255,0.34) 39%, rgba(255,255,255,0.08) 56%, rgba(255,255,255,0) 74%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
        url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Contacto.png');
}

.fp-subhero--transparency .fp-hero__bg,
.fp-subhero--convocations .fp-hero__bg,
.fp-subhero--news .fp-hero__bg,
.fp-subhero--participation .fp-hero__bg,
.fp-subhero--contact .fp-hero__bg {
    display: none;
}

.fp-subhero--transparency .fp-container,
.fp-subhero--convocations .fp-container,
.fp-subhero--news .fp-container,
.fp-subhero--participation .fp-container,
.fp-subhero--contact .fp-container {
    width: min(1760px, calc(100% - 96px));
}

.fp-subhero--transparency .fp-subhero__grid,
.fp-subhero--convocations .fp-subhero__grid,
.fp-subhero--news .fp-subhero__grid,
.fp-subhero--participation .fp-subhero__grid,
.fp-subhero--contact .fp-subhero__grid {
    display: block;
}

.fp-subhero--transparency .fp-subhero__grid > :first-child,
.fp-subhero--convocations .fp-subhero__grid > :first-child,
.fp-subhero--news .fp-subhero__grid > :first-child,
.fp-subhero--participation .fp-subhero__grid > :first-child,
.fp-subhero--contact .fp-subhero__grid > :first-child {
    width: min(100%, 860px);
    padding: 0;
    position: relative;
    z-index: 2;
}

.fp-subhero--transparency h1,
.fp-subhero--convocations h1,
.fp-subhero--news h1,
.fp-subhero--participation h1,
.fp-subhero--contact h1 {
    max-width: 860px;
    font-size: clamp(3rem, 4.9vw, 5.45rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.fp-subhero--transparency .fp-hero__text,
.fp-subhero--convocations .fp-hero__text,
.fp-subhero--news .fp-hero__text,
.fp-subhero--participation .fp-hero__text,
.fp-subhero--contact .fp-hero__text {
    max-width: 600px;
    margin-top: 28px;
    color: #6c6561;
    font-size: 1.5rem;
    line-height: 1.74;
}

.fp-subhero--transparency .fp-kicker,
.fp-subhero--convocations .fp-kicker,
.fp-subhero--news .fp-kicker,
.fp-subhero--participation .fp-kicker,
.fp-subhero--contact .fp-kicker {
    margin-bottom: 22px;
    font-size: 1rem;
}

.fp-subhero--transparency .fp-logo--small,
.fp-subhero--convocations .fp-logo--small,
.fp-subhero--news .fp-logo--small,
.fp-subhero--participation .fp-logo--small,
.fp-subhero--contact .fp-logo--small {
    display: none;
}

.fp-subhero--transparency .fp-actions,
.fp-subhero--convocations .fp-actions,
.fp-subhero--news .fp-actions,
.fp-subhero--participation .fp-actions,
.fp-subhero--contact .fp-actions {
    margin-top: 34px;
    max-width: 690px;
}

.fp-subhero--transparency .fp-btn,
.fp-subhero--convocations .fp-btn,
.fp-subhero--news .fp-btn,
.fp-subhero--participation .fp-btn,
.fp-subhero--contact .fp-btn {
    min-height: 50px;
    padding: 14px 24px;
    box-shadow: 0 16px 32px rgba(63, 0, 20, 0.08);
}

.fp-subhero--transparency .fp-btn--secondary,
.fp-subhero--transparency .fp-btn--ghost,
.fp-subhero--convocations .fp-btn--secondary,
.fp-subhero--convocations .fp-btn--ghost,
.fp-subhero--news .fp-btn--secondary,
.fp-subhero--news .fp-btn--ghost,
.fp-subhero--participation .fp-btn--secondary,
.fp-subhero--participation .fp-btn--ghost,
.fp-subhero--contact .fp-btn--secondary,
.fp-subhero--contact .fp-btn--ghost {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
}

.fp-subhero--transparency .fp-hero__panel,
.fp-subhero--convocations .fp-hero__panel,
.fp-subhero--news .fp-hero__panel,
.fp-subhero--participation .fp-hero__panel,
.fp-subhero--contact .fp-hero__panel,
.fp-subhero--transparency .fp-editorial-visual,
.fp-subhero--convocations .fp-editorial-visual,
.fp-subhero--news .fp-editorial-visual,
.fp-subhero--participation .fp-editorial-visual,
.fp-subhero--contact .fp-editorial-visual {
    display: none;
}

@media (max-width: 980px) {
    .fp-subhero--transparency,
    .fp-subhero--convocations,
    .fp-subhero--news,
    .fp-subhero--participation,
    .fp-subhero--contact {
        min-height: auto;
        padding: 76px 0 72px;
        background-position: 60% center;
    }

    .fp-subhero--transparency {
        background-image:
            linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.90) 44%, rgba(255,255,255,0.56) 70%, rgba(255,255,255,0.30) 100%),
            linear-gradient(180deg, rgba(255,255,255,0.40), rgba(255,255,255,0.18)),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Transparencia.png');
    }

    .fp-subhero--convocations {
        background-image:
            linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.90) 44%, rgba(255,255,255,0.56) 70%, rgba(255,255,255,0.30) 100%),
            linear-gradient(180deg, rgba(255,255,255,0.40), rgba(255,255,255,0.18)),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-ConvocatoriasAsambleas.png');
    }

    .fp-subhero--news {
        background-image:
            linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.90) 44%, rgba(255,255,255,0.56) 70%, rgba(255,255,255,0.30) 100%),
            linear-gradient(180deg, rgba(255,255,255,0.40), rgba(255,255,255,0.18)),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Noticias.png');
    }

    .fp-subhero--participation {
        background-image:
            linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.90) 44%, rgba(255,255,255,0.56) 70%, rgba(255,255,255,0.30) 100%),
            linear-gradient(180deg, rgba(255,255,255,0.40), rgba(255,255,255,0.18)),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Participacion.png');
    }

    .fp-subhero--contact {
        background-image:
            linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.90) 44%, rgba(255,255,255,0.56) 70%, rgba(255,255,255,0.30) 100%),
            linear-gradient(180deg, rgba(255,255,255,0.40), rgba(255,255,255,0.18)),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Contacto.png');
    }

    .fp-subhero--transparency .fp-container,
    .fp-subhero--convocations .fp-container,
    .fp-subhero--news .fp-container,
    .fp-subhero--participation .fp-container,
    .fp-subhero--contact .fp-container {
        width: min(1180px, calc(100% - 36px));
    }

    .fp-subhero--transparency .fp-subhero__grid > :first-child,
    .fp-subhero--convocations .fp-subhero__grid > :first-child,
    .fp-subhero--news .fp-subhero__grid > :first-child,
    .fp-subhero--participation .fp-subhero__grid > :first-child,
    .fp-subhero--contact .fp-subhero__grid > :first-child {
        width: min(100%, 680px);
    }
}

@media (max-width: 640px) {
    .fp-subhero--transparency,
    .fp-subhero--convocations,
    .fp-subhero--news,
    .fp-subhero--participation,
    .fp-subhero--contact {
        padding: 62px 0 64px;
        background-position: 63% center;
    }

    .fp-subhero--transparency {
        background-image:
            linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 56%, rgba(255,255,255,0.76) 100%),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Transparencia.png');
    }

    .fp-subhero--convocations {
        background-image:
            linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 56%, rgba(255,255,255,0.76) 100%),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-ConvocatoriasAsambleas.png');
    }

    .fp-subhero--news {
        background-image:
            linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 56%, rgba(255,255,255,0.76) 100%),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Noticias.png');
    }

    .fp-subhero--participation {
        background-image:
            linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 56%, rgba(255,255,255,0.76) 100%),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Participacion.png');
    }

    .fp-subhero--contact {
        background-image:
            linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 56%, rgba(255,255,255,0.76) 100%),
            url('https://www.fundacionpolitecnico.org/wp-content/uploads/2026/05/Hero-Contacto.png');
    }

    .fp-subhero--transparency h1,
    .fp-subhero--convocations h1,
    .fp-subhero--news h1,
    .fp-subhero--participation h1,
    .fp-subhero--contact h1 {
        font-size: clamp(2.5rem, 13vw, 4.15rem);
    }

    .fp-subhero--transparency .fp-hero__text,
    .fp-subhero--convocations .fp-hero__text,
    .fp-subhero--news .fp-hero__text,
    .fp-subhero--participation .fp-hero__text,
    .fp-subhero--contact .fp-hero__text {
        font-size: 1.08rem;
    }
}


.fp-pdf-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: 'Montserrat', sans-serif;
}

.fp-pdf-modal.is-open {
    display: flex;
}

.fp-pdf-modal-open {
    overflow: hidden;
}

.fp-pdf-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 24, 0.68);
    backdrop-filter: blur(8px);
}

.fp-pdf-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(1180px, calc(100vw - 36px));
    height: min(86vh, 900px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 34px 90px rgba(30, 12, 26, 0.34);
}

.fp-pdf-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(111, 0, 46, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #fff7fa 100%);
}

.fp-pdf-modal__header span {
    display: block;
    margin-bottom: 5px;
    color: #8f1746;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fp-pdf-modal__header h2 {
    margin: 0;
    color: #2a1420;
    font-size: clamp(1.15rem, 2vw, 1.85rem);
    line-height: 1.1;
}

.fp-pdf-modal__close {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: #6f002e;
    color: #ffffff;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fp-pdf-modal__close:hover,
.fp-pdf-modal__close:focus {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(111, 0, 46, 0.22);
}

.fp-pdf-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    background: #f5f0f3;
}

.fp-pdf-modal__frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
}

.fp-pdf-modal__viewer {
    display: none;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 14px 10px 22px;
    background: #f5f0f3;
    -webkit-overflow-scrolling: touch;
}

.fp-pdf-modal__body.is-pdfjs .fp-pdf-modal__frame {
    display: none;
}

.fp-pdf-modal__body.is-pdfjs .fp-pdf-modal__viewer {
    display: block;
}

.fp-pdf-modal__page {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(30, 12, 26, 0.16);
    overflow: hidden;
}

.fp-pdf-modal__page canvas {
    display: block;
    max-width: 100%;
    height: auto !important;
}

.fp-pdf-modal__message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 28px;
    color: #5f4c57;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.fp-pdf-modal__message.is-error {
    color: #6f002e;
}

.fp-pdf-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    border-top: 1px solid rgba(111, 0, 46, 0.12);
    background: #ffffff;
}

.fp-pdf-modal__footer p {
    margin: 0;
    color: #5f4c57;
    font-size: 0.92rem;
    line-height: 1.4;
}

.fp-pdf-modal__open {
    flex: 0 0 auto;
}

@media (max-width: 767px) {
    .fp-pdf-modal {
        padding: 10px;
    }

    .fp-pdf-modal__dialog {
        width: calc(100vw - 20px);
        height: calc(100vh - 20px);
        border-radius: 20px;
    }

    .fp-pdf-modal__header {
        padding: 16px;
    }

    .fp-pdf-modal__close {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }

    .fp-pdf-modal__footer {
        align-items: stretch;
        flex-direction: column;
        padding: 14px;
    }

    .fp-pdf-modal__footer .fp-btn {
        width: 100%;
    }
}

.fp-home-video {
    padding-top: 28px;
}

.fp-video-card {
    position: relative;
    overflow: hidden;
    width: min(100%, 1080px);
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(111, 0, 46, 0.12);
    border-radius: 28px;
    background: #12070c;
    box-shadow: 0 28px 70px rgba(111, 0, 46, 0.16);
}

.fp-video-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767px) {
    .fp-home-video {
        padding-top: 12px;
    }

    .fp-video-card {
        border-radius: 20px;
        box-shadow: 0 18px 42px rgba(111, 0, 46, 0.14);
    }
}

/* Ajuste v1.8.3: entradas en tarjetas verticales, 12 por página */


.fp-news-impact .fp-metrics {
    grid-template-columns: repeat(3, minmax(0, 280px));
    justify-content: center;
}

.fp-news-list .fp-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1120px;
    align-items: stretch;
}

.fp-news-entry {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: 24px;
    overflow: hidden;
}

.fp-news-entry__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
    border-radius: 20px;
    background-color: rgba(183, 138, 47, 0.12);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fp-news-entry__image--empty {
    background-image: linear-gradient(135deg, rgba(95, 0, 31, 0.12), rgba(183, 138, 47, 0.18));
}

.fp-news-entry strong {
    display: -webkit-box;
    min-height: 3.75em;
    max-width: 100%;
    margin-top: 4px;
    overflow: hidden;
    color: var(--fp-guinda);
    font-size: 1.04rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.fp-news-entry .fp-timeline__date {
    order: 3;
    color: var(--fp-guinda);
    font-weight: 900;
    line-height: 1.25;
}

.fp-news-entry .fp-timeline__type {
    order: 4;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fp-news-entry em {
    order: 5;
    margin-top: auto;
    color: var(--fp-dorado);
    font-style: normal;
    font-weight: 900;
}

.fp-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.fp-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--fp-border);
    background: #fff;
    color: var(--fp-guinda);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(63, 0, 20, 0.07);
}

.fp-pagination__link:hover,
.fp-pagination__link:focus,
.fp-pagination__link.is-active {
    background: var(--fp-guinda);
    border-color: var(--fp-guinda);
    color: #fff;
}

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

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

    .fp-news-entry {
        padding: 20px;
    }
}
