.page-header {
    background: linear-gradient(100deg, var(--azul) 60%, #0d1f3c 100%);
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(255, 255, 255, 0.018) 30px,
        rgba(255, 255, 255, 0.018) 31px
    );
}
.page-header::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--oro), var(--rojo), var(--oro));
}
.page-header-content { position: relative; z-index: 1; }
.page-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oro);
    border-left: 3px solid var(--oro);
    padding-left: 0.6rem;
    margin-bottom: 0.8rem;
}
.page-header h1 {
    font-family: var(--fuente-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin: 0;
}
.page-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin: 0.8rem 0 0;
}

.fundadores-section {
    background: var(--gris-claro);
    padding: 70px 0 90px;
}

.fundadores-intro {
    background: var(--azul);
    border-left: 5px solid var(--oro);
    padding: 1.6rem 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.fundadores-intro i {
    font-size: 2.2rem;
    color: var(--oro);
    flex-shrink: 0;
}
.fundadores-intro p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
.fundadores-intro strong { color: #fff; }

/* ── Card ── */
.fundador-card {
    background: #fff;
    border: 1px solid #e8e4dd;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    transition: transform 0.28s, box-shadow 0.28s;
    position: relative;
}
.fundador-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(26, 58, 92, 0.14);
}
.fundador-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--oro), var(--rojo));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.fundador-card:hover::after { transform: scaleX(1); }

.fundador-img-wrap {
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--azul) 0%, #0d1f3c 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fundador-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
    transition: transform 0.4s;
}
.fundador-card:hover .fundador-img-wrap img { transform: scale(1.04); }

.fundador-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fundador-placeholder i {
    font-size: 3rem;
    color: rgba(212, 160, 23, 0.28);
}
.fundador-num {
    position: absolute;
    bottom: 0.8rem; right: 0.8rem;
    width: 30px; height: 30px;
    background: rgba(212, 160, 23, 0.9);
    color: var(--azul);
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fundador-zoom {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 48px; height: 48px;
    background: rgba(26, 58, 92, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oro);
    font-size: 1.3rem;
    backdrop-filter: blur(4px);
    transition: transform 0.3s;
    pointer-events: none;
}
.fundador-card:hover .fundador-zoom { transform: translate(-50%, -50%) scale(1); }

.fundador-body {
    padding: 1.1rem 1.3rem 1.3rem;
    border-top: 3px solid var(--gris-claro);
}
.fundador-body h5 {
    font-family: var(--fuente-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--azul);
    line-height: 1.35;
    margin: 0;
}
.fundador-label {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gris-medio);
    margin-bottom: 0.35rem;
}

/* ── Modal ── */
.foto-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 1.5rem;
}
.foto-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.foto-modal-inner {
    background: #fff;
    max-width: 460px;
    width: 100%;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s;
}
.foto-modal-overlay.active .foto-modal-inner { transform: scale(1); }

.foto-modal-img-wrap {
    background: linear-gradient(135deg, var(--azul), #0d1f3c);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    max-height: 55vh;
    overflow: hidden;
}
.foto-modal-img-wrap img {
    max-width: 100%;
    max-height: 55vh;
    object-fit: contain;
    display: block;
}
.foto-modal-placeholder {
    min-height: 280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.foto-modal-placeholder i {
    font-size: 5rem;
    color: rgba(212, 160, 23, 0.25);
}
.foto-modal-body {
    padding: 1.4rem 1.8rem 1.8rem;
    border-top: 4px solid var(--oro);
}
.foto-modal-body .fm-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gris-medio);
    margin-bottom: 0.25rem;
}
.foto-modal-body h3 {
    font-family: var(--fuente-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--azul);
    line-height: 1.25;
    margin-bottom: 0.25rem;
}
.foto-modal-body .fm-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rojo);
}
.foto-modal-close {
    position: absolute;
    top: 0.7rem; right: 0.7rem;
    width: 36px; height: 36px;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1;
}
.foto-modal-close:hover { background: var(--rojo); }

.fm-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(26, 58, 92, 0.7);
    border: 1.5px solid rgba(212, 160, 23, 0.4);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 3001;
}
.fm-nav:hover { background: var(--azul); border-color: var(--oro); }
.fm-prev { left: 1rem; }
.fm-next { right: 1rem; }
.fm-counter {
    font-size: 0.7rem;
    color: var(--gris-medio);
    margin-top: 0.4rem;
}