/* Dropdown container */
.help-dropdown {
    position: relative;
    display: inline-block;
}

/* Trigger (icon + label) */
.help-trigger {
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Dropdown list */
.help-dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-top: 0;
    /* Cambiado de 8px a 0 para evitar el espacio que causa que se pierda el hover */
    z-index: 1000;
    padding: 8px 0;
    list-style: none;
}

.help-dropdown-list li {
    padding: 0;
}

.help-dropdown-list li a {
    display: block;
    padding: 4px 18px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border-radius: 4px;
}

.help-dropdown-list li a:hover {
    background: #fff;
    color: #e30613;
}

/* Show dropdown on hover */
.help-dropdown:hover .help-dropdown-list,
.help-dropdown:focus-within .help-dropdown-list {
    display: block;
}

.top-left {
    display: flex;
}

/* Ocultar en celulares */
@media (max-width: 767px) {
    .help-solutions-container {
        display: none !important;
    }

    .redes {
        display: none !important;
    }
}