:root {
    --fmpn-navy: #0a2342;
    --fmpn-navy-dark: #061528;
    --fmpn-navy-light: #e8edf3;
    --fmpn-gold: #c9a227;
    --fmpn-gold-light: #f5edd8;
    --fmpn-cream: #fffdf8;
    --fmpn-gray: #f7f8fa;
    --fmpn-text: #1a2a3a;
    --fmpn-text-muted: #5c6b7a;
    --fmpn-border: #d8dfe8;
}

body.home-redesign {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--fmpn-text);
    background: var(--fmpn-cream);
}

.home-redesign h1,
.home-redesign h2,
.home-redesign h3,
.home-redesign h4,
.home-redesign h5 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    color: var(--fmpn-navy);
}

/* Header */
.home-redesign .site-header {
    background: #fff;
    border-bottom: 1px solid var(--fmpn-border);
    padding: 0.75rem 0;
}

.home-redesign .site-header .navbar-brand img {
    height: 72px;
    width: auto;
}

.home-redesign .site-nav .nav-link {
    color: var(--fmpn-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    position: relative;
}

.home-redesign .site-nav .nav-link:hover,
.home-redesign .site-nav .nav-link.active {
    color: var(--fmpn-navy);
}

.home-redesign .site-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--fmpn-gold);
}

.home-redesign .btn-fmpn {
    background: var(--fmpn-navy);
    color: #fff;
    border: 2px solid var(--fmpn-navy);
    border-radius: 4px;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.home-redesign .btn-fmpn:hover {
    background: var(--fmpn-navy-dark);
    border-color: var(--fmpn-gold);
    color: #fff;
    text-decoration: none;
}

.home-redesign .btn-fmpn-outline {
    background: transparent;
    color: var(--fmpn-navy);
    border: 2px solid var(--fmpn-navy);
    border-radius: 4px;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.home-redesign .btn-fmpn-outline:hover {
    background: var(--fmpn-navy);
    border-color: var(--fmpn-gold);
    color: #fff;
    text-decoration: none;
}

/* Hero */
.home-redesign .hero-section {
    background: var(--fmpn-gray);
    padding: 3.5rem 0;
}

.home-redesign .hero-section__content {
    padding-right: 1.5rem;
}

.home-redesign .hero-section h1 {
    font-size: 2.35rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.home-redesign .hero-section .hero-description {
    font-size: 1.05rem;
    color: var(--fmpn-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.home-redesign .hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-redesign .hero-section__figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--fmpn-border);
    box-shadow: 0 8px 28px rgba(10, 35, 66, 0.1);
    background: #fff;
}

.home-redesign .hero-section__image {
    display: block;
    width: 100%;
    max-width: 1286px;
    height: auto;
    margin: 0 auto;
}

/* Stats bar */
.home-redesign .stats-bar {
    background: #fff;
    border-top: 1px solid var(--fmpn-border);
    border-bottom: 1px solid var(--fmpn-border);
    padding: 2.5rem 0;
}

.home-redesign .stat-item {
    text-align: center;
    padding: 0 1rem;
}

.home-redesign .stat-item .stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fmpn-gold);
    font-size: 1.75rem;
}

.home-redesign .stat-item .stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fmpn-navy);
    line-height: 1.2;
}

.home-redesign .stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--fmpn-text-muted);
    margin-top: 0.25rem;
}

/* News section */
.home-redesign .news-section {
    padding: 4rem 0;
    background: #fff;
}

.home-redesign .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.home-redesign .section-header h2 {
    font-size: 1.75rem;
    margin: 0;
}

.home-redesign .section-header a {
    color: var(--fmpn-navy);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.home-redesign .section-header a:hover {
    color: var(--fmpn-gold);
    text-decoration: none;
}

.home-redesign .news-featured {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
}

.home-redesign .news-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}

.home-redesign .news-featured .news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(6, 21, 40, 0.94));
    color: #fff;
}

