/* ============== ESTILOS GENERALES ============== */
.content-section { padding: 3rem 1.5rem; color: var(--c-text, #fff); }
#manuales { padding-top: 5rem; }

/* Panel de vidrio oscuro */
.styled-panel {
    background: rgba(14, 21, 37, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
}
.styled-panel h2 {
    color: #f39323; font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 2.25rem; border-bottom: 2px solid #f39323; padding-bottom: 0.75rem; margin-bottom: 1.5rem;
}
.styled-panel p.intro-text { color: #d1d5db; line-height: 1.7; font-size: 1.05rem; margin-bottom: 2rem; }

/* ============== BOTONES DE DOCUMENTOS ============== */
.btn-grid { display: grid; gap: 1rem; }
.btn-document {
    display: flex; align-items: center; gap: 10px;
    padding: 1rem 1.5rem; background: rgba(255, 255, 255, 0.05); color: #fff;
    text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px; transition: all 0.3s ease;
}
.btn-document:hover { background: #f39323; color: #111; border-color: #f39323; transform: translateX(5px); box-shadow: 0 4px 15px rgba(243,147,35,.2); }

/* Destacar botón principal o PDF */
.btn-document-primary {
    display: block; padding: 1rem 1.5rem; background: #f39323; color: #111;
    text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 700;
    border-radius: 8px; text-align: center; transition: all 0.3s ease;
}
.btn-document-primary:hover { background: #fff; box-shadow: 0 0 15px rgba(243,147,35,0.6); transform: translateY(-3px); }

/* ============== ACORDEONES (Para textos largos) ============== */
.accordion-container { width: 100%; margin-top: 1.5rem; }
.accordion-trigger {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff; padding: 1rem 1.5rem; width: 100%; text-align: left;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem;
    border-radius: 8px; cursor: pointer; margin-top: 0.75rem; transition: background-color 0.3s ease;
}
.accordion-trigger:hover, .accordion-trigger.active { background: #f39323; color: #111; }
.accordion-trigger.active::after { content: ' \2212'; } /* Símbolo menos */
.accordion-trigger::after { content: ' \2b'; float: right; font-weight: bold; } /* Símbolo más */

.accordion-panel {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out;
    background: rgba(10, 15, 28, 0.7); border-radius: 0 0 8px 8px;
    padding: 0 1.5rem; border: 1px solid rgba(255,255,255,0.08); border-top: none;
}
.accordion-panel.open { padding: 1.5rem; overflow-y: auto; }

/* Scrollbar interno para el texto del reglamento */
.accordion-panel::-webkit-scrollbar { width: 6px; }
.accordion-panel::-webkit-scrollbar-thumb { background: #f39323; border-radius: 10px; }

/* Texto legal interno */
.legal-text { line-height: 1.8; color: #e5e7eb; font-size: 0.95rem; }
.legal-text h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.1rem; color: #f39323; }
.legal-text p { margin-bottom: 1rem; }
.legal-text strong { color: #fff; }
