/* ── Sección hero ── */
.club-hero {
    background-color: #6225e6;
    padding: 60px 20px 40px;
    text-align: center;
    color: white;
}

.club-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.club-hero p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.hero-divider {
    width: 60px;
    height: 4px;
    background-color: white;
    margin: 18px auto 0;
    border-radius: 2px;
    opacity: 0.6;
}

/* ── Contenido principal ── */
.club-main {
    background-color: #f9f3ff;
    padding: 50px 20px 60px;
}

.section-card {
    background-color: white;
    padding: 32px 36px;
    margin-bottom: 28px;
    border: 4px solid black;
    box-shadow: 12px 12px 0px #6225e6;
}

.section-card h2 {
    color: #6225e6;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-card h2 .icon {
    background-color: #6225e6;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.section-card p {
    color: #444;
    line-height: 1.8;
    font-size: 0.97rem;
}

/* ── Objetivos específicos ── */
.objetivos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 4px;
}

.objetivo-item {
    background-color: #f9f3ff;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.objetivo-num {
    background-color: #6225e6;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.objetivo-item h3 {
    color: #6225e6;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.objetivo-item p {
    font-size: 0.87rem;
    color: #555;
    line-height: 1.6;
}

/* ── Mesa directiva ── */
.directiva-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 4px;
}

.directiva-card {
    background-color: #f9f3ff;
    border-radius: 10px;
    padding: 18px 20px;
    text-align: center;
}

.directiva-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 12px;
    border: 3px solid #6225e6;
}

.directiva-card h3 {
    color: #2d002e;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.directiva-card span {
    font-size: 0.82rem;
    color: #6225e6;
    font-weight: 600;
    background-color: #ede0f5;
    padding: 2px 10px;
    border-radius: 20px;
}

/* ── Misión / Visión: Declaración + Pilares ── */
.mv-declaracion {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
    border-left: 5px solid #6225e6;
    padding: 10px 0 10px 18px;
    margin-bottom: 24px;
    font-style: italic;
}

.mv-pilares {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mv-pilar {
    background: #f9f3ff;
    border: 3px solid black;
    padding: 18px 14px;
    text-align: center;
}

.mv-pilar-icon {
    font-size: 2rem;
    color: #6225e6;
    display: block;
    margin-bottom: 8px;
}

.mv-pilar h3 {
    font-size: 0.82rem;
    font-weight: 800;
    color: #6225e6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.mv-pilar p {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .club-hero h1 { font-size: 1.8rem; }
    .objetivos-grid { grid-template-columns: 1fr; }
    .directiva-grid { grid-template-columns: 1fr; }
    .section-card { padding: 22px 20px; }
    .mv-pilares { grid-template-columns: 1fr; }
}