.home-redesign .news-badge {
    display: inline-block;
    background: var(--fmpn-gold);
    color: var(--fmpn-navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

.home-redesign .news-featured .news-date {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
    color: var(--fmpn-gold-light);
}

.home-redesign .news-featured h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.home-redesign .news-featured p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.home-redesign .news-featured a.read-more {
    color: var(--fmpn-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.home-redesign .news-list-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--fmpn-border);
}

.home-redesign .news-list-item:first-child {
    padding-top: 0;
}

.home-redesign .news-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.home-redesign .news-list-item img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.home-redesign .news-list-item .news-date {
    font-size: 0.75rem;
    color: var(--fmpn-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.home-redesign .news-list-item h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.home-redesign .news-list-item h4 a {
    color: var(--fmpn-text);
    text-decoration: none;
}

.home-redesign .news-list-item h4 a:hover {
    color: var(--fmpn-navy);
}

.home-redesign .news-list-item p {
    font-size: 0.85rem;
    color: var(--fmpn-text-muted);
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.home-redesign .news-list-item a.read-more {
    color: var(--fmpn-navy);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.home-redesign .news-list-item a.read-more:hover {
    color: var(--fmpn-gold);
}

/* Comité Ejecutivo */
.home-redesign .committee-section {
    padding: 4rem 0;
    background: #fff;
}

.home-redesign .committee-card {
    background: var(--fmpn-cream);
    border: 1px solid var(--fmpn-border);
    border-top: 3px solid var(--fmpn-gold);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(10, 35, 66, 0.06);
}

.home-redesign .committee-card__brand {
    text-align: center;
    padding-right: 2rem;
    border-right: 1px solid var(--fmpn-border);
}

.home-redesign .committee-card__logo {
    height: 140px;
    width: auto;
    margin-bottom: 1rem;
}

.home-redesign .committee-card__period {
    font-weight: 600;
    color: var(--fmpn-navy);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.home-redesign .committee-card__years {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fmpn-navy);
    margin-bottom: 0.5rem;
}

.home-redesign .committee-card__motto {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--fmpn-gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.home-redesign .committee-card__message {
    padding-left: 0.5rem;
}

.home-redesign .committee-card__message-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.home-redesign .committee-card__photo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--fmpn-navy-light);
    border: 2px solid var(--fmpn-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--fmpn-navy);
    font-size: 1.5rem;
    opacity: 0.5;
}

.home-redesign .committee-card__message h3 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.home-redesign .committee-card__president-name {
    font-size: 0.9rem;
    color: var(--fmpn-text-muted);
    margin-bottom: 0;
}

.home-redesign .committee-card__message-body {
    min-height: 120px;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-radius: 6px;
    border: 1px dashed var(--fmpn-border);
}

.home-redesign .committee-card__placeholder {
    color: var(--fmpn-text-muted);
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Pillars */
.home-redesign .pillars-section {
    background: var(--fmpn-gray);
    padding: 4rem 0;
    margin-top: 3rem;
}

.home-redesign .pillars-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.home-redesign .pillars-section .section-title h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.home-redesign .pillars-section .section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--fmpn-gold);
    margin: 0.75rem auto 0;
}

.home-redesign .pillar-item {
    text-align: center;
    padding: 0 1rem;
}

.home-redesign .pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--fmpn-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}

.home-redesign .pillar-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.home-redesign .pillar-item p {
    font-size: 0.9rem;
    color: var(--fmpn-text-muted);
    line-height: 1.6;
}

/* Footer */
.home-redesign .site-footer {
    background: var(--fmpn-navy-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 3.5rem 0 0;
}

.home-redesign .footer-columns {
    margin-left: -1rem;
    margin-right: -1rem;
}

.home-redesign .footer-col {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .home-redesign .footer-col {
        margin-bottom: 0;
    }

    .home-redesign .footer-columns .footer-col:not(.footer-brand) {
        padding-top: 0.25rem;
    }
}

.home-redesign .site-footer h5 {
    color: var(--fmpn-gold);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-redesign .site-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.home-redesign .site-footer a:hover {
    color: var(--fmpn-gold);
}

.home-redesign .site-footer .footer-brand img {
    height: 72px;
    margin-bottom: 1rem;
}

.home-redesign .site-footer .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.home-redesign .site-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.35);
    margin-right: 0.5rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--fmpn-gold);
}

.home-redesign .site-footer .social-links a:hover {
    background: var(--fmpn-gold);
    color: var(--fmpn-navy);
}

.home-redesign .site-footer .footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.home-redesign .site-footer .footer-contact i {
    width: 20px;
    margin-right: 0.5rem;
    color: var(--fmpn-gold);
}

.home-redesign .footer-bottom {
    border-top: 1px solid rgba(201, 162, 39, 0.25);
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 991.98px) {
    .home-redesign .hero-section {
        padding: 2.5rem 0;
    }

    .home-redesign .hero-section__content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .home-redesign .hero-section h1 {
        font-size: 2rem;
    }

    .home-redesign .stat-item {
        margin-bottom: 1.5rem;
    }

    .home-redesign .news-featured {
        margin-bottom: 2rem;
        min-height: 320px;
    }

    .home-redesign .news-featured img {
        min-height: 320px;
    }

    .home-redesign .pillar-item {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .home-redesign .hero-section {
        padding: 2rem 0;
    }

    .home-redesign .hero-section h1 {
        font-size: 1.65rem;
    }

    .home-redesign .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .home-redesign .news-list-item img {
        width: 90px;
        height: 70px;
    }

    .home-redesign .site-header .navbar-brand img {
        height: 60px;
    }

    .home-redesign .committee-card__brand {
        padding-right: 0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-right: none;
        border-bottom: 1px solid var(--fmpn-border);
    }

    .home-redesign .committee-card {
        padding: 2rem 1.5rem;
    }

    .home-redesign .committee-card__message {
        padding-left: 0;
    }
}
