

.team-title {
    margin-bottom: 40px;
    color: var(--black-main);
}

.team-title h1 {
    margin-bottom: 0;
    color: var(--black-main);
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px;
    justify-items: center;
}

.badge-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.badge-wrap:hover {
    transform: translateY(-8px);
}

.badge-card {
    width: 250px;
    background: var(--white);
    border-radius: 18px;
    box-shadow:
        0 10px 32px rgba(0, 0, 0, 0.14),
        0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.badge-wrap:hover .badge-card {
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1);
}

.badge-header {
    width: 100%;
    background: linear-gradient(140deg, var(--red-dark) 0%, var(--red-main) 100%);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.badge-org {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.badge-photo-wrap {
    padding: 20px 0 8px;
    display: flex;
    justify-content: center;
}

.badge-photo {
    width: 180px !important;
    height: 180px !important;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.18),
        0 0 0 3px var(--red-soft);
    display: block;
}

.badge-info {
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-height: 116px;
}

.badge-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-main);
    margin: 0;
    line-height: 1.3;
}

.badge-cargo {
    font-size: 0.72rem;
    color: var(--red-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.badge-divider {
    width: 32px;
    height: 2px;
    background: var(--border-light);
    border-radius: 999px;
    margin: 2px 0;
}

.badge-setor {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.badge-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 0 16px;
    border-top: 1px solid var(--red-soft);
    width: calc(100% - 24px);
}

.badge-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.badge-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge-contact-email {
    background: var(--red-soft);
    color: var(--red-main);
    font-size: 18px;
}

.badge-contact-phone {
    background: #dbeafe;
    color: #2563eb;
    font-size: 18px;
}

.badge-contact-whatsapp {
    background: #dcf5e3;
    color: #25d366;
    font-size: 20px;
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px 24px;
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
