/* Ayuda Etiquetado — estilos adicionales */

.ayuda-content section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.ayuda-content section:last-child { border-bottom: none; }

.ayuda-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ayuda-content h2 i { color: #3b82f6; }

.ayuda-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #374151;
    margin: 1.2rem 0 0.5rem;
}

.ayuda-content p {
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.6rem;
}

.ayuda-content ol, .ayuda-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
    line-height: 1.8;
    color: #4b5563;
}
.ayuda-content li { margin-bottom: 0.3rem; }

.ayuda-content code {
    background: #f1f5f9;
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 0.9em;
    color: #e11d48;
}

/* Tabla de campos */
.ayuda-tabla {
    width: 100%;
    border-collapse: collapse;
    margin: 0.8rem 0 1.2rem;
    font-size: 0.9rem;
}
.ayuda-tabla th {
    background: #1e293b;
    color: #fff;
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
}
.ayuda-tabla td {
    padding: 6px 12px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}
.ayuda-tabla tr:hover td { background: #f8fafc; }
.ayuda-tabla td:first-child {
    font-family: 'Lucida Console', monospace;
    font-weight: 600;
    color: #2563eb;
    font-size: 0.85rem;
}

/* Tip/nota */
.ayuda-tip {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0 6px 6px 0;
    margin: 1rem 0;
    align-items: flex-start;
}
.ayuda-tip i {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-top: 2px;
}
.ayuda-tip div {
    color: #1e40af;
    font-size: 0.9rem;
    line-height: 1.6;
}
