/* ══════════════════════════════════════
   Documentos Reglamentarios
══════════════════════════════════════ */

/* Intro */
.docs-intro {
    max-width: 860px; margin: 0 auto;
    padding: 72px 80px 48px; text-align: center;
}
.docs-intro h2 { font-size: 1.85rem; color: #07193d; margin: 10px 0 16px; }
.docs-intro p  { color: #4a5568; line-height: 1.75; }

/* Document list */
.docs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 80px 80px;
}
.docs-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: white;
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(7,25,61,.06);
    transition: box-shadow .2s, transform .2s;
}
.docs-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(7,25,61,.1); }
.docs-card__icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #07193d22, #0c2b6622);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #07193d;
}
.docs-card__body { flex: 1; }
.docs-card__body h3 { font-size: 1rem; color: #07193d; margin-bottom: 4px; }
.docs-card__body p  { font-size: .875rem; color: #5a6a7e; line-height: 1.6; }
.docs-card__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, #dca84d, #ffd76d);
    color: #0a1f45;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.docs-card__btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(220,168,77,.4); }

@media (max-width: 900px) {
    .docs-intro, .docs-list { padding-left: 24px; padding-right: 24px; }
    .docs-card { flex-direction: column; align-items: flex-start; }
    .docs-card__btn { align-self: flex-start; }
}
