

.page-ayuda-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fff;
}

.page-ayuda-wrapper main {
    flex: 1;
}


.breadcrumb {
    margin: 20px 0;
    padding: 0;
    background: transparent;
    font-size: 0.9rem;
}


.hero-section {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.hero-text {
    font-size: 1.05rem;
    color: #6c757d;
}


.faq-content {
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.faq-list {
    max-width: 100%;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-header {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.faq-chevron {
    color: #888;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}


.faq-header:not(.collapsed) .faq-chevron {
    transform: rotate(180deg);
}

.faq-header:not(.collapsed) .faq-title {
    color: var(--color-primary);
}

.faq-body {
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-body.collapsed {
    max-height: 0;
}

.faq-body:not(.collapsed) {
    max-height: 500px;
    
}

.faq-text {
    padding: 10px 0 20px 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.alert-info {
    padding: 1rem;
    background-color: #e7f1ff;
    color: #0c5460;
    border: 1px solid #b8daff;
    border-radius: 6px;
}


.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}


@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
}