/* Estilos Customizados para a Loja */
.bg-primary-light { background-color: rgba(13, 110, 253, 0.1); }
.bg-success-light { background-color: rgba(25, 135, 84, 0.1); }
.bg-info-light { background-color: rgba(13, 202, 240, 0.1); }

.icon-circle-loja {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hover-top-loja {
    transition: transform 0.3s ease, shadow 0.3s ease;
}

.hover-top-loja:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.text-dark-blue-loja {
    color: #002d5b; /* Ajuste para o azul marinho da sua logo */
}

.header-line-loja {
    width: 60px;
    height: 4px;
    background-color: #0d6efd;
    margin-top: 10px;
    border-radius: 2px;
}