.ayuda-topbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.35);
    background: #dc2626;
    color: #fff !important;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 700;
    font-size: 13px;
}
.ayuda-topbar-btn:hover {
    background: #b91c1c;
    color: #fff !important;
}
.ayuda-split-open .main-header .navbar-nav .nav-link,
.ayuda-split-open .main-header .ayuda-topbar-btn {
    width: 40px;
    min-width: 40px;
    height: 36px;
    justify-content: center;
    gap: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible;
}
.ayuda-split-open .main-header .navbar-nav .nav-link > span,
.ayuda-split-open .main-header .ayuda-topbar-btn > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.ayuda-split-open .main-header .navbar-nav .nav-link > i,
.ayuda-split-open .main-header .ayuda-topbar-btn > i {
    font-size: 16px;
}
.ayuda-split-open .content-wrapper,
.ayuda-split-open .main-header,
.ayuda-split-open .main-footer {
    margin-right: min(460px, 34vw);
    transition: margin-right .24s ease;
}
.ayuda-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.42);
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 2050;
}
.ayuda-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
.ayuda-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(460px, 34vw);
    height: 100vh;
    background: #fff;
    box-shadow: -20px 0 40px rgba(15,23,42,.22);
    transform: translateX(105%);
    transition: transform .24s ease;
    z-index: 2060;
    display: flex;
    flex-direction: column;
}
.ayuda-panel.is-open {
    transform: translateX(0);
}
.ayuda-panel-header {
    background: linear-gradient(135deg,#0e3175 0%,#2f78bf 100%);
    color: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 4px solid #f49100;
}
.ayuda-panel-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff !important;
}
.ayuda-close {
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    color: #fff;
}
.ayuda-panel-body {
    padding: 20px;
    overflow: auto;
    color: #1f2937;
    line-height: 1.48;
}
.ayuda-resumen {
    background: #eff6ff;
    border-left: 4px solid #2f78bf;
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 700;
    margin-bottom: 18px;
}
.ayuda-panel-body h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #0e3175;
    font-weight: 800;
    margin: 18px 0 8px;
}
.ayuda-section {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 14px;
    background: #fff;
}
.ayuda-section ol,
.ayuda-section ul {
    padding-left: 18px;
    margin-bottom: 0;
}
.ayuda-section li + li {
    margin-top: 6px;
}
.ayuda-video-box {
    display: block;
    border: 1px solid #fecaca;
    background: #fff7f7;
    border-radius: 10px;
    padding: 12px 14px;
    margin: 16px 0 4px;
}
.ayuda-video-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #7f1d1d;
}
.ayuda-video-copy strong {
    font-size: 14px;
}
.ayuda-video-copy span {
    font-size: 12px;
}

.ayuda-video-thumb {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(127,29,29,.14);
    display: block;
    margin-top: 10px;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}
.ayuda-video-thumb img {
    display: block;
    height: auto;
    width: 100%;
}
.ayuda-video-play {
    align-items: center;
    background: #dc2626;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 24px;
    height: 58px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 58px;
}
.ayuda-video-title {
    background: linear-gradient(180deg, rgba(15,23,42,0), rgba(15,23,42,.78));
    bottom: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    left: 0;
    padding: 34px 12px 10px;
    position: absolute;
    text-align: left;
    width: 100%;
}
.ayuda-video-frame {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
.ayuda-video-frame iframe {
    border: 0;
    height: 100%;
    width: 100%;
}
.ayuda-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-weight: 700;
}
@media (max-width: 767px) {
    .ayuda-topbar-btn span {
        display: none;
    }
}
@media (max-width: 991px) {
    .ayuda-split-open .content-wrapper,
    .ayuda-split-open .main-header,
    .ayuda-split-open .main-footer {
        margin-right: 0;
    }
    .ayuda-overlay {
        display: block;
    }
    .ayuda-panel {
        width: min(420px, 94vw);
    }
    .ayuda-video-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

.adecopa-floating-hscroll {
    position: fixed;
    left: 16px;
    bottom: 12px;
    height: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    z-index: 2058;
    display: none;
    background: rgba(255,255,255,.96);
    border: 1px solid #dbe3ef;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(15,23,42,.16);
    cursor: ew-resize;
    pointer-events: auto;
    touch-action: none;
    user-select: none;
}
.adecopa-floating-hscroll.is-visible {
    display: block;
}
.adecopa-floating-hscroll-inner {
    height: 1px;
}
.adecopa-floating-hscroll::-webkit-scrollbar {
    height: 12px;
}
.adecopa-floating-hscroll::-webkit-scrollbar-track {
    background: #eef2f7;
    border-radius: 999px;
}
.adecopa-floating-hscroll::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 999px;
}
.adecopa-floating-hscroll::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}
