@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F2F2F2;
}

.ayuda-search-container {
    background-color: #192843;
    padding: 40px 20px;
    margin-bottom: 30px;
    justify-items: center;
    text-align: center;
}

.ayuda-bienvenida {
    font-size: 21px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.custom-container {
    margin-top: 64px;
    margin-bottom: 70px;
}

.custom-search {
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 223px;
}

.ayuda-titulo-categorias {
    font-weight: 700;
    font-size: 21px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.ayuda-categorias {
    padding-top: 16px;
    padding-bottom: 20px;
    background-color: #03AB90;
    border-radius: 13px;
    width: 100%;
    max-width: 315px;
}

.ayuda-categorias .list-group-item {
    min-height: 53px;
    border: none;
    border-radius: 0px 6px 6px 0px;
    padding: 8px 16px;
    font-size: 17px;
    font-weight: 500;
    color: white;
    background-color: #03AB90;
    text-align: left;
    transition: background-color 0.2s ease;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: flex;
    align-items: center;
}

.ayuda-categorias .list-group-item.active,
.ayuda-categorias .list-group-item:hover {
    background-color: #192843;
    color: white;
}

.ayuda-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

@media (min-width: 1400px) {
    .ayuda-content-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card.ayuda-card {
    width: 100%;
    height: 234px;
    border: none;
    border-radius: 10px;
    background: white;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card.ayuda-card:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.card.ayuda-card h5 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 32px;
    color: #192843;
}

.card.ayuda-card p  {
    font-size: 14px;
    font-weight: 400;
    color: #686868;
    margin: 0;
}

li  {
    font-size: 14px;
    font-weight: 400;
    color: #686868;
    margin: 0;
}

.ayuda-item {
    display: none;
}

.ayuda-item.active {
    display: block;
}

/* Reordenamiento en pantallas pequeñas */
@media (max-width: 991px) {
    .ayuda-layout {
        display: flex;
        flex-direction: column;
    }

    .ayuda-categorias {
        margin-bottom: 30px;
        max-width: 100%;
    }

    .ayuda-content-grid {
        grid-template-columns: 1fr;
    }

    .ayuda-titulo-categorias {
        text-align: center;
    }
}