/* Notion-inspired Help Center Styles */
        .ayuda-wrapper {
            background: #f7f7f5;
            min-height: 100vh;
            padding: 0;
        }

        .ayuda-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Header */
        .ayuda-header {
            margin-bottom: 60px;
            transition: margin-bottom 0.3s;
        }

        .ayuda-header.with-search {
            margin-bottom: 60px;
        }

        .ayuda-header.without-search {
            margin-bottom: 40px;
        }

        .ayuda-title {
            font-size: 48px;
            font-weight: 700;
            color: #37352f;
            margin-bottom: 32px;
            letter-spacing: -0.03em;
            transition: margin-bottom 0.3s;
        }

        .ayuda-title.no-search {
            margin-bottom: 0;
        }

        .ayuda-search-box {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .ayuda-search-box i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #9b9a97;
            font-size: 18px;
        }

        .ayuda-search-box input {
            width: 100%;
            padding: 16px 20px 16px 52px;
            font-size: 16px;
            border: 1px solid #e3e2e0;
            border-radius: 8px;
            background: white;
            transition: all 0.2s;
        }

        .ayuda-search-box input:focus {
            outline: none;
            border-color: #a9c98c;
            box-shadow: 0 0 0 3px rgba(169, 201, 140, 0.1);
        }

        .ayuda-search-status {
            min-height: 1.5rem;
            margin: 0.75rem 0 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
            text-align: center;
        }

        .ayuda-search-status.is-empty {
            color: var(--neutral-text);
            font-weight: 600;
        }

        /* Categories */
        .ayuda-categories {
            margin-bottom: 60px;
        }

        /* Videos Section */
        .ayuda-videos {
            margin-bottom: 60px;
        }

        .videos-title {
            font-size: 32px;
            font-weight: 600;
            color: #37352f;
            margin-bottom: 12px;
        }

        .videos-subtitle {
            font-size: 16px;
            color: #787774;
            margin-bottom: 0;
        }

        .video-card {
            background: white;
            border: 1px solid #e3e2e0;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.2s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .video-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            border-color: #d3d2cf;
        }

        .video-header {
            padding: 20px 24px;
            background: #fafafa;
            border-bottom: 1px solid #e3e2e0;
            display: flex;
            align-items: center;
        }

        .video-header i {
            color: #a9c98c;
            font-size: 20px;
        }

        .video-header h5 {
            font-size: 20px;
            font-weight: 600;
            color: #37352f;
            margin-bottom: 0;
            margin-left: 8px;
        }

        .video-embed {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            background: #000;
        }

        .video-embed iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .video-footer {
            padding: 16px 24px;
            background: white;
        }

        .video-footer p {
            margin: 0;
            font-size: 14px;
            color: #787774;
            line-height: 1.5;
        }

        /* Video Carousel Styles */
        .video-carousel-container {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 60px;
        }

        .video-carousel-wrapper {
            overflow: hidden;
            position: relative;
        }

        .video-carousel {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
        }

        .video-carousel-item {
            flex: 0 0 calc(40% - 10px);
            min-width: calc(40% - 10px);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 2px solid #e3e2e0;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s;
            color: #37352f;
            font-size: 18px;
        }

        .carousel-btn:hover {
            background: #a9c98c;
            border-color: #a9c98c;
            color: white;
            box-shadow: 0 4px 12px rgba(169, 201, 140, 0.3);
        }

        .carousel-btn-prev {
            left: 0;
        }

        .carousel-btn-next {
            right: 0;
        }

        .carousel-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .carousel-btn:disabled:hover {
            background: white;
            border-color: #e3e2e0;
            color: #37352f;
            box-shadow: none;
        }

        @media (max-width: 768px) {
            .video-carousel-item {
                flex: 0 0 calc(80% - 10px);
                min-width: calc(80% - 10px);
            }

            .video-carousel-container {
                padding: 0 50px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        .category-card {
            display: block;
            padding: 32px;
            background: white;
            border: 1px solid #e3e2e0;
            border-radius: 12px;
            text-decoration: none;
            color: inherit;
            transition: all 0.2s;
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            border-color: #a9c98c;
            text-decoration: none;
            color: inherit;
        }

        .category-icon {
            width: 48px;
            height: 48px;
            background: #f0f3ed;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .category-icon i {
            font-size: 24px;
            color: #a9c98c;
        }

        .category-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: #37352f;
            margin-bottom: 8px;
        }

        .category-card p {
            font-size: 14px;
            color: #787774;
            margin-bottom: 0;
        }

        /* FAQ Sections */
        .faq-section {
            margin-bottom: 60px;
            display: none; /* Ocultas por defecto */
        }

        .faq-section.active {
            display: block;
        }

        /* Back button */
        .back-to-categories {
            margin-bottom: 40px;
        }

        .btn-back {
            background: white;
            border: 1px solid #e3e2e0;
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .btn-back:hover {
            border-color: #a9c98c;
            color: #a9c98c;
            background: #fafafa;
        }

        .section-title {
            font-size: 32px;
            font-weight: 600;
            color: #37352f;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 2px solid #e3e2e0;
        }

        /* FAQ Items */
        .faq-item {
            background: white;
            border: 1px solid #e3e2e0;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.2s;
        }

        .faq-item:hover {
            border-color: #d3d2cf;
        }

        .faq-question {
            width: 100%;
            border: 0;
            background: transparent;
            text-align: left;
            font: inherit;
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: #fafafa;
        }

        .faq-question:focus-visible {
            outline: 3px solid var(--focus-ring);
            outline-offset: -3px;
        }

        .faq-question > span:first-child {
            font-size: 16px;
            font-weight: 500;
            color: #37352f;
            flex: 1;
        }

        .faq-icons {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .faq-video-icon {
            color: #a9c98c;
            font-size: 18px;
            transition: all 0.2s;
        }

        .faq-question:hover .faq-video-icon {
            color: #8ab06d;
            transform: scale(1.1);
        }

        .faq-question i.fa-chevron-down {
            color: #9b9a97;
            transition: transform 0.3s;
            margin-left: 0;
        }

        .faq-question[aria-expanded="true"] i.fa-chevron-down {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 24px 24px 24px;
            color: #37352f;
            font-size: 15px;
            line-height: 1.7;
        }

        .faq-answer p {
            margin-bottom: 12px;
        }

        .faq-answer ul,
        .faq-answer ol {
            margin-left: 20px;
            margin-bottom: 12px;
        }

        .faq-answer li {
            margin-bottom: 8px;
        }

        .faq-answer strong {
            font-weight: 600;
            color: #37352f;
        }

        .faq-answer a {
            color: #a9c98c;
            text-decoration: none;
        }

        .faq-answer a:hover {
            text-decoration: underline;
        }

        .faq-answer table {
            width: 100%;
            margin-top: 12px;
            margin-bottom: 12px;
        }

        .faq-answer table.table-bordered {
            border-collapse: collapse;
        }

        .faq-answer table th {
            background: #fafafa;
            font-weight: 600;
            color: #37352f;
            padding: 12px;
            border: 1px solid #e3e2e0;
            text-align: left;
        }

        .faq-answer table td {
            padding: 12px;
            border: 1px solid #e3e2e0;
            color: #37352f;
        }

        .faq-answer table tbody tr:hover {
            background: #fafafa;
        }

        /* Footer */
        .ayuda-footer {
            margin-top: 80px;
        }

        .ayuda-footer .card {
            background: white;
            border: 1px solid #e3e2e0;
            border-radius: 12px;
            padding: 40px;
        }

        .ayuda-footer h3 {
            font-size: 24px;
            font-weight: 600;
            color: #37352f;
            margin-bottom: 12px;
        }

        .ayuda-footer p {
            font-size: 16px;
            color: #787774;
            margin-bottom: 24px;
        }

        .ayuda-footer .btn-primary {
            background: #a9c98c;
            border-color: #a9c98c;
            padding: 12px 32px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 8px;
        }

        .ayuda-footer .btn-primary:hover {
            background: #98b87b;
            border-color: #98b87b;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .ayuda-title {
                font-size: 32px;
            }

            .section-title {
                font-size: 24px;
            }

            .category-card {
                padding: 24px;
            }

            .videos-title {
                font-size: 24px;
            }

            .video-card {
                margin-bottom: 20px;
            }
        }

        /* Scroll smooth */
        html {
            scroll-behavior: smooth;
        }

.ayuda-hidden {
    display: none !important;
}

.ayuda-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
}

.ayuda-video-embed-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

