/* ============================================================
   GUIA PALHOÇA – CSS (AZUL #304f87, sem rosa, hover certo)
============================================================ */

.gp-wrapper {
    margin: 40px 0;
    font-family: inherit;
}

.gp-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    margin-bottom: 32px;
}

/* Zera influência do tema nos botões */
.gp-wrapper .gp-cat-badge,
.gp-wrapper .gp-cat-badge:hover,
.gp-wrapper .gp-cat-badge:focus,
.gp-wrapper .gp-cat-badge:active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.gp-cat-badge {
    padding: 0;
    cursor: pointer;
    text-align: center;
}

/* Círculo externo */
.gp-cat-outer {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid #304f87 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff !important;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* Círculo interno */
.gp-cat-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ícones dashicons – azul padrão */
.gp-wrapper .gp-cat-badge .gp-cat-inner .dashicons {
    font-size: 42px !important;
    width: 42px !important;
    height: 42px !important;
    line-height: 1 !important;
    color: #304f87 !important;
    text-shadow: none !important;
}

/* Label */
.gp-cat-label {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    color: #333333;
}

/* Hover / ativo – círculo azul, ícone branco */
.gp-wrapper .gp-cat-badge:hover .gp-cat-outer,
.gp-wrapper .gp-cat-badge.is-active .gp-cat-outer {
    background-color: #304f87 !important;
    border-color: #304f87 !important;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.gp-wrapper .gp-cat-badge:hover .gp-cat-inner .dashicons,
.gp-wrapper .gp-cat-badge.is-active .gp-cat-inner .dashicons {
    color: #ffffff !important;
}

/* LISTA DE ITENS */

.gp-items-group {
    display: none;
}

.gp-items-group.is-active {
    display: block;
}

.gp-items-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 40px;
}

/* Card */
.gp-item-card {
    border-top: 3px solid #304f87 !important;
    padding-top: 12px;
}

/* Título */
.gp-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #304f87 !important;
    margin: 0 0 8px;
}

/* Linhas */
.gp-item-line {
    margin: 0 0 4px;
    font-size: 14px;
    color: #444444;
}

.gp-item-line .dashicons {
    vertical-align: middle;
    margin-right: 4px;
    font-size: 16px !important;
    color: #304f87 !important;
}

/* Links */
.gp-item-line a {
    color: #304f87 !important;
    text-decoration: none;
}

.gp-item-line a:hover {
    text-decoration: underline;
}

/* Sem itens */
.gp-sem-itens {
    font-size: 14px;
    color: #777777;
}

/* Responsivo */
@media (max-width: 1024px) {
    .gp-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .gp-categories {
        justify-content: center;
    }
    .gp-items-grid {
        grid-template-columns: 1fr;
    }
    .gp-cat-outer {
        width: 110px;
        height: 110px;
    }
}