/* =========================================================================
   DISEÑO EXCLUSIVO - NUESTRO PRESIDENTE
   ========================================================================= */

/* 
   Hero Premium con Gradiente Dinamico
   ===================================
*/
.presidente-hero {
    position: relative;
    padding: 180px 30px 100px; /* Mas padding arriba por el navbar */
    background: linear-gradient(135deg, #0b0c10 0%, #1f2128 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efecto de Luces Traseras (Blobs) */
.presidente-blob-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: presiBlobMove 20s infinite alternate;
}

.presidente-blob-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    animation: presiBlobMove 15s infinite alternate-reverse;
}

@keyframes presiBlobMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10%, 10%) scale(1.1); }
}

.presidente-hero-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .presidente-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Foto o Tarjeta del Presidente Izquierda */
.presi-card-wrapper {
    position: relative;
    animation: revealRight 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Contenedor tipo marco holografico */
.presi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.presi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    animation: glassShine 6s infinite;
}

@keyframes glassShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.presi-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #e63946;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: white;
    box-shadow: 0 15px 35px rgba(230,57,70,0.3);
    position: relative;
}

.presi-avatar::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(230,57,70,0.5);
    border-radius: 50%;
    animation: presiPulse 3s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes presiPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.presi-name {
    font-size: 1.8rem;
    color: white;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.presi-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Textos Derechos (Mensaje Oficial) */
.presi-text-area {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.presi-kicker {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.presi-headline {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-family: 'Playfair Display', serif;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
}

.presi-intromessage {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

@keyframes revealRight {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes revealUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   ARTÍCULO PRINCIPAL (DISEÑO TIPO EDITORIAL REVISTA)
   ========================================================================= */
.presi-article-section {
    padding: 100px 30px;
    background-color: var(--bg-light);
    position: relative;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Estilos de Parrafos Especiales */
.editorial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 35px;
    font-weight: 400;
}

.editorial-text-lead {
    font-size: 1.35rem;
    line-height: 1.9;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 50px;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--primary);
}

/* Cajas de Subtitulos Estilo Entrevista */
.interview-q {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 60px 0 25px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.interview-q::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

/* Interrupciones Visuales (Blockquotes Espectaculares) */
.mag-quote {
    margin: 60px 0;
    padding: 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    position: relative;
    text-align: center;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mag-quote.in-view {
    transform: scale(1);
    opacity: 1;
}

.mag-quote i {
    font-size: 3rem;
    color: rgba(230,57,70,0.2);
    position: absolute;
    top: 30px;
    left: 40px;
}

.mag-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--primary);
    font-style: italic;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* Firma Final Impresionante */
.signature-box {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.final-motto {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    font-weight: 700;
    font-style: italic;
    max-width: 800px;
    line-height: 1.3;
}

.sign-author {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sign-title {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .editorial-text { font-size: 1.05rem; }
    .editorial-text-lead { font-size: 1.2rem; }
    .mag-quote p { font-size: 1.3rem; }
    .mag-quote { padding: 40px 20px; }
    .final-motto { font-size: 1.6rem; }
}
