/* Cards de Navegação - Guia de Serviços */
.icon-card-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-decoration: none !important;
}

.icon-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    border-color: #D7E2EE;
}

/* Container do círculo - Fundo Neutro e Suave */
.icon-bg-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px; /* Aumentei para dar espaço à ilustração */
    height: 65px;
    border-radius: 18px; /* Cantos arredondados modernos */
    background: #f1f5f9; /* Um cinza "off-white" bem suave */
    border: 1px solid #e2e8f0;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* A imagem ilustrativa (SVG ou PNG) */
.icon-img-custom {
    width: 42px;  /* Tamanho ideal para a ilustração */
    height: 42px;
    object-fit: contain; /* Não distorce */
    transition: transform 0.3s ease;
}

.icon-img-custom-brasao {
    width: 51px;  /* Tamanho ideal para a ilustração */
    height: 51px;
    object-fit: contain; /* Não distorce */
    transition: transform 0.3s ease;
}



/* Efeito Hover - Destaque na Ilustração */
.icon-card-wrapper:hover .icon-img-custom {
    transform: scale(1.1); /* Dá um leve zoom na ilustração */
}

.icon-card-wrapper:hover .icon-bg-circle {
    background: #ffffff; /* Fundo branco puro no hover */
    border-color: #C46B00; /* Borda laranja SBC */
	box-shadow: 0 5px 15px rgba(82, 109, 158, 0.15); /* Azul #526D9E com 15% de opacidade */
}

.icon-bg-circle i {
    color: #C46B00; /* O laranja fica só no detalhe do ícone */
    font-size: 1.5rem;
}

/* No hover, o laranja ganha força */
.icon-card-wrapper:hover .icon-bg-circle {
    background: #C46B00;
    border-color: #526D9E;
}

.icon-card-wrapper:hover .icon-bg-circle i {
    color: #fff; /* O ícone fica branco quando o fundo ativa */
}

.icon-card-wrapper:hover .icon-bg-circle {
    background: #D7E2EE;

}

.icon-card-wrapper i {
    color: #e67e22;
    font-size: 22px;
    transition: color 0.3s ease;
}

.icon-card-wrapper:hover i {
    color: #ffffff;
}

.icon-text {
    color: #334155;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}
.esconde-icones {
    margin-top: -50px !important; 
    position: relative;
    z-index: 99;
}

.icon-card-wrapper {
    background: #ffffff !important;
}


@media (max-width: 1024px) {

    .icon-bg-circle {
        width: 45px;
        height: 45px;
    }

    .icon-img-custom {
        width: 26px;
        height: 26px;
    }

    .icon-img-custom-brasao {
        width: 30px;
        height: 30px;
    }

    .icon-text {
        font-size: 9px;
    }

    .icon-card-wrapper {
        padding: 10px 5px;
    }

}