.grp-home-empresa-card .grp-empresa-card-head h2 {
    font-size: 1.25rem;
}

.grp-home-band {
    padding: 72px 24px;
}

.grp-home-band-card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
    padding: 36px 32px;
    background: #fff;
    border: 1px solid var(--grp-border);
    border-radius: var(--grp-radius);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.3s, transform 0.3s;
}

.grp-home-band-card:hover {
    box-shadow: var(--grp-shadow);
    transform: translateY(-2px);
}

.grp-home-band-card--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 760px;
}

.grp-home-band-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.grp-home-band-icon--inst {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.05));
    color: var(--grp-inst);
}

.grp-home-band-icon--group {
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.12), rgba(28, 25, 23, 0.04));
    color: var(--grp-bg);
}

.grp-home-band-body h2,
.grp-home-band-card--center h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--grp-text);
}

.grp-home-band-body p,
.grp-home-band-card--center p {
    margin: 0 0 20px;
    color: var(--grp-muted);
    font-size: var(--grp-text-md);
    line-height: 1.65;
}

.grp-home-band-card--center p {
    margin-bottom: 0;
}

.grp-home-visao {
    padding: 72px 24px;
}

.grp-home-visao .grp-home-band-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.grp-home-visao .grp-home-band-card:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .grp-home-band-card {
        flex-direction: column;
        padding: 28px 22px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .grp-home-empresa-card,
    .grp-home-band-card,
    .grp-home-visao .grp-home-band-card {
        opacity: 0;
        transform: translateY(20px);
    }

    .grp-home-empresa-card.is-visible,
    .grp-home-band-card.is-visible,
    .grp-home-visao .grp-home-band-card.is-visible {
        animation: grpInstFadeUp 0.55s ease forwards;
    }
}
