.team-section {
    background: #fff;
    padding: 80px 40px;
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}

.team-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 64px;
}

.team-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.team-titulo {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.team-divider {
    width: 40px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
    margin: 20px 0;
}

.team-counter {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

.team-counter-item span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    line-height: 1;
}

.team-counter-item small {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.team-top-right {
    border-left: 3px solid #3b82f6;
    padding-left: 28px;
}

.team-top-right p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.8;
}

.team-list {
    display: flex;
    flex-direction: column;
}

.team-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 12px;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 8px;
    transition: background 0.2s;
    cursor: default;
}

.team-item:last-child {
    border-bottom: none;
}

.team-item:hover {
    background: #f8fafc;
}

.team-item:hover .team-item-icon {
    background: #3b82f6;
}

.team-item:hover .team-item-icon i {
    color: #fff;
}

.team-item-icon {
    width: 52px;
    height: 52px;
    background: #eff6ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.team-item-icon i {
    width: 22px;
    height: 22px;
    color: #3b82f6;
    transition: color 0.2s;
}

.team-item-num {
    font-size: 10px;
    font-weight: 700;
    color: #93c5fd;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.team-item-titulo {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.team-item-texto {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.6;
}

.team-item-badge {
    font-size: 10px;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    padding: 5px 12px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .team-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-top-right {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid #3b82f6;
        padding-top: 20px;
    }

    .team-item {
        grid-template-columns: 52px 1fr;
    }

    .team-item-badge {
        display: none;
    }

    .team-section {
        padding: 60px 20px;
    }
}