
/* ==========================================================================
   MANUAL DE AJUDA / HELP CENTER
   ========================================================================== */

.help-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    min-height: calc(100vh - 150px);
    animation: fadeIn 0.4s ease;
}

.help-sidebar {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 2rem;
    align-self: start;
}

.help-nav-list {
    list-style: none;
}

.help-nav-item {
    margin-bottom: 0.5rem;
}

.help-nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    border-radius: 0.8rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.help-nav-link:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--accent);
}

.help-nav-link.active {
    background: var(--accent) !important;
    color: var(--white) !important;
}

.help-content {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-width: 0;
}

.help-section {
    display: none;
}

.help-section.active {
    display: block;
    animation: slideUp 0.4s ease;
}

.help-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F5F5F5;
}

.help-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: none;
}

.help-header p {
    color: var(--dark);
    opacity: 0.6;
    font-size: 1rem;
}

.help-image-card {
    margin: 2rem 0;
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid #EEE;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.help-image-card img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.help-image-card:hover img {
    transform: scale(1.01);
}

.help-text-block {
    margin-bottom: 2rem;
}

.help-text-block h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: none;
}

.help-text-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
}

.help-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.help-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #F9F9F9;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.help-list li::before {
    content: "→";
    color: var(--accent);
    font-weight: 700;
}

.help-badge {
    background: #F0F0F0;
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto Mono', monospace;
}

.help-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #EEE;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help-footer p {
    font-size: 0.85rem;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .help-container {
        grid-template-columns: 1fr;
    }
    .help-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .help-content {
        padding: 1.5rem;
    }
}
