/* ========================================
   ORGANIZADOR.CSS - ESTILOS ESPECÍFICOS
======================================== */

/* HERO ORGANIZADOR */
.organizador-hero {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 3rem 0;
}

.organizador-hero-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.organizador-logo-hero {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizador-logo-hero img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
}

.organizador-intro-hero h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.organizador-descripcion-hero {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

/* ESTADÍSTICAS GLOBALES */
.stats-globales-section {
    background: white;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stats-globales-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-global-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-global-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
    border-color: var(--primary);
}

.stat-global-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-global-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-global-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.stat-global-content span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* MISIÓN Y VISIÓN */
.mision-vision-section {
    background: white;
    padding: 4rem 0;
}

.mision-vision-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
}

.mision-card,
.vision-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.mision-card:hover,
.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
    border-color: var(--primary);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mision-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.mision-card p,
.vision-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

/* VALORES */
.valores-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 4rem 0;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.valor-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
    border-color: var(--primary);
}

.valor-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.valor-icon i {
    font-size: 2rem;
    color: white;
}

.valor-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.valor-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

/* LIDERAZGO */
.liderazgo-section {
    background: white;
    padding: 4rem 0;
}

.presidente-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    align-items: center;
}

.presidente-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.presidente-image img {
    width: 100%;
    height: auto;
    display: block;
}

.presidente-info h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.presidente-cargo {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.presidente-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.presidente-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--primary);
}

.feature-badge i {
    color: var(--accent);
}

/* ENLACES Y REDES */
.enlaces-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 4rem 0;
}

.enlaces-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.enlace-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.enlace-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
    border-color: var(--primary);
}

.enlace-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enlace-icon i {
    font-size: 1.8rem;
    color: white;
}

.enlace-content {
    flex: 1;
}

.enlace-content strong {
    display: block;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.enlace-content span {
    font-size: 0.9rem;
    color: var(--gray);
}

.enlace-arrow {
    font-size: 1.3rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.enlace-card:hover .enlace-arrow {
    transform: translateX(8px);
}

.redes-sociales {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
}

.redes-sociales h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.redes-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.red-social {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.red-social:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
}

/* CTA ORGANIZADOR */
.cta-organizador {
    background: linear-gradient(135deg, var(--primary), #1e40af);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content-org h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content-org p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-org {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-org.btn-primary {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: white;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.btn-cta-org.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fb923c, #f97316);
}

.btn-cta-org.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
}

.btn-cta-org.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

/* BREADCRUMB */
.header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.header-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.header-breadcrumb a:hover {
    color: white;
}

.header-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .organizador-hero-content,
    .presidente-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .organizador-logo-hero {
        margin: 0 auto;
        max-width: 300px;
    }
    
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-globales-grid {
        grid-template-columns: 1fr;
    }
    
    .mision-vision-grid,
    .enlaces-grid,
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .organizador-intro-hero h2 {
        font-size: 2rem;
    }
    
    .presidente-info h3 {
        font-size: 1.6rem;
    }
    
    .cta-content-org h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-org {
        width: 100%;
        max-width: 320px;
    }
}
