﻿/* =========================================
   CEN SEESIME - ESTILOS EJECUTIVOS
   ========================================= */
:root {
    --cen-dark: #1b4d3e;
    --cen-accent: #2ecc71;
    --cen-light: #f4f7f6;
    --cen-border: rgba(27, 77, 62, 0.1);
    --cen-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    --cen-hover: 0 10px 30px rgba(27, 77, 62, 0.12);
}

.cen-hero {
    background: linear-gradient(135deg, var(--cen-dark) 0%, #2a6b55 100%);
    color: #fff;
    padding: 4rem 0 3.5rem;
}

.cen-badge {
    display: inline-block;
    background: rgba(46, 204, 113, 0.2);
    color: var(--cen-accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.cen-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 0.5rem;
}

.cen-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--cen-accent);
    margin-top: 1.5rem;
}

/* Sección Misión */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--cen-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cen-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    border-left: 4px solid var(--cen-accent);
    padding-left: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
}

/* V-Cards Ejecutivas */
.cen-vcard {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--cen-shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--cen-border);
    display: flex;
    flex-direction: column;
}

    .cen-vcard:hover {
        transform: translateY(-6px);
        box-shadow: var(--cen-hover);
        border-color: rgba(46, 204, 113, 0.3);
    }

.vcard-header {
    background: linear-gradient(135deg, var(--cen-dark), #256652);
    color: #fff;
    padding: 1.2rem;
    font-size: 1.8rem;
    border-radius: 12px 12px 0 0;
}

.vcard-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vcard-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--cen-dark);
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.vcard-role {
    display: inline-block;
    background: rgba(46, 204, 113, 0.1);
    color: var(--cen-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vcard-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Objetivos */
.obj-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--cen-shadow);
    border: 1px solid var(--cen-border);
    transition: all 0.2s ease;
}

    .obj-card:hover {
        border-color: var(--cen-accent);
        background: #fafcfc;
    }

.obj-icon {
    background: var(--cen-dark);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.obj-card p {
    margin: 0;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

/* Estatutos Descargables */
.statute-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--cen-shadow);
    border: 1px solid var(--cen-border);
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}

    .statute-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--cen-hover);
        border-color: var(--cen-accent);
        color: inherit;
    }

.statute-icon {
    background: #fee2e2;
    color: #dc2626;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

    .statute-icon.updated {
        background: #dcfce7;
        color: #16a34a;
    }

.statute-info {
    flex: 1;
}

.statute-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cen-dark);
    margin-bottom: 0.25rem;
}

.statute-meta {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.statute-action {
    color: var(--cen-dark);
    font-size: 1.2rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.statute-card:hover .statute-action {
    opacity: 1;
    color: var(--cen-accent);
}

/* Responsive */
@media (max-width: 767px) {
    .cen-hero {
        padding: 3rem 0 2.5rem;
    }

    .cen-quote {
        border-left: none;
        border-top: 3px solid var(--cen-accent);
        padding: 1rem 0 0;
        text-align: center;
    }

    .obj-card {
        flex-direction: column;
        text-align: center;
    }

    .statute-card {
        flex-direction: column;
        text-align: center;
    }

    .statute-icon {
        margin: 0 0 1rem 0;
    }
}
