/* ══════════════════════════════════════
   Área Académica (compartido)
══════════════════════════════════════ */

/* Generic section wrapper */
.aa-section {
    max-width: 1200px; margin: 0 auto; padding: 72px 80px;
}
.aa-section h2 { font-size: 1.85rem; color: #07193d; margin: 8px 0 18px; }
.aa-section > p { color: #4a5568; line-height: 1.75; margin-bottom: 48px; }

/* Plan cards (plan-anual, plan-integral) */
.plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.plan-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 14px rgba(7,25,61,.06);
    border-top: 4px solid transparent;
    transition: border-color .25s, transform .25s;
}
.plan-card:hover { border-top-color: #dca84d; transform: translateY(-4px); }
.plan-card__icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #dca84d22, #ffd76d22);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #dca84d;
    margin-bottom: 16px;
}
.plan-card h3 { font-size: 1rem; color: #07193d; margin-bottom: 8px; }
.plan-card p  { font-size: .875rem; color: #5a6a7e; line-height: 1.65; }

/* Download CTA (plan anual) */
.aa-download { background: #f5f7fc; padding: 48px 80px; }
.aa-download__inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; gap: 28px;
    background: white; border-radius: 16px; padding: 32px 36px;
    box-shadow: 0 4px 24px rgba(7,25,61,.08);
    border-left: 5px solid #dca84d;
}
.aa-download__inner > i { color: #dca84d; flex-shrink: 0; width: 40px; height: 40px; }
.aa-download__inner h3 { font-size: 1.1rem; color: #07193d; margin-bottom: 4px; }
.aa-download__inner p  { font-size: .875rem; color: #5a6a7e; }
.aa-download__btn {
    margin-left: auto; flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 30px;
    background: linear-gradient(135deg, #dca84d, #ffd76d);
    color: #0a1f45; font-weight: 700; font-size: .9rem; text-decoration: none;
    transition: transform .25s, box-shadow .25s;
}
.aa-download__btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,168,77,.4); }

/* Cronograma */
.crono-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.crono-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(7,25,61,.06);
}
.crono-item__header {
    display: flex; align-items: center; gap: 12px;
    padding: 20px 24px;
    background: #07193d;
    color: white;
}
.crono-item--primer  .crono-item__header { background: #07193d; }
.crono-item--segundo .crono-item__header { background: #0c2b66; }
.crono-item--eventos .crono-item__header { background: linear-gradient(135deg, #dca84d, #c8922e); color: #0a1f45; }
.crono-item__header i { width: 22px; height: 22px; }
.crono-item__header h3 { font-size: 1rem; font-weight: 700; }
.crono-list { list-style: none; padding: 0; }
.crono-list li {
    display: flex; align-items: baseline; gap: 12px;
    padding: 11px 24px;
    border-bottom: 1px solid #eef2f8;
    font-size: .88rem; color: #374151;
}
.crono-list li:last-child { border-bottom: none; }
.crono-list li span {
    flex-shrink: 0;
    width: 52px;
    font-size: .78rem; font-weight: 700;
    color: #dca84d;
    text-transform: uppercase;
}

/* Útiles escolares accordion */
.utiles-accordion { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.utiles-level {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(7,25,61,.05);
    border-left: 4px solid #dca84d;
}
.utiles-level summary {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 22px;
    font-weight: 600; font-size: .95rem; color: #07193d;
    cursor: pointer;
    list-style: none;
}
.utiles-level summary i { width: 18px; height: 18px; transition: transform .2s; flex-shrink: 0; }
.utiles-level[open] summary i { transform: rotate(90deg); }
.utiles-level ul {
    list-style: none;
    padding: 0 22px 18px 52px;
}
.utiles-level ul li {
    padding: 6px 0;
    font-size: .875rem; color: #4a5568;
    border-bottom: 1px dashed #e2e8f0;
}
.utiles-level ul li:last-child { border-bottom: none; }

/* PIE equipo (plan integral) */
.pia-equipo { background: #07193d; padding: 64px 80px; text-align: center; }
.pia-equipo h2 { font-size: 1.75rem; color: white; margin: 8px 0 36px; }
.pia-roles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    max-width: 700px;
    margin: 0 auto;
}
.pia-role {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(220,168,77,.25);
    border-radius: 14px;
    padding: 24px 28px;
    min-width: 140px;
}
.pia-role i { color: #ffd76d; width: 28px; height: 28px; }
.pia-role p { font-size: .875rem; color: rgba(255,255,255,.8); text-align: center; }

/* Deportivo/Artístico */
.da-activities {
    max-width: 1200px; margin: 0 auto;
    padding: 0 80px 80px;
    display: flex; flex-direction: column; gap: 60px;
}
.da-category__header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 28px;
}
.da-category__header i { color: #dca84d; width: 30px; height: 30px; }
.da-category__header h2 { font-size: 1.6rem; color: #07193d; }
.da-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.da-card {
    background: white; border-radius: 14px; padding: 24px 20px;
    box-shadow: 0 2px 12px rgba(7,25,61,.06);
    transition: transform .25s, box-shadow .25s;
}
.da-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(7,25,61,.1); }
.da-card i { color: #dca84d; display: block; margin-bottom: 12px; width: 28px; height: 28px; }
.da-card h4 { font-size: .95rem; color: #07193d; margin-bottom: 8px; }
.da-card p  { font-size: .85rem; color: #5a6a7e; line-height: 1.6; }

@media (max-width: 900px) {
    .aa-section, .aa-download,
    .pia-equipo, .da-activities { padding-left: 24px; padding-right: 24px; }
    .aa-download__inner { flex-direction: column; text-align: center; }
    .aa-download__btn { margin-left: 0; }
}
